SVN commit 577329 by woebbe: Added more build dependencies (patch by Eddy PetriÅor).
CCMAIL:[EMAIL PROTECTED] M +8 -0 changelog M +6 -2 control M +12 -2 rules --- trunk/icecream/debian/changelog #577328:577329 @@ -1,3 +1,11 @@ +icecc (0.7.6-2) UNRELEASED; urgency=low + + * add missing dependencies: docbook2x, sharutils + * added dependency on kdelibs-data because it contains kdex.dtd + * fixed location from which the package expects to get manpages' sources + + -- Eddy Petrişor <[EMAIL PROTECTED]> Wed, 19 Jul 2006 17:35:28 +0300 + icecc (0.7.6-1) unstable; urgency=low * New upstream version. --- trunk/icecream/debian/control #577328:577329 @@ -3,8 +3,8 @@ Priority: optional Maintainer: Andre Woebbeking <[EMAIL PROTECTED]> Uploaders: -Build-Depends: automake1.9, debhelper (>> 5.0.0), libtool -Standards-Version: 3.6.1.0 +Build-Depends: automake1.9, debhelper (>> 5.0.0), libtool, docbook2x, sharutils, kdelibs-data +Standards-Version: 3.7.2 Package: icecc Architecture: any @@ -20,6 +20,8 @@ the same libraries or header files installed. . This package is part of the KDE Software Development Kit. + . + Homepage: http://en.opensuse.org/Icecream Package: libicecc-dev Architecture: any @@ -34,3 +36,5 @@ the same libraries or header files installed. . This package provides files which are necessary to build icecc-monitor. + . + Homepage: http://en.opensuse.org/Icecream --- trunk/icecream/debian/rules #577328:577329 @@ -54,6 +54,12 @@ cd $(objdir) && \ ../configure $(configkde) + # add the dtd + cp /usr/share/apps/ksgmltools2/customization/dtd/kdex.dtd doc/ + + # prepare terain for documantation building + mkdir -p debian/man/ + touch configure-stamp #Architecture @@ -67,8 +73,8 @@ $(MAKE) # generate manpages - for i in debian/man/*.docbook; do \ - docbook2x-man $$i; \ + for i in doc/*.docbook; do \ + (cd debian/man && docbook2x-man ../../$$i); \ done touch build-arch-stamp @@ -106,6 +112,10 @@ # Remove build tree rm -rf $(objdir) + # Remove documentation build place and build cruft + rm -fr debian/man + rm -fr doc/kdex.dtd + # if Makefile exists run distclean if test -f Makefile; then \ $(MAKE) distclean; \