Browse Source

* 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
master
sam 18 years ago
parent
commit
a0604c20be
6 changed files with 0 additions and 100 deletions
  1. +0
    -0
      autotools/Makefile.am
  2. +0
    -2
      configure.ac
  3. +0
    -1
      debian/Makefile.am
  4. +0
    -5
      debian/changelog
  5. +0
    -15
      debian/control
  6. +0
    -77
      debian/rules

+ 0
- 0
autotools/Makefile.am View File


+ 0
- 2
configure.ac View File

@@ -39,8 +39,6 @@ CFLAGS="${CFLAGS} -Wall -Wpointer-arith -Wcast-align -Wcast-qual -Wstrict-protot
AC_OUTPUT([ AC_OUTPUT([
Makefile Makefile
src/Makefile src/Makefile
autotools/Makefile
data/Makefile data/Makefile
debian/Makefile
]) ])



+ 0
- 1
debian/Makefile.am View File

@@ -1 +0,0 @@
EXTRA_DIST = changelog control rules

+ 0
- 5
debian/changelog View File

@@ -1,5 +0,0 @@
ttyvaders (0.0cvs-1) unstable; urgency=low

* Not yet released.

-- Samuel Hocevar <sam@zoy.org> Sat, 14 Dec 2002 15:22:25 +0100

+ 0
- 15
debian/control View File

@@ -1,15 +0,0 @@
Source: ttyvaders
Section: games
Priority: optional
Maintainer: Sam Hocevar (Debian packages) <sam+deb@zoy.org>
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.

+ 0
- 77
debian/rules View File

@@ -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

Loading…
Cancel
Save