diff options
Diffstat (limited to 'misc/gpt/files')
-rw-r--r-- | misc/gpt/files/patch-build__gpt | 11 | ||||
-rw-r--r-- | misc/gpt/files/patch-packaging__tools_Makefile.in | 18 | ||||
-rw-r--r-- | misc/gpt/files/patch-tools_DistGPT.pm | 26 |
3 files changed, 55 insertions, 0 deletions
diff --git a/misc/gpt/files/patch-build__gpt b/misc/gpt/files/patch-build__gpt new file mode 100644 index 000000000000..2d1476065fe1 --- /dev/null +++ b/misc/gpt/files/patch-build__gpt @@ -0,0 +1,11 @@ + +$FreeBSD$ + +--- build_gpt.orig Fri Jan 16 15:11:51 2004 ++++ build_gpt Fri Jan 16 15:13:12 2004 +@@ -1,4 +1,4 @@ +-#! /usr/bin/env perl ++#!@@PERL@@ + + use strict; + use Getopt::Long; diff --git a/misc/gpt/files/patch-packaging__tools_Makefile.in b/misc/gpt/files/patch-packaging__tools_Makefile.in new file mode 100644 index 000000000000..7b70ed0ffd4a --- /dev/null +++ b/misc/gpt/files/patch-packaging__tools_Makefile.in @@ -0,0 +1,18 @@ + +$FreeBSD$ + +--- packaging_tools/Makefile.in.orig Tue Dec 9 07:36:07 2003 ++++ packaging_tools/Makefile.in Thu Feb 26 09:49:04 2004 +@@ -847,8 +847,10 @@ + $(mkinstalldirs) $(DESTDIR)man/man1; \ + list='$(sbin_SCRIPTS)'; for p in $$list; do \ + script=`echo $$p | sed 's!perl/scripts/!!'`; \ +- echo "Generating $(DESTDIR)$(prefix)/man/man1/$$script.1"; \ +- $(POD2MAN) $$p > $(DESTDIR)$(prefix)/man/man1/$$script.1; \ ++ if /usr/bin/grep -q ^=cut $$p; then \ ++ echo "Generating $(DESTDIR)$(prefix)/man/man1/$$script.1"; \ ++ $(POD2MAN) $$p > $(DESTDIR)$(prefix)/man/man1/$$script.1; \ ++ fi; \ + done \ + else \ + echo "Skipping Man page installation"; \ diff --git a/misc/gpt/files/patch-tools_DistGPT.pm b/misc/gpt/files/patch-tools_DistGPT.pm new file mode 100644 index 000000000000..16c9f1c3ed83 --- /dev/null +++ b/misc/gpt/files/patch-tools_DistGPT.pm @@ -0,0 +1,26 @@ + +$FreeBSD$ + +--- tools/DistGPT.pm.orig Fri Jan 16 16:31:06 2004 ++++ tools/DistGPT.pm Fri Jan 16 16:34:24 2004 +@@ -34,20 +34,12 @@ + + my @buildorder = ( + "zlib", +- "perlzlib", +- "perlzlibio", +- "perltest", +- "perlpatch", +- "perltar", + "oldautoconf", + "oldlibtool", + "oldautomake", + "autoconf", + "libtool", + "automake", +- "filespec", +- "podparser", +- "md5", + "core", + "gpt", + ); |