Description: Upstream changes introduced in version 3.0-1
This patch has been created by dpkg-source during the package build.
Here's the last changelog entry, hopefully it gives details on why
those changes were made:
.
hmmer (3.0-1) unstable; urgency=low
.
* The 3.0 release should now substitute the outdated 2.3.x one.
* The hmmer-pvm package is no longer available.
.
The person named in the Author field signed this changelog entry.
Author: Eric Talevich <etal@uga.edu>
---
The information above should follow the Patch Tagging Guidelines, please
checkout http://dep.debian.net/deps/dep3/ to learn about the format. Here
are templates for supplementary fields that you might want to add:
Origin: <vendor|upstream|other>, <url of original patch>
Bug: <url in upstream bugtracker>
Bug-Debian: http://bugs.debian.org/<bugnumber>
Bug-Ubuntu: https://launchpad.net/bugs/<bugnumber>
Forwarded: <no|not-needed|url proving that it has been forwarded>
Reviewed-By: <name and email of someone who approved the patch>
Last-Update: <YYYY-MM-DD>
--- hmmer-3.0.orig/Makefile.in
+++ hmmer-3.0/Makefile.in
@@ -39,7 +39,7 @@ datarootdir = @datarootdir@
bindir = @bindir@
mandir = @mandir@
man1dir = ${mandir}/man1
-manext = .1
+manext = 1
# Compiler configuration
#
@@ -180,10 +180,10 @@ install: libraries programs
for file in $(PROGS); do\
cp ${SRCDIR}/$$file ${DESTDIR}${bindir}/;\
done
-# -mkdir -p ${DESTDIR}/${MANDIR}/man${MANSUFFIX}
-# -for file in hmmer $(PROGS); do\
-# $(INSTMAN) documentation/man/$$file.man ${DESTDIR}$(MANDIR)/man$(MANSUFFIX)/$$file.$(MANSUFFIX);\
-# done
+ -mkdir -p ${DESTDIR}/${mandir}/man${manext}
+ -for file in hmmer $(PROGS); do\
+ $(INSTMAN) documentation/man/$$file.man ${DESTDIR}${mandir}/man${manext}/$$file.${manext};\
+ done
# uninstall: Reverses the steps of "make install".
#
@@ -191,9 +191,9 @@ uninstall:
for file in $(PROGS); do\
rm ${DESTDIR}${bindir}/$$file;\
done
-# for file in hmmer $(PROGS); do\
-# rm $(MANDIR)/man$(MANSUFFIX)/$$file.$(MANSUFFIX);\
-# done
+ for file in hmmer $(PROGS); do\
+ rm $(MANDIR)/man$(manext)/$$file.$(manext);\
+ done
# "make clean" removes almost everything except configuration files.