1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115
|
#! /usr/bin/make -f
#
# Debian rules for building ppd-gs (by Yves Arrouye), based on:
#
# Sample debian.rules file - for GNU Hello (1.3).
# Copyright 1994,1995 by Ian Jackson.
# I hereby give you perpetual unlimited permission to copy,
# modify and relicense this file, provided that you do not remove
# my name from the file itself. (I assert my moral right of
# paternity under the Copyright, Designs and Patents Act 1988.)
# This file may have to be extensively modified
# There used to be `source' and `diff' targets in this file, and many
# packages also had `changes' and `dist' targets. These functions
# have been taken over by dpkg-source, dpkg-genchanges and
# dpkg-buildpackage in a package-independent way, and so these targets
# are obsolete.
package=ppd-gs
build:
$(checkdir)
./configure --prefix=/usr --bindir=/usr/sbin
@if [ "`whoami`" = root ]; then \
$(MAKE) -f debian/rules build-root; \
else \
if [ -x /usr/bin/ssh ]; \
then \
echo "Building the package as root..."; \
ssh -l root localhost "cd `pwd`; exec $(MAKE) -f debian/rules build-root"; \
else \
echo "Enter the root password to build the package..."; \
su -c "exec $(MAKE) -f debian/rules build-root"; \
fi; \
fi
touch build
build-root:
$(checkdir)
$(MAKE) debian package="$(package)"
clean:
@if [ "`whoami`" = root ]; then \
$(MAKE) -f debian/rules clean-root; \
else \
if [ -x /usr/bin/ssh ]; \
then \
echo "Cleaning up the package as root..."; \
ssh -l root localhost "cd `pwd`; exec $(MAKE) -f debian/rules clean-root"; \
else \
echo "Enter the root password to cleanup the package..."; \
su -c "exec $(MAKE) -f debian/rules clean-root"; \
fi; \
fi
clean-root:
$(checkdir)
-rm -f build
-$(MAKE) -i distclean || $(MAKE) -f Makefile.in distclean
rm -rf *~ debian/tmp debian/*~ debian/files*
binary-indep: build
$(checkdir)
# There are no architecture-independent files to be uploaded
# generated by this package. If there were any they would be
# made here.
binary-arch: build
$(checkdir)
-rm -rf debian/tmp
install -d debian/tmp debian/tmp/DEBIAN
install -d debian/tmp/usr/doc/$(package)
cp debian/{postinst,postrm} debian/tmp/DEBIAN/.
chmod +x debian/tmp/DEBIAN/{postinst,postrm}
$(MAKE) INSTALL_PROGRAM='install -c' \
prefix=`pwd`/debian/tmp/usr \
perldir=`pwd`/debian/usr/lib/perl5 \
mancompress=gzip dirbin=/usr/bin prefixman=/usr/man \
install
cp debian/copyright debian/tmp/usr/doc/$(package)/.
cp debian/changelog debian/tmp/usr/doc/$(package)/changelog.Debian
cp ChangeLog debian/tmp/usr/doc/$(package)/changelog
gzip -9v debian/tmp/usr/doc/$(package)/changelog{,.Debian}
dpkg-gencontrol
chown -R root.root debian/tmp
chmod -R g-ws debian/tmp
dpkg --build debian/tmp ..
define checkdir
test -f ppd/gs.ppd -a -f debian/rules
endef
# Below here is fairly generic really
binary: build
@if [ "`whoami`" = root ]; then \
$(MAKE) -f debian/rules binary-root; \
else \
if [ -x /usr/bin/ssh ]; \
then \
echo "Building the .deb file as root..."; \
ssh -l root localhost "cd `pwd`; exec $(MAKE) -f debian/rules binary-root"; \
else \
echo "Enter the root password to build the .deb file..."; \
su -c "exec $(MAKE) -f debian/rules binary-root"; \
fi; \
fi
binary-root: binary-indep binary-arch
source diff:
@echo >&2 'source and diff are obsolete - use dpkg-source -b'; false
.PHONY: binary binary-arch binary-indep clean checkroot
|