build: Delete files from the previous build system.

There are other files in sub-repos that I'll delete
in separate changelists.

BUG=none
TEST=built an image using portage

Review URL: http://codereview.chromium.org/1521015
diff --git a/debian/changelog b/debian/changelog
deleted file mode 100644
index afa42e6..0000000
--- a/debian/changelog
+++ /dev/null
@@ -1,12 +0,0 @@
-chromeos-monitor-reconfig (0.2) UNRELEASED; urgency=low
-
-  * Use dh(1).
-  * Declare build-dependencies correctly.
-  * Pass toolchain parameters correctly for cross-compilation.
-
- -- Colin Watson <cjwatson@canonical.com>  Sat, 28 Nov 2009 11:12:20 +0000
-
-chromeos-monitor-reconfig (0.1) unstable; urgency=low
-
-  * Initial release
- -- The Chromium OS Authors <chromium-os-dev@googlegroups.com>  Wed, 15 Jul 2009 23:13:15 -0700
diff --git a/debian/compat b/debian/compat
deleted file mode 100644
index 7f8f011..0000000
--- a/debian/compat
+++ /dev/null
@@ -1 +0,0 @@
-7
diff --git a/debian/control b/debian/control
deleted file mode 100644
index aeee0b5..0000000
--- a/debian/control
+++ /dev/null
@@ -1,11 +0,0 @@
-Source: chromeos-monitor-reconfig
-Section: x11
-Priority: optional
-Maintainer: The Chromium OS Authors <chromium-os-dev@googlegroups.com>
-Build-Depends: debhelper (>= 7.0.50), autotools-dev, libx11-dev, libxrandr-dev
-Standards-Version: 3.8.0
-
-Package: chromeos-monitor-reconfig
-Architecture: any
-Depends: xserver-xorg, x11-xserver-utils
-Description: Small module that will reconfigure an external monitor to the largest resolution the fills either horizontally or vertically
diff --git a/debian/rules b/debian/rules
deleted file mode 100755
index f6beb27..0000000
--- a/debian/rules
+++ /dev/null
@@ -1,28 +0,0 @@
-#!/usr/bin/make -f
-# -*- makefile -*-
-%:
-	dh $@
-
-# Uncomment this to turn on verbose mode.
-#export DH_VERBOSE=1
-
-DEB_BUILD_GNU_TYPE := $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE)
-DEB_HOST_GNU_TYPE  := $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE)
-ifeq ($(DEB_BUILD_GNU_TYPE),$(DEB_HOST_GNU_TYPE))
-CC := gcc
-CXX := g++
-else
-CC := $(DEB_HOST_GNU_TYPE)-gcc
-CXX := $(DEB_HOST_GNU_TYPE)-g++
-endif
-
-CFLAGS = -Wall -g
-
-ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
-	CFLAGS += -O0
-else
-	CFLAGS += -O2
-endif
-
-override_dh_auto_build:
-	$(MAKE) CC=$(CC) CXX=$(CXX) CFLAGS="$(CFLAGS)"
diff --git a/make_pkg.sh b/make_pkg.sh
deleted file mode 100755
index c69b007..0000000
--- a/make_pkg.sh
+++ /dev/null
@@ -1,11 +0,0 @@
-#!/bin/bash
-#
-# Builds the .deb package.
-
-# Load common constants.  This should be the first executable line.
-# The path to common.sh should be relative to your script's location.
-COMMON_SH="$(dirname "$0")/../../scripts/common.sh"
-. "$COMMON_SH"
-
-# Make the package
-make_pkg_common "chromeos-monitor-reconfig" "$@"