]> git.donarmstrong.com Git - debian/debian-policy.git/blob - debian/rules
6cba84169af902425072eaec6dfcc3bb0854c5dd
[debian/debian-policy.git] / debian / rules
1 #!/usr/bin/make -f
2 ############################ -*- Mode: Makefile -*- ###########################
3 ## rules ---
4 ## Author           : Manoj Srivastava ( srivasta@tiamat.datasync.com )
5 ## Created On       : Thu Oct 29 15:35:55 1998
6 ## Created On Node  : tiamat.datasync.com
7 ## Last Modified By : Manoj Srivastava
8 ## Last Modified On : Wed Sep  6 09:37:43 2000
9 ## Last Machine Used: glaurung.green-gryphon.com
10 ## Update Count     : 56
11 ## Status           : Unknown, Use with caution!
12 ## HISTORY          :
13 ## Description      :
14 ## $Id$
15 ###############################################################################
16
17 ifdef ARCH
18   ha:=-a$(ARCH)
19 endif
20
21 # set the dpkg-architecture vars
22 export DEB_BUILD_ARCH      := $(shell dpkg-architecture $(ha) -qDEB_BUILD_ARCH)
23 export DEB_BUILD_GNU_CPU   := $(shell dpkg-architecture $(ha) -qDEB_BUILD_GNU_CPU)
24 export DEB_BUILD_GNU_SYSTEM:= $(shell dpkg-architecture $(ha) -qDEB_BUILD_GNU_SYSTEM)
25 export DEB_BUILD_GNU_TYPE  := $(shell dpkg-architecture $(ha) -qDEB_BUILD_GNU_TYPE)
26 export DEB_HOST_ARCH       := $(shell dpkg-architecture $(ha) -qDEB_HOST_ARCH)
27 export DEB_HOST_GNU_CPU    := $(shell dpkg-architecture $(ha) -qDEB_HOST_GNU_CPU)
28 export DEB_HOST_GNU_SYSTEM := $(shell dpkg-architecture $(ha) -qDEB_HOST_GNU_SYSTEM)
29 export DEB_HOST_GNU_TYPE   := $(shell dpkg-architecture $(ha) -qDEB_HOST_GNU_TYPE)
30
31
32
33 # The name of the package (for example, `emacs').
34 package := $(shell grep Source debian/control | sed 's/^Source: //')
35 arch    := $(shell dpkg --print-installation-architecture)
36 date    := $(shell date +"%Y-%m-%d")
37 version := $(shell LC_ALL=C dpkg-parsechangelog | \
38                    grep ^Version: | sed 's/^Version: *//')
39
40 FILES_TO_CLEAN  = debian/files debian/buildinfo  debian/substvars \
41                   debian/postinst debian/prerm \
42                   version.ent  policy.lout policy.lout.ld lout.li \
43                   upgrading-checklist.text policy.text.gz \
44                   menu-policy.text.gz \
45                   policy-process.text.gz policy-process.pdf.gz  \
46                   proposal.text.gz menu-policy.pdf.gz proposal.pdf.gz \
47                   mime-policy.text.gz mime-policy.pdf.gz \
48                   debconf_spec/debconf_specification.html \
49                   debconf_spec/debconf_specification.txt.gz \
50
51 STAMPS_TO_CLEAN = stamp-policy stamp-build stamp-configure
52 DIRS_TO_CLEAN   = debian/tmp policy.html fhs \
53                    menu-policy.html mime-policy.html \
54                   proposal.html policy-process.html
55 SGML_FILES      = policy  menu-policy mime-policy proposal \
56                   policy-process
57
58 # Location of the source dir
59 SRCTOP    := $(shell if [ "$$PWD" != "" ]; then echo $$PWD; else pwd; fi;)
60 TMPTOP    := $(SRCTOP)/debian/tmp
61 DOCDIR    := $(TMPTOP)/usr/share/doc/$(package)
62 LIBDIR    := $(TMPTOP)/usr/share/doc-base
63
64
65 # While we have two versions of the FHS installed in the source package,
66 # we need to modify this to handle it.  This is the easiest way to do it.
67 # FHS_ARCHIVE  =$(shell ls -1 fhs*.tar.gz)
68 # And with version 2.1, we have to build the text and dvi versions
69 # ourselves :-(
70 FHS_ARCHIVE  =fhs-2.1-source.tar.gz
71 FHS_FILES    = fhs/fhs.ps fhs/fhs.txt fhs/fhs.pdf
72 FSSTND_FILES =FSSTND-FAQ fsstnd-1.2.dvi.gz fsstnd-1.2.ps.gz fsstnd-1.2.txt.gz
73 POLICY_FILES =policy.text.gz policy.sgml virtual-package-names-list.text \
74               upgrading-checklist.text libc6-migration.text \
75               version.ent proposal.sgml proposal.text.gz \
76               menu-policy.sgml menu-policy.text.gz \
77               mime-policy.sgml mime-policy.text.gz \
78               policy-process.text.gz policy-process.sgml \
79               debconf_spec/debconf_specification.html \
80               debconf_spec/debconf_specification.txt.gz
81 BYHAND_FILES =policy.text.gz libc6-migration.text \
82               virtual-package-names-list.text menu-policy.text.gz \
83               mime-policy.text.gz policy.ps.gz policy.pdf.gz \
84               policy.html.tar.gz \
85               debconf_spec/debconf_specification.txt.gz
86
87
88 install_file   = /usr/bin/install -p    -o root -g root  -m  644
89 install_program= /usr/bin/install -p    -o root -g root  -m  755
90 make_directory = /usr/bin/install -p -d -o root -g root  -m  755
91
92 GROFF_VERSION := $(shell dpkg -s groff | sed -n -e 's/Version: //p')
93
94
95 all build: stamp-build
96 stamp-build:
97         $(checkdir)
98         -test -f stamp-configure || $(MAKE) -f debian/rules configure
99         for file in $(SGML_FILES); do \
100           nsgmls -gues $$file.sgml; \
101           debiandoc2html $$file.sgml; \
102           debiandoc2text $$file.sgml; \
103           if [ -f $$file.txt ]; then mv $$file.txt $$file.text; fi; \
104           gzip -9f $$file.text; \
105         done
106         tar zfx $(FHS_ARCHIVE)
107         # Need to use a patched tmac.m macro file if we're using a pre-1.16
108         # groff; version 1.16 is apparently fixed
109         if dpkg --compare-versions $(GROFF_VERSION) lt 1.16; then \
110             cp /usr/share/groff/tmac/tmac.m fhs && \
111             cd fhs && patch -p1 < ../mm1.32-patch; \
112         fi
113         # The extra '.' in the tmac path doesn't matter if
114         GROFF_TMAC_PATH=. cd fhs && $(MAKE) fhs.ps fhs.pdf fhs.txt
115         lynx -dump fhs-changes-2.1.html > fhs/fhs-changes-2.1.text
116         lynx -dump upgrading-checklist.html > upgrading-checklist.text
117         $(MAKE) -C debconf_spec all
118         gzip -9f debconf_spec/debconf_specification.txt
119         touch stamp-build
120
121 configure: stamp-configure
122 stamp-configure:
123         rm -f version.ent
124         echo "<!entity version \"$(version)\">" >> version.ent
125         echo "<!entity date    \"$(date)\">"        >> version.ent
126         touch stamp-configure
127
128 clean:
129 # Undoes the effect of `make -f debian/rules build'.
130         $(checkdir)
131         rm -f  $(FILES_TO_CLEAN) $(STAMPS_TO_CLEAN)
132         rm -rf $(DIRS_TO_CLEAN)
133         rm -f core `find . \( -name '*.orig' -o -name '*.rej' -o \
134           -name '*~' -o -name '*.bak' -o -name '#*#' -o \
135           -name '.*.orig' -o -name '.*.rej' -o -name '.SUMS' -o \
136           -size 0 \) -print` TAGS
137
138
139 binary:         binary-indep binary-arch
140 binary-arch:    build
141         $(checkdir)
142 # There are no architecture-dependent files to be uploaded
143 # generated by this package.  If there were any they would be
144 # made here.
145
146 binary-indep:   stamp-policy
147 stamp-policy:  build
148         @test $$(id | sed -e 's/(.*$$//' -e 's/^uid=//') || \
149                 (echo need root priviledges; exit 1)
150         $(checkdir)
151         test -f stamp-build     || $(MAKE) -f        debian/rules build
152         -rm -rf                 $(TMPTOP)
153         $(make_directory)       $(TMPTOP)/DEBIAN
154         $(make_directory)       $(DOCDIR)/fsstnd
155         $(make_directory)       $(DOCDIR)/fhs
156         $(make_directory)       $(LIBDIR)
157         # create a substvar to reference from debian/control so that
158         # we don't hardcode the policy compliance of the policy
159         # package.  I guess some might question this but I take it as
160         # a given that the debian-policy pkg must always comply with
161         # itself...
162         echo "debian-policy:Version=$(version)"      > debian/substvars
163         $(install_file)     $(POLICY_FILES)          $(DOCDIR)/
164         $(install_file)     $(FSSTND_FILES)          $(DOCDIR)/fsstnd/
165         $(install_file)     $(FHS_FILES)             $(DOCDIR)/fhs/
166         $(install_file)     debian/changelog         $(DOCDIR)/
167         -gzip -fqr9         $(DOCDIR)
168         $(install_file)     debian/copyright         $(DOCDIR)/
169         $(install_file)     debian-policy.desc       $(LIBDIR)/debian-policy
170         (tar cf -           policy.html) |           (cd $(DOCDIR);   tar xf -)
171         (tar cf -           menu-policy.html) |      (cd $(DOCDIR);   tar xf -)
172         (tar cf -           mime-policy.html) |      (cd $(DOCDIR);   tar xf -)
173         (tar cf -           proposal.html) |         (cd $(DOCDIR);   tar xf -)
174         (tar cf -           policy-process.html) |   (cd $(DOCDIR);   tar xf -)
175         sed -e 's/#PACKAGE#/$(package)/g' debian/postinst.in > debian/postinst
176         sed -e 's/#PACKAGE#/$(package)/g' debian/prerm.in > debian/prerm
177         $(install_program)  debian/{postinst,prerm}  debian/tmp/DEBIAN/
178         dpkg-gencontrol     -pdebian-policy -Pdebian/tmp -isp
179         chown               -R root.root debian/tmp
180         chmod               -R go=rX debian/tmp
181         dpkg                --build debian/tmp ..
182         debiandoc2latexps    policy.sgml
183         gzip -9qvf           policy.ps
184         debiandoc2latexpdf   policy.sgml
185         gzip -9qfv           policy.pdf
186         GZIP=-9v tar zcf     policy.html.tar.gz    policy.html
187         $(install_file)    version.ent               $(DOCDIR)/
188         for i in            $(BYHAND_FILES); do                          \
189           $(install_file)   $$i            ..                          ; \
190           dpkg-distaddfile  -fdebian/files `basename $$i`     byhand - ; \
191         done
192         touch              stamp-policy
193
194
195 define checkdir
196         test -f debian/rules -a -f policy.sgml
197 endef
198
199 source diff:
200         @echo >&2 'source and diff are obsolete - use dpkg-source -b'; false
201
202 .PHONY: binary binary-arch binary-indep clean checkroot
203
204 #Local variables:
205 #mode: makefile
206 #End: