X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=debian%2Frules;h=1450c4c2a68ef4d83170648a44912b88f0d4f912;hb=54edf8613ae3a134d0cbd6962d3c39d847470a26;hp=63da39357d7957884287a8918b3308ee663e1304;hpb=832b1dc4daeb7b5437719b9a8866ab22eb97f8d7;p=uffi.git diff --git a/debian/rules b/debian/rules index 63da393..1450c4c 100755 --- a/debian/rules +++ b/debian/rules @@ -3,21 +3,21 @@ # GNU copyright 1997 to 1999 by Joey Hess. # Uncomment this to turn on verbose mode. -export DH_VERBOSE=1 +# export DH_VERBOSE=1 # This is the debhelper compatibility version to use. -export DH_COMPAT=3 +export DH_COMPAT=4 -pkg := cl-uffi -prefix := debian/tmp +pkg := uffi +debpkg := cl-uffi +prefix := debian/$(debpkg) INSTALL := install INSTALLFLAGS := -g root -o root -m 0644 INSTALLDIRFLAGS := -d -g root -o root -m 0755 -SOURCESDEST := $(prefix)/usr/share/common-lisp/repositories/uffi/src -SYSDIR := $(prefix)/usr/share/common-lisp/systems -DOCDIR := $(prefix)/usr/share/doc/uffi +SOURCEDIR := $(prefix)/usr/share/common-lisp/source/${pkg} +DOCDIR := $(prefix)/usr/share/doc/${debpkg} configure: configure-stamp @@ -34,8 +34,8 @@ build-stamp: configure-stamp dh_testdir # Add here commands to compile the package. - $(MAKE) doc - #/usr/bin/docbook-to-man debian/uffi.sgml > uffi.1 + # Make doc isn't necessary because the docs are in the upstream version + # $(MAKE) doc touch build-stamp @@ -46,6 +46,7 @@ clean: # Add here commands to clean up after the build process. -$(MAKE) clean + rm -f debian/cl-uffi.postinst.* debian/cl-uffi.prerm.* dh_clean @@ -56,20 +57,19 @@ install: build dh_installdirs # Add here commands to install the package into debian/uffi. - $(INSTALL) $(INSTALLDIRFLAGS) $(SOURCESDEST) $(SOURCESDEST)/mcl $(SYSDIR) $(DOCDIR) $(DOCDIR)/html - $(INSTALL) $(INSTALLFLAGS) uffi.system $(SYSDIR) - $(INSTALL) $(INSTALLFLAGS) $(shell echo src/*.cl) $(SOURCESDEST) - $(INSTALL) $(INSTALLFLAGS) $(shell echo src/mcl/*.cl) $(SOURCESDEST)/mcl + $(INSTALL) $(INSTALLFLAGS) $(shell echo src/*.cl *.system) $(SOURCEDIR) + $(INSTALL) $(INSTALLFLAGS) $(shell echo src/mcl/*.cl) $(SOURCEDIR)/mcl $(INSTALL) $(INSTALLFLAGS) doc/html/* $(DOCDIR)/html - cp doc/uffi.ps doc/cl-uffi.ps - rm doc/cl-uffi.ps.gz - gzip doc/cl-uffi.ps - $(INSTALL) $(INSTALLDIRFLAGS) doc/uffi.ps.gz $(DOCDIR) - rm doc/cl-uffi.ps.gz + cp doc/uffi.pdf doc/cl-uffi.pdf + rm -f doc/cl-uffi.pdf.gz + gzip doc/cl-uffi.pdf + $(INSTALL) $(INSTALLFLAGS) doc/cl-uffi.pdf.gz $(DOCDIR) + rm -f doc/cl-uffi.pdf.gz # 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 @@ -77,8 +77,8 @@ binary-arch: build install dh_testroot # dh_installdebconf dh_installdocs - dh_installexamples - dh_installmenu + dh_installexamples examples/*.cl +# dh_installmenu # dh_installlogrotate # dh_installemacsen # dh_installpam @@ -96,7 +96,7 @@ binary-arch: build install # dh_makeshlibs dh_installdeb # dh_perl -# dh_shlibdeps + dh_shlibdeps dh_gencontrol dh_md5sums dh_builddeb