1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46
|
#! /bin/sh -e
## 005_Makefile.in.dpatch by <felipe@cathedrallabs.org>
##
## All lines beginning with `## DP:' are a description of the patch.
## DP: Removing INSTALL COPYING LICENSE
if [ $# -lt 1 ]; then
echo "`basename $0`: script expects -patch|-unpatch as argument" >&2
exit 1
fi
[ -f debian/patches/00patch-opts ] && . debian/patches/00patch-opts
patch_opts="${patch_opts:--f --no-backup-if-mismatch} ${2:+-d $2}"
case "$1" in
-patch) patch -p1 ${patch_opts} < $0;;
-unpatch) patch -R -p1 ${patch_opts} < $0;;
*)
echo "`basename $0`: script expects -patch|-unpatch as argument" >&2
exit 1;;
esac
exit 0
@DPATCH@
--- lifelines-3.0.50.orig/Makefile.in
+++ lifelines-3.0.50/Makefile.in
@@ -41,7 +41,7 @@
DIST_COMMON = README $(am__configure_deps) $(srcdir)/Makefile.am \
$(srcdir)/Makefile.in $(srcdir)/config.h.in \
$(top_srcdir)/configure $(top_srcdir)/intl/Makefile.in \
- ABOUT-NLS AUTHORS COPYING ChangeLog INSTALL NEWS \
+ ABOUT-NLS AUTHORS ChangeLog NEWS \
build/autotools/README build/autotools/config.guess \
build/autotools/config.rpath build/autotools/config.sub \
build/autotools/depcomp build/autotools/install-sh \
@@ -219,7 +219,7 @@
# intl must come before src since we link with it!
SUBDIRS = build intl po win32 src docs reports tt
EXTRA_DIST = .linesrc lines.cfg lines.cfg.input \
- COPYING LICENSE INSTALL NEWS README AUTHORS ABOUT-NLS \
+ NEWS README AUTHORS ABOUT-NLS \
README.AUTOCONF README.DEVELOPERS README.INTERNATIONAL \
README.LAYOUT README.MAINTAINERS
|