From 70cfc9c2968b096e7ba5a9507ea020920d878a35 Mon Sep 17 00:00:00 2001 From: aeb Date: Thu, 24 May 2001 22:10:45 +0000 Subject: [PATCH] Move HTML formatted documentation subdir from libraw1394 to libraw1394.html. Update Debian control files to generate version 0.9.0-1 package. git-svn-id: svn://svn.linux1394.org/libraw1394/trunk@61 53a565d1-3bb7-0310-b661-cf11e63c67ab --- debian/Makefile.am | 10 ++++++++-- debian/changelog | 13 +++++++++++++ debian/control | 5 +++-- debian/libraw1394-dev.docs | 5 +++++ debian/rules | 3 ++- doc/Makefile.am | 10 ++++++---- 6 files changed, 37 insertions(+), 9 deletions(-) create mode 100644 debian/libraw1394-dev.docs diff --git a/debian/Makefile.am b/debian/Makefile.am index 69d0562..e32e4ed 100644 --- a/debian/Makefile.am +++ b/debian/Makefile.am @@ -1,4 +1,10 @@ # process this file with automake to create a Makefile.in -EXTRA_DIST = control rules changelog copyright \ - libraw1394.postinst.in libraw1394-potato.postinst.in +EXTRA_DIST = \ + control \ + rules \ + changelog \ + copyright \ + libraw1394.postinst.in \ + libraw1394-potato.postinst.in \ + libraw1394-dev.docs diff --git a/debian/changelog b/debian/changelog index 2723349..e697484 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,16 @@ +libraw1394 (0.9.0-1) unstable; urgency=low + + * Maintainer email address changed to my debian.org account. + * Changed to debianized source format, using Debian revision. + * New release adds testlibraw program (with man page) and programmer's + documentation, all in libraw1394-dev. + * Moved HTML formatted documentation to libraw1394.html subdir (as + opposed to just libraw1394 as in original release). + * Made sure that current config.{guess,sub} files are in the sources + (closes: #95078). + + -- Andreas Bombe Fri, 25 May 2001 00:03:24 +0200 + libraw1394 (0.8.2) unstable; urgency=low * Create device file in /dev instead of / (closes: #81158). diff --git a/debian/control b/debian/control index c6fd21d..e6721e2 100644 --- a/debian/control +++ b/debian/control @@ -2,7 +2,7 @@ Source: libraw1394 Section: libs Priority: optional Maintainer: Andreas Bombe -Standards-Version: 3.1.1.1 +Standards-Version: 3.5.4.0 Build-Depends: debhelper Package: libraw1394-dev @@ -17,7 +17,8 @@ Description: library for direct access to IEEE 1394 bus - development files requiring a kernel driver for the protocol in question. . This package contains the include files and static library for - libraw1394, as well as the testlibraw program. + libraw1394, as well as the testlibraw program and programmer's + documentation. Package: libraw1394-5 Architecture: any diff --git a/debian/libraw1394-dev.docs b/debian/libraw1394-dev.docs new file mode 100644 index 0000000..bdf156c --- /dev/null +++ b/debian/libraw1394-dev.docs @@ -0,0 +1,5 @@ +README +NEWS +doc/libraw1394.sgml +doc/libraw1394.ps +doc/libraw1394.html diff --git a/debian/rules b/debian/rules index eeed8c8..3af5bf1 100644 --- a/debian/rules +++ b/debian/rules @@ -72,7 +72,8 @@ binary-arch: build install autoclean-files echo >>autoclean-files debian/shlibs.local echo >debian/shlibs.local "libraw1394 $(major) $(libraw) (= $(source-version))" - dh_installdocs README NEWS + dh_installmanpages -plibraw1394-dev + dh_installdocs dh_installchangelogs dh_strip dh_compress diff --git a/doc/Makefile.am b/doc/Makefile.am index 36f2d80..95bc350 100644 --- a/doc/Makefile.am +++ b/doc/Makefile.am @@ -1,4 +1,4 @@ -EXTRA_DIST = testlibraw.1.in libraw1394.sgml libraw1394 libraw1394.ps +EXTRA_DIST = testlibraw.1.in libraw1394.sgml libraw1394.html libraw1394.ps # man files for testlibraw man_MANS = testlibraw.1 @@ -11,12 +11,12 @@ CLEANFILES = libraw1394.aux libraw1394.dvi libraw1394.log libraw1394.out \ MAINTAINERCLEANFILES = libraw1394.ps maintainer-clean-local: - rm -rf libraw1394 + rm -rf libraw1394.html doc: psdoc pdfdoc htmldoc psdoc: libraw1394.ps pdfdoc: libraw1394.pdf -htmldoc: libraw1394/book1.html +htmldoc: libraw1394.html .PHONY: doc psdoc pdfdoc htmldoc @@ -26,5 +26,7 @@ libraw1394.ps: libraw1394.sgml libraw1394.pdf: libraw1394.sgml db2pdf $< -libraw1394/book1.html: libraw1394.sgml +libraw1394.html: libraw1394.sgml db2html $< + rm -rf $@ + mv libraw1394 $@