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
|
#! /bin/sh /usr/share/dpatch/dpatch-run
## 01_makefile_fixes.dpatch by <rene@frodo>
##
## All lines beginning with `## DP:' are a description of the patch.
## DP: No description.
@DPATCH@
diff -urNad multitail-3.9.15~/Makefile multitail-3.9.15/Makefile
--- multitail-3.9.15~/Makefile 2006-04-07 19:02:32.000000000 +0200
+++ multitail-3.9.15/Makefile 2006-04-07 19:05:07.000000000 +0200
@@ -18,13 +18,9 @@
cp multitail $(DESTDIR)/usr/bin
cp multitail.1 $(DESTDIR)/usr/share/man/man1/multitail.1
- mkdir -p $(DESTDIR)/usr/share/doc/multitail-$(VERSION)
- cp *.txt INSTALL manual*.html $(DESTDIR)/usr/share/doc/multitail-$(VERSION)
- #
- ### COPIED multitail.conf.new, YOU NEED TO REPLACE THE multitail.conf
- ### YOURSELF WITH THE NEW FILE
- #
- cp multitail.conf $(DESTDIR)/etc/multitail.conf.new
+ cp multitail.conf $(DESTDIR)/etc/multitail.conf
+ mkdir -p $(DESTDIR)/usr/share/doc/multitail
+ cp *.txt INSTALL manual*.html $(DESTDIR)/usr/share/doc/multitail
rm -f $(DESTDIR)/usr/share/man/man1/multitail.1.gz
gzip -9 $(DESTDIR)/usr/share/man/man1/multitail.1
#
|