[Tabfmt-cvs] tabfmt/debian rules,1.1,1.2
Status: Beta
Brought to you by:
joloc
From: Claudio J. <jo...@us...> - 2006-02-07 18:33:30
|
Update of /cvsroot/tabfmt/tabfmt/debian In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv21890/debian Modified Files: rules Log Message: (binary-arch) <dh_installchangelogs> Use --keep to install symlink to original filename. <dh_installman> Remove: manpages are installed by $(MAKE) install. <dh_link> Remove: not needed since there is no debian/tabfmt.links. <dh_installdeb> Remove: not needed since there are no maintainer scripts or conffiles to be installed. Remove commented out code and instructive comments. Cleanup whitespace. Index: rules =================================================================== RCS file: /cvsroot/tabfmt/tabfmt/debian/rules,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** rules 25 Jan 2006 21:13:22 -0000 1.1 --- rules 7 Feb 2006 11:26:13 -0000 1.2 *************** *** 1,5 **** #!/usr/bin/make -f # -*- makefile -*- - # Sample debian/rules that uses debhelper. # This file was originally written by Joey Hess and Craig Small. # As a special exception, when this file is copied by dh-make into a --- 1,4 ---- *************** *** 10,14 **** #export DH_VERBOSE=1 - # These are used for cross-compiling and for saving the configure script # from having to guess our platform (since we know it already) --- 9,12 ---- *************** *** 16,20 **** DEB_BUILD_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE) - CFLAGS = -Wall -g --- 14,17 ---- *************** *** 27,43 **** config.status: configure dh_testdir - # Add here commands to configure the package. CFLAGS="$(CFLAGS) -Wl,-z,defs" ./configure --host=$(DEB_HOST_GNU_TYPE) --build=$(DEB_BUILD_GNU_TYPE) --prefix=/usr --mandir=\$${prefix}/share/man --infodir=\$${prefix}/share/info - build: build-stamp build-stamp: config.status dh_testdir - - # Add here commands to compile the package. $(MAKE) #docbook-to-man debian/tabfmt.sgml > tabfmt.1 - touch build-stamp --- 24,35 ---- *************** *** 46,51 **** dh_testroot rm -f build-stamp - - # Add here commands to clean up after the build process. -$(MAKE) distclean ifneq "$(wildcard /usr/share/misc/config.sub)" "" --- 38,41 ---- *************** *** 55,60 **** cp -f /usr/share/misc/config.guess config.guess endif - - dh_clean --- 45,48 ---- *************** *** 64,102 **** dh_clean -k dh_installdirs - - # Add here commands to install the package into debian/tabfmt. $(MAKE) install DESTDIR=$(CURDIR)/debian/tabfmt - - # 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_testdir dh_testroot ! dh_installchangelogs ChangeLog dh_installdocs dh_installexamples - # dh_install - # dh_installmenu - # dh_installdebconf - # dh_installlogrotate - # dh_installemacsen - # dh_installpam - # dh_installmime - # dh_installinit - # dh_installcron - # dh_installinfo - dh_installman - dh_link dh_strip dh_compress dh_fixperms - # dh_perl - # dh_python - # dh_makeshlibs - dh_installdeb dh_shlibdeps dh_gencontrol --- 52,68 ---- dh_clean -k dh_installdirs $(MAKE) install DESTDIR=$(CURDIR)/debian/tabfmt binary-indep: build install binary-arch: build install dh_testdir dh_testroot ! dh_installchangelogs --keep ChangeLog dh_installdocs dh_installexamples dh_strip dh_compress dh_fixperms dh_shlibdeps dh_gencontrol |