summaryrefslogtreecommitdiff
path: root/sysutils/pkg_tree/files
diff options
context:
space:
mode:
Diffstat (limited to 'sysutils/pkg_tree/files')
-rw-r--r--sysutils/pkg_tree/files/patch-Makefile13
-rw-r--r--sysutils/pkg_tree/files/patch-pkg_tree65
2 files changed, 0 insertions, 78 deletions
diff --git a/sysutils/pkg_tree/files/patch-Makefile b/sysutils/pkg_tree/files/patch-Makefile
deleted file mode 100644
index 5caa17d2e87d..000000000000
--- a/sysutils/pkg_tree/files/patch-Makefile
+++ /dev/null
@@ -1,13 +0,0 @@
---- Makefile.orig Wed Dec 12 23:06:13 2001
-+++ Makefile Wed Dec 12 23:07:35 2001
-@@ -11,8 +11,8 @@
- --date="December 15, 2001" pkg_tree.pod > pkg_tree.7
-
- install:
-- install -o root -g wheel -m 755 -c pkg_tree /usr/local/bin
-- install -o root -g wheel -m 644 -c pkg_tree.7 /usr/local/man/man7
-+ __INSTALL_SCRIPT__ pkg_tree __PREFIX__/bin
-+ __INSTALL_MAN__ pkg_tree.7 __PREFIX__/man/man7
-
- clean:
- rm pkg_tree.7
diff --git a/sysutils/pkg_tree/files/patch-pkg_tree b/sysutils/pkg_tree/files/patch-pkg_tree
deleted file mode 100644
index b2b81728e81b..000000000000
--- a/sysutils/pkg_tree/files/patch-pkg_tree
+++ /dev/null
@@ -1,65 +0,0 @@
---- pkg_tree.orig Wed Dec 12 13:44:40 2001
-+++ pkg_tree Mon Jan 6 23:02:31 2003
-@@ -26,7 +26,7 @@
- # updated by a newer version. In case of tcl-8.3.3_3, this is tcl-8.3.3_4.
- #
- # PKG-TREE is (c) Edwin Groothuis, edwin@mavetju.org
--# For license issues, see the file LICESE.
-+# For license issues, see the file LICENSE.
- # For more information, see the website: http://www.mavetju.org
- #
-
-@@ -34,10 +34,13 @@
-
- use Getopt::Std;
-
--use vars qw/ $opt_v /;
-+use vars qw/ $opt_b $opt_q $opt_t $opt_v /;
-
- $opt_v=0;
--getopts("v");
-+$opt_t=0;
-+$opt_b=0;
-+$opt_q=0;
-+getopts("bqtv");
-
- my $PKGDIR="/var/db/pkg";
-
-@@ -46,6 +49,7 @@
- closedir DIR;
-
- @dirs=grep !/^\./,@dirs;
-+@dirs=grep !/^pkgdb.db$/,@dirs;
- @dirs=sort @dirs;
-
- my @args=@ARGV;
-@@ -150,8 +154,10 @@
- }
- next if (!$found);
- }
-+ next if ($opt_t && $required{$pkg}[0]!=0);
-+ next if ($opt_b && $requires{$pkg}[0]!=0);
- print "$pkg\n";
-- if ($requires{$pkg}[0]!=0) {
-+ if (!$opt_q && $requires{$pkg}[0]!=0) {
- print_deps("|"," ",1,$pkg);
- }
- }
---- patch-aa ends here ---
-
---- patch-ab begins here ---
---- pkg_tree.pod.orig Wed Dec 12 13:44:40 2001
-+++ pkg_tree.pod Mon Jan 6 23:20:49 2003
-@@ -53,6 +53,12 @@
- |\__ freetype2-2.0.5
- \__ XFree86-libraries-4.1.0 (unknown)
-
-+Use the B<-t> parameter to show only top level packages,
-+and B<-b> to show only bottom level packages. And B<-t> B<-q>
-+together will give the list of top level packages without their
-+dependencies, installing only these packages should install all
-+currently installed packages.
-+
- =head1 RETURN VALUES
-
- Always 0.