- Timestamp:
- 07/06/05 07:55:35 (3 years ago)
- svk:copy_cache_prev:
- 7266
- Location:
- debian
- Files:
-
- 2 removed
- 2 modified
-
changelog (modified) (1 diff)
-
pugs-doc.docs (deleted)
-
pugs-doc.install (deleted)
-
rules (modified) (9 diffs)
Legend:
- Unmodified
- Added
- Removed
-
debian/changelog
r5248 r5251 2 2 3 3 * New upstream version. 4 * Generate manpages for binaries. 5 * Don't install gen_prelude and extra license files. 6 * Make it policy compliant. 7 * Cleaned up debian/rules. 4 8 5 9 -- Florian Ragwitz <rafl@fsfe.org> Wed, 6 Jul 2005 05:14:39 +0200 -
debian/rules
r5248 r5251 1 1 #!/usr/bin/make -f 2 # -*- makefile -*-3 # Sample debian/rules that uses debhelper.4 #5 # This file was originally written by Joey Hess and Craig Small.6 # As a special exception, when this file is copied by dh-make into a7 # dh-make output file, you may use that output file without restriction.8 # This special exception was added by Craig Small in version 0.37 of dh-make.9 #10 # Modified to make a template file for a multi-binary package with separated11 # build-arch and build-indep targets by Bill Allombert 200112 13 # Uncomment this to turn on verbose mode.14 #export DH_VERBOSE=115 16 # This has to be exported to make some magic below work.17 export DH_OPTIONS18 19 20 2 21 3 CFLAGS = -Wall -g … … 30 12 configure-stamp: 31 13 dh_testdir 32 # Add here commands to configure the package. 33 14 perl Makefile.PL INSTALLDIRS=vendor 34 15 touch configure-stamp 35 16 36 37 #Architecture38 17 build: build-arch build-indep 39 18 40 19 build-arch: build-arch-stamp 41 20 build-arch-stamp: configure-stamp 42 43 # Add here commands to compile the arch part of the package. 44 #$(MAKE) 45 46 perl Makefile.PL INSTALLDIRS=vendor 47 # $(MAKE) optimized 48 $(MAKE) unoptimized 21 $(MAKE) optimized 49 22 pod2man --section=1 --release="Debian Project" --center="Debian GNU/Linux manual" $(CURDIR)/lib/pugs/run.pod $(CURDIR)/debian/pugs.1 50 23 pod2man --section=1 --release="Debian Project" --center="Debian GNU/Linux manual" $(CURDIR)/script/pugscc $(CURDIR)/debian/pugscc.1 … … 53 26 build-indep: build-indep-stamp 54 27 build-indep-stamp: configure-stamp 55 56 # Add here commands to compile the indep part of the package.57 #$(MAKE) doc58 59 28 touch build-indep-stamp 60 29 … … 63 32 dh_testroot 64 33 rm -f build-arch-stamp build-indep-stamp configure-stamp debian/pugs.1 debian/pugscc.1 65 66 # Add here commands to clean up after the build process.67 34 -$(MAKE) realclean 68 69 35 dh_clean 70 36 … … 73 39 dh_testdir 74 40 dh_testroot 75 #dh_clean -k -i 76 #dh_installdirs -i 77 78 # Add here commands to install the indep part of the package into 79 # debian/<package>-doc. 80 #INSTALLDOC# 81 82 dh_install -i --sourcedir=$(CURDIR)/debian/tmp 41 dh_installdirs 42 cp -r $(CURDIR)/docs/* $(CURDIR)/debian/pugs-doc/usr/share/doc/pugs-doc/ 43 rm -f $(CURDIR)/debian/pugs-doc/usr/share/doc/pugs-doc/SEEALSO 83 44 84 45 install-arch: 85 46 dh_testdir 86 47 dh_testroot 87 #dh_clean -k -s88 48 dh_installdirs -s 89 90 # Add here commands to install the arch part of the package into91 # debian/tmp.92 49 $(MAKE) install DESTDIR=$(CURDIR)/debian/tmp 93 50 cp util/perl6.vim $(CURDIR)/debian/pugs/usr/share/vim/vim63/syntax/ 94 95 51 dh_install -s --sourcedir=$(CURDIR)/debian/tmp 96 52 rm -f $(CURDIR)/debian/pugs/usr/lib/perl6/5.8/CORE/pugs/gen_prelude \ … … 107 63 dh_installdocs -i 108 64 dh_installexamples -i 109 # dh_installmenu -i110 # dh_installdebconf -i111 # dh_installlogrotate -i112 # dh_installemacsen -i113 # dh_installpam -i114 # dh_installmime -i115 # dh_installinit -i116 # dh_installcron -i117 # dh_installinfo -i118 65 dh_installman -i 119 66 dh_link -i … … 121 68 dh_fixperms -i 122 69 dh_strip -i 123 # dh_perl -i124 # dh_python -i125 70 dh_makeshlibs -i 126 71 dh_installdeb -i … … 137 82 dh_installdocs -a 138 83 dh_installexamples -a 139 # dh_installmenu -a140 # dh_installdebconf -a141 # dh_installlogrotate -a142 # dh_installemacsen -a143 # dh_installpam -a144 # dh_installmime -a145 # dh_installinit -a146 # dh_installcron -a147 # dh_installinfo -a148 84 dh_installman -a debian/pugs.1 debian/pugscc.1 149 85 dh_link -a … … 151 87 dh_fixperms -a 152 88 dh_strip -a 153 # dh_perl -a154 # dh_python -a155 89 dh_makeshlibs -a 156 90 dh_installdeb -a
