diff options
author | Jari Aalto <jari.aalto@cante.net> | 2010-05-05 03:13:42 +0300 |
---|---|---|
committer | Bryan Newbold <bnewbold@robocracy.org> | 2017-02-20 00:05:43 -0800 |
commit | 61af55884cfcb2ac70f42a9fc8dc68b3c343b402 (patch) | |
tree | 7159ecad56e23911f4c869d2f2e076c382378157 /Makefile | |
parent | 3f111dfa0c6ef68339f1a5086342a53a66a4c57a (diff) | |
download | slib-61af55884cfcb2ac70f42a9fc8dc68b3c343b402.tar.gz slib-61af55884cfcb2ac70f42a9fc8dc68b3c343b402.zip |
Import Debian changes 3b1-3.1debian/3b1-3.1
slib (3b1-3.1) unstable; urgency=low
[ Jari Aalto ]
* Non-maintainer upload.
- Move to packaging format "3.0 (quilt)".
* debian/compat
- Update to 7.
* debian/control
- (Build-Depends-Indep): Update to debhelper 7.1.
- (Depends): add ${misc:Depends}.
- (Homepage): New field.
- (Standards-Version): update to 3.8.4.
+ slib
- (Depends): add ${misc:Depends}, install-info.
- (Priority): remove inherited field.
- (Section): remove inherited field.
* debian/copyright
- Update "more information" URL.
* debian/doc-base
- (Section): Remove obsolete top-level "Apps/".
* debian/prerm
- Remove path component from commands.
- Remove obsolete install-docs, install-info commands.
* debian/postinst
- Remove obsolete install-docs, install-info commands.
- Remove path component from commands.
* debian/source/format
- New file.
* debian/watch
- New file.
[ Hideki Yamane (Debian-JP) <henrich@debian.or.jp> ]
* debian/rules
- (build): Rewrite make calls.
- (binary-indep:): install *.html not slib/*.html to fix. It is
useless to specify htmllib (FTBFS; Closes: #552911).
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 12 |
1 files changed, 6 insertions, 6 deletions
@@ -239,14 +239,14 @@ xpdf: $(htmldir)slib.pdf xpdf $(htmldir)slib.pdf TEXI2HTML = /usr/local/bin/texi2html -split -verbose -$(htmldir)slib_toc.html: version.txi slib.texi $(txifiles) $(texifiles) +slib_toc.html: version.txi slib.texi $(txifiles) $(texifiles) ${TEXI2HTML} slib.texi html: $(htmldir)slib_toc.html -#$(htmldir)slib_toc.html: slib_toc.html Makefile -# -rm -f slib_stoc.html -# if [ -f $(PREVDOCS)slib_toc.html ]; \ -# then hitch $(PREVDOCS)slib_\*.html slib_\*.html $(htmldir); \ -#p else cp slib_*.html $(htmldir);fi +$(htmldir)slib_toc.html: slib_toc.html Makefile + -rm -f slib_stoc.html + if [ -f $(PREVDOCS)slib_toc.html ]; \ + then hitch $(PREVDOCS)slib_\*.html slib_\*.html $(htmldir); \ + else cp slib_*.html $(htmldir);fi slib-$(VERSION).info: version.txi slib.texi $(txifiles) $(texifiles) makeinfo slib.texi --no-warn --no-split -o slib.info |