aboutsummaryrefslogtreecommitdiff
path: root/ports-mgmt/portell
diff options
context:
space:
mode:
Diffstat (limited to 'ports-mgmt/portell')
-rw-r--r--ports-mgmt/portell/Makefile48
-rw-r--r--ports-mgmt/portell/distinfo3
-rw-r--r--ports-mgmt/portell/files/patch-portell.py26
-rw-r--r--ports-mgmt/portell/pkg-descr10
4 files changed, 0 insertions, 87 deletions
diff --git a/ports-mgmt/portell/Makefile b/ports-mgmt/portell/Makefile
deleted file mode 100644
index b8d457b903e5..000000000000
--- a/ports-mgmt/portell/Makefile
+++ /dev/null
@@ -1,48 +0,0 @@
-# New ports collection makefile for: portell
-# Date created: Wed Jan 08 13:25:35 GMT 2003
-# Whom: mich@freebsdcluster.org
-#
-# $FreeBSD$
-#
-
-PORTNAME= portell
-PORTVERSION= 0.2
-PORTREVISION= 1
-CATEGORIES= misc
-MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
-MASTER_SITE_SUBDIR= ${PORTNAME}
-EXTRACT_SUFX= .zip
-
-MAINTAINER= mich@FreeBSD.org
-COMMENT= Quick display of FreeBSD port descriptions
-
-USE_ZIP= YES
-USE_PYTHON= YES
-NO_BUILD= YES
-
-PLIST_FILES= bin/portell
-PORTDOCS= README.txt
-
-post-extract:
- ${REINPLACE_CMD} -e 's/[[:cntrl:]]*$$//' ${WRKSRC}/portell.py
- ${REINPLACE_CMD} -e 's/free/freebsd/' ${WRKSRC}/portell.py
- ${REINPLACE_CMD} -e 's/portell.py/portell/' ${WRKSRC}/README.txt
-
-do-install:
- ${INSTALL_SCRIPT} ${WRKSRC}/portell.py ${PREFIX}/bin/portell
-.if !defined(NOPORTDOCS)
- @${MKDIR} ${DOCSDIR}
- ${INSTALL_DATA} ${WRKSRC}/README.txt ${DOCSDIR}
-.endif
-
-post-install:
-.if !defined(BATCH)
- @${ECHO_MSG} ""
- @${ECHO_MSG} "###############################################################################"
- @${ECHO_MSG} "# You must run 'portell -u' to initialize the DB"
- @${ECHO_MSG} "# ${DOCSDIR}/README.txt for more information."
- @${ECHO_MSG} "###############################################################################"
- @${ECHO_MSG} ""
-.endif
-
-.include <bsd.port.mk>
diff --git a/ports-mgmt/portell/distinfo b/ports-mgmt/portell/distinfo
deleted file mode 100644
index 9afeff741eab..000000000000
--- a/ports-mgmt/portell/distinfo
+++ /dev/null
@@ -1,3 +0,0 @@
-MD5 (portell-0.2.zip) = 0473f21d5b1884b40cb2eab183c210ef
-SHA256 (portell-0.2.zip) = c7d76ba7d59be5276a480f2defdbd0e0c79fd51be9669354805b96817ba57306
-SIZE (portell-0.2.zip) = 1780
diff --git a/ports-mgmt/portell/files/patch-portell.py b/ports-mgmt/portell/files/patch-portell.py
deleted file mode 100644
index 51177d7a848b..000000000000
--- a/ports-mgmt/portell/files/patch-portell.py
+++ /dev/null
@@ -1,26 +0,0 @@
-
-$FreeBSD$
-
---- portell.py.orig
-+++ portell.py
-@@ -14,12 +14,16 @@
- PORTELL_DB = "/var/db/portell.db"
-
- PORTS_DIR = "/usr/ports/"
--
-+IGNORE_DIRS = { "distfiles":None, "Tools":None, "packages":None }
-
- def write_pathname(d, dirname, names):
-- '/'.join(dirname.split('/')[:5]) # chop port path subdirs
-- d[os.path.basename(dirname)] = dirname
--
-+ dirs=dirname.split('/')
-+ if len(dirs)==4:
-+ if IGNORE_DIRS.has_key(dirs[3]):
-+ del names[:]
-+ elif len(dirs)==5:
-+ d[dirs[4]] = dirname
-+ del names[:]
-
- def update_db(msg):
- print msg
diff --git a/ports-mgmt/portell/pkg-descr b/ports-mgmt/portell/pkg-descr
deleted file mode 100644
index 6fb8b68df0cc..000000000000
--- a/ports-mgmt/portell/pkg-descr
+++ /dev/null
@@ -1,10 +0,0 @@
-portell is a program that allows FreeBSD users to view the description as
-given in its pkg-descr file for a specific port. If you want to know what
-the program "Foo" is, then you can type "portell foo" and portell will
-find its pkg-descr file and dump it on your display.
-
-WWW: http://portell.sourceforge.net
-AUTHOR: Ryan Kulla <toxicpulse@sbcglobal.net>
-
-- Michael L. Hostbaek
- mich@FreeBSD.org