From a0604c20befab50b213610cf0ff76813e36fd2b6 Mon Sep 17 00:00:00 2001 From: sam Date: Fri, 22 Sep 2006 16:27:37 +0000 Subject: [PATCH] * Remove debian/ and autotools/ from the repository. git-svn-id: file:///srv/caca.zoy.org/var/lib/svn/ttyvaders/trunk@1081 92316355-f0b4-4df1-b90c-862c8a59935f --- autotools/Makefile.am | 0 configure.ac | 2 -- debian/Makefile.am | 1 - debian/changelog | 5 --- debian/control | 15 --------- debian/rules | 77 ------------------------------------------- 6 files changed, 100 deletions(-) delete mode 100644 autotools/Makefile.am delete mode 100644 debian/Makefile.am delete mode 100644 debian/changelog delete mode 100644 debian/control delete mode 100755 debian/rules diff --git a/autotools/Makefile.am b/autotools/Makefile.am deleted file mode 100644 index e69de29..0000000 diff --git a/configure.ac b/configure.ac index f75c9a1..da6e8ec 100644 --- a/configure.ac +++ b/configure.ac @@ -39,8 +39,6 @@ CFLAGS="${CFLAGS} -Wall -Wpointer-arith -Wcast-align -Wcast-qual -Wstrict-protot AC_OUTPUT([ Makefile src/Makefile - autotools/Makefile data/Makefile - debian/Makefile ]) diff --git a/debian/Makefile.am b/debian/Makefile.am deleted file mode 100644 index 62b3921..0000000 --- a/debian/Makefile.am +++ /dev/null @@ -1 +0,0 @@ -EXTRA_DIST = changelog control rules diff --git a/debian/changelog b/debian/changelog deleted file mode 100644 index dd474f6..0000000 --- a/debian/changelog +++ /dev/null @@ -1,5 +0,0 @@ -ttyvaders (0.0cvs-1) unstable; urgency=low - - * Not yet released. - - -- Samuel Hocevar Sat, 14 Dec 2002 15:22:25 +0100 diff --git a/debian/control b/debian/control deleted file mode 100644 index 1264105..0000000 --- a/debian/control +++ /dev/null @@ -1,15 +0,0 @@ -Source: ttyvaders -Section: games -Priority: optional -Maintainer: Sam Hocevar (Debian packages) -Build-Depends: debhelper (>= 2.2.0), slang1-dev -Standards-Version: 3.6.1.0 - -Package: ttyvaders -Section: games -Architecture: any -Depends: ${shlibs:Depends} -Description: vertical shoot 'em up with text-mode graphics - TTYvaders is a vertical shoot 'em up for the console or the terminal. - . - It rules. diff --git a/debian/rules b/debian/rules deleted file mode 100755 index 5a6dc5d..0000000 --- a/debian/rules +++ /dev/null @@ -1,77 +0,0 @@ -#!/usr/bin/make -f - -#export DH_VERBOSE=1 -export DH_COMPAT=3 -export DEB_HOST_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE) -export DEB_BUILD_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE) - -# FOR AUTOCONF 2.52 AND NEWER ONLY -ifeq ($(DEB_BUILD_GNU_TYPE), $(DEB_HOST_GNU_TYPE)) - confflags += --build $(DEB_HOST_GNU_TYPE) -else - confflags += --build $(DEB_BUILD_GNU_TYPE) --host $(DEB_HOST_GNU_TYPE) -endif - -confflags += --mandir=\$${prefix}/share/man --infodir=\$${prefix}/share/info - -configure: configure-stamp -configure-stamp: - dh_testdir - ./configure $(confflags) --prefix=/usr - touch configure-stamp - -build: configure-stamp build-stamp -build-stamp: - dh_testdir - $(MAKE) - touch build-stamp - -clean: - dh_testdir - dh_testroot - rm -f build-stamp configure-stamp - -$(MAKE) distclean - dh_clean - -install: build - dh_testdir - dh_testroot - dh_clean -k - dh_installdirs - DESTDIR=`pwd`/debian/ttyvaders/ $(MAKE) install prefix=/usr - -# Build architecture-independent files here. -binary-indep: build install -# We have nothing to do by default. - -# Build architecture-dependent files here. -binary-arch: build install -# dh_testversion - dh_testdir - dh_testroot -# dh_installdebconf - dh_installdocs -# dh_installexamples - dh_installmenu -# dh_installemacsen -# dh_installpam -# dh_installinit - dh_installcron - dh_installmanpages - dh_installinfo -# dh_undocumented - dh_installchangelogs - dh_link - dh_strip - dh_compress - dh_fixperms -# dh_makeshlibs - dh_installdeb -# dh_perl - dh_shlibdeps - dh_gencontrol - dh_md5sums - dh_builddeb - -binary: binary-indep binary-arch -.PHONY: build clean binary-indep binary-arch binary install configure