[med-svn] r288 - trunk/packages/probcons/trunk/debian
charles-guest at alioth.debian.org
charles-guest at alioth.debian.org
Wed May 16 00:38:35 UTC 2007
Author: charles-guest
Date: 2007-05-16 00:38:35 +0000 (Wed, 16 May 2007)
New Revision: 288
Modified:
trunk/packages/probcons/trunk/debian/changelog
trunk/packages/probcons/trunk/debian/rules
Log:
Fixed cleaning of the package; Fixed wasteful double-building of binarires and manpages.
Modified: trunk/packages/probcons/trunk/debian/changelog
===================================================================
--- trunk/packages/probcons/trunk/debian/changelog 2007-05-12 19:53:01 UTC (rev 287)
+++ trunk/packages/probcons/trunk/debian/changelog 2007-05-16 00:38:35 UTC (rev 288)
@@ -1,3 +1,10 @@
+probcons (1.12-3) unstable; urgency=low
+
+ * Fixed typos which caused incomplete cleaning (Closes: #424301).
+ * Fixed double-building of binaries and manpages.
+
+ -- Charles Plessy <charles-debian-nospam at plessy.org> Wed, 16 May 2007 09:35:25 +0900
+
probcons (1.12-2) unstable; urgency=low
* Corrected an error in the build rules making probcons-RNA, which
Modified: trunk/packages/probcons/trunk/debian/rules
===================================================================
--- trunk/packages/probcons/trunk/debian/rules 2007-05-12 19:53:01 UTC (rev 287)
+++ trunk/packages/probcons/trunk/debian/rules 2007-05-16 00:38:35 UTC (rev 288)
@@ -8,7 +8,7 @@
# Modifications by Charles Plessy during the years 2006 and 2007can also
# be used without restriction.
-BINARIES = probcons probcons-RNA project pc-compare makegnuplot
+BINARIES = probcons probcons-RNA pc-project pc-compare pc-makegnuplot
MANPAGES = probcons.1 probcons-RNA.1 pc-compare.1 pc-project.1 pc-makegnuplot.1
XP = xsltproc \
-''-nonet \
@@ -26,24 +26,29 @@
include /usr/share/dpatch/dpatch.make
-build: patch manpages
+build: patch build-stamp manpages
+
+build-stamp:
dh_testdir
cp Main.cc Main-RNA.cc
cp debian/Defaults-RNA.h Defaults-RNA.h
$(MAKE)
touch build-stamp
-manpages: debian/probcons.1.xml debian/probcons-RNA.1.xml debian/pc-project.1.xml debian/pc-compare.1.xml debian/pc-makegnuplot.1.xml
+manpages: manpages-stamp
+
+manpages-stamp: debian/probcons.1.xml debian/probcons-RNA.1.xml debian/pc-project.1.xml debian/pc-compare.1.xml debian/pc-makegnuplot.1.xml
$(XP) debian/probcons.1.xml
$(XP) debian/probcons-RNA.1.xml
$(XP) debian/pc-project.1.xml
$(XP) debian/pc-compare.1.xml
$(XP) debian/pc-makegnuplot.1.xml
+ touch manpages-stamp
clean: unpatch
dh_testdir
dh_testroot
- rm -f build-stamp configure-stamp
+ rm -f build-stamp manpages-stamp
dh_clean $(BINARIES) $(MANPAGES) Main-RNA.cc Defaults-RNA.h
install: build
More information about the debian-med-commit
mailing list