summaryrefslogtreecommitdiff
path: root/sysutils/pib
diff options
context:
space:
mode:
Diffstat (limited to 'sysutils/pib')
-rw-r--r--sysutils/pib/Makefile28
-rw-r--r--sysutils/pib/distinfo3
-rw-r--r--sysutils/pib/files/patch-Makefile10
-rw-r--r--sysutils/pib/files/patch-pib71
-rw-r--r--sysutils/pib/files/patch-tkPort.h12
-rw-r--r--sysutils/pib/pkg-descr5
-rw-r--r--sysutils/pib/pkg-plist5
7 files changed, 0 insertions, 134 deletions
diff --git a/sysutils/pib/Makefile b/sysutils/pib/Makefile
deleted file mode 100644
index 970acd68edd6..000000000000
--- a/sysutils/pib/Makefile
+++ /dev/null
@@ -1,28 +0,0 @@
-# New ports collection makefile for: pib
-# Date created: 30 December 1996
-# Whom: Mike Smith <msmith@freebsd.org>
-#
-# $FreeBSD$
-#
-
-PORTNAME= pib
-PORTVERSION= 1.2
-CATEGORIES= sysutils tk82
-MASTER_SITES= ${MASTER_SITE_LOCAL}
-MASTER_SITE_SUBDIR= msmith
-
-MAINTAINER= .@babolo.ru
-COMMENT= GUI Ports Collection management tool
-
-BUILD_DEPENDS= wish8.2:${PORTSDIR}/x11-toolkits/tk82
-RUN_DEPENDS= wish8.2:${PORTSDIR}/x11-toolkits/tk82
-
-.include <bsd.port.pre.mk>
-
-do-install:
- ${MKDIR} ${PREFIX}/lib/pib
- ${INSTALL_SCRIPT} ${WRKSRC}/*.tcl ${PREFIX}/lib/pib
- ${INSTALL_DATA} ${WRKSRC}/libTkSteal.so.2* ${PREFIX}/lib/pib
- ${LN} -fs ${PREFIX}/lib/pib/pib.tcl ${PREFIX}/bin/pib
-
-.include <bsd.port.post.mk>
diff --git a/sysutils/pib/distinfo b/sysutils/pib/distinfo
deleted file mode 100644
index d6a18ad39678..000000000000
--- a/sysutils/pib/distinfo
+++ /dev/null
@@ -1,3 +0,0 @@
-MD5 (pib-1.2.tar.gz) = fa095bd1f9854aa296b4d35f8ba029f5
-SHA256 (pib-1.2.tar.gz) = b588bbef9f491bae2d2715bcb1533bebf8eb4d447770253cbf53bbed7b6e665a
-SIZE (pib-1.2.tar.gz) = 33286
diff --git a/sysutils/pib/files/patch-Makefile b/sysutils/pib/files/patch-Makefile
deleted file mode 100644
index 2d9793630bbc..000000000000
--- a/sysutils/pib/files/patch-Makefile
+++ /dev/null
@@ -1,10 +0,0 @@
---- Makefile Sat Oct 28 12:55:08 2000
-+++ Makefile Mon Oct 21 04:40:15 2002
-@@ -8,7 +8,6 @@
- X11BASE?= /usr/X11R6
-
- LIB= TkSteal
--INTERNALLIB= YES # inhibits unuseful static library
- SHLIB_MAJOR= 2
- SHLIB_MINOR= 0
- NOPROFILE= yes
diff --git a/sysutils/pib/files/patch-pib b/sysutils/pib/files/patch-pib
deleted file mode 100644
index d0b9b13f39d8..000000000000
--- a/sysutils/pib/files/patch-pib
+++ /dev/null
@@ -1,71 +0,0 @@
---- pib.tcl Sat Oct 28 13:01:12 2000
-+++ pib.tcl Sat Apr 28 04:05:37 2001
-@@ -309,22 +309,11 @@
- #
- proc init_options {} {
-
-- # listboxes
-- option add *Listbox.background white;
-- option add *Listbox.selectForeground white;
-- option add *Listbox.selectBackground darkblue;
--
- # scrollbars
- option add *Scrollbar.width 11;
-
- # textboxes
-- option add *Text.background white;
-- option add *Text.selectForeground white;
-- option add *Text.selectBackground darkblue;
- option add *Text.font fixed;
--
-- # entries
-- option add *Entry.background white;
-
- }
-
-@@ -1931,36 +1920,19 @@
- update_pwin df_getdinfo [format "%d/%d ports, %dK/sec" $pports $Status(nports) $rate];
-
- # Find the md5 file.
-- if {[catch {set fh [open "$path/files/md5" "r"]}]} {
-+ if {[catch {set fh [open "$path/distinfo" "r"]}]} {
-
-- # Nope. Perhaps we're dealing with US ITAR braindamage
-- if {[op_elookup USA_RESIDENT]} {
-- set aname "$path/files.usa/md5";
-+ # Can't find an distinfo file; give up
-+ if {[file isdirectory "$path"]} {
-+ if {$Options(warn_no_md5)} {
-+ lappend errs "$pname: '$path/distinfo' not found";
-+ }
- } else {
-- set aname "$path/files.non_usa/md5";
-- }
--
-- # try again with a new name
-- if {[catch {set fh [open $aname "r"]}]} {
--
-- # Can't find an md5 file; give up
-- if {[file isdirectory "$path/files"]} {
-- if {$Options(warn_no_md5)} {
-- lappend errs "$pname: '$path/files/md5' not found";
-- }
-- } else {
-- if {[file isdirectory $path]} {
-- if {$Options(warn_no_fdir)} {
-- lappend errs "$pname: '$path/files' not found";
-- }
-- } else {
-- if {$Options(warn_no_port)} {
-- lappend errs "$pname: directory missing.";
-- }
-- }
-+ if {$Options(warn_no_port)} {
-+ lappend errs "$pname: directory missing.";
- }
-- continue ; # if no port info, assume it's not wanted
- }
-+ continue ; # if no port info, assume it's not wanted
- }
-
- # initialise state for this port
diff --git a/sysutils/pib/files/patch-tkPort.h b/sysutils/pib/files/patch-tkPort.h
deleted file mode 100644
index f06866b80a73..000000000000
--- a/sysutils/pib/files/patch-tkPort.h
+++ /dev/null
@@ -1,12 +0,0 @@
---- tkPort.h.orig Wed Apr 13 17:30:58 2005
-+++ tkPort.h Wed Apr 13 17:30:13 2005
-@@ -133,8 +133,6 @@ extern int errno;
- * in any other header file.
- */
-
--extern void panic();
--
- /*
- * These functions do nothing under Unix, so we just eliminate calls them.
- */
-
diff --git a/sysutils/pib/pkg-descr b/sysutils/pib/pkg-descr
deleted file mode 100644
index b71d74e66030..000000000000
--- a/sysutils/pib/pkg-descr
+++ /dev/null
@@ -1,5 +0,0 @@
-The Ports Index Browser provides a quick and powerful means for browsing the
-FreeBSD Ports Collection INDEX file and performing related functions.
-
-It provides an intuitive GUI interface, online help and useful distfile
-management functions.
diff --git a/sysutils/pib/pkg-plist b/sysutils/pib/pkg-plist
deleted file mode 100644
index 5af3e9ca784f..000000000000
--- a/sysutils/pib/pkg-plist
+++ /dev/null
@@ -1,5 +0,0 @@
-bin/pib
-lib/pib/pib.tcl
-lib/pib/tkSteal.tcl
-lib/pib/libTkSteal.so.2
-@dirrm lib/pib