diff options
author | jylefort <jylefort@FreeBSD.org> | 2006-02-18 10:13:36 +0000 |
---|---|---|
committer | jylefort <jylefort@FreeBSD.org> | 2006-02-18 10:13:36 +0000 |
commit | 456cf1c8089392382913fe15b5e52b3024d7063e (patch) | |
tree | 3f1ac0559c9b86fa09eec34ea6c962a47c0a40e0 /ports-mgmt/psearch | |
parent | c768bf517e510348b0ce0c1dc74bfa76efdfb6eb (diff) | |
download | FreeBSD-ports-456cf1c8089392382913fe15b5e52b3024d7063e.zip FreeBSD-ports-456cf1c8089392382913fe15b5e52b3024d7063e.tar.gz |
Add psearch.
psearch is an utility for searching the FreeBSD Ports Collection.
It allows you to use regular expressions, and has support for searching
the long description (pkg-descr files), as well as inverse matches that
allow filtering of ports.
WWW: http://www.maxlor.com/freebsd-scripts.shtml
PR: ports/93490
Submitted by: Benjamin Lutz <benlutz@datacomm.ch>
Diffstat (limited to 'ports-mgmt/psearch')
-rw-r--r-- | ports-mgmt/psearch/Makefile | 26 | ||||
-rw-r--r-- | ports-mgmt/psearch/distinfo | 3 | ||||
-rw-r--r-- | ports-mgmt/psearch/pkg-descr | 7 |
3 files changed, 36 insertions, 0 deletions
diff --git a/ports-mgmt/psearch/Makefile b/ports-mgmt/psearch/Makefile new file mode 100644 index 0000000..784c090 --- /dev/null +++ b/ports-mgmt/psearch/Makefile @@ -0,0 +1,26 @@ +# New ports collection makefile for: psearch +# Date created: 17 February 2006 +# Whom: Benjamin Lutz +# +# $FreeBSD$ +# + +PORTNAME= psearch +PORTVERSION= 1.0 +CATEGORIES= sysutils +MASTER_SITES= http://www.maxlor.com/files/ + +MAINTAINER= benlutz@datacomm.ch +COMMENT= An utility for searching the FreeBSD Ports Collection + +USE_PYTHON_RUN= yes +NO_BUILD= yes + +MAN1= psearch.1 +PLIST_FILES= bin/psearch + +do-install: + ${INSTALL_SCRIPT} ${WRKSRC}/psearch ${PREFIX}/bin + ${INSTALL_MAN} ${WRKSRC}/psearch.1 ${MANPREFIX}/man/man1 + +.include <bsd.port.mk> diff --git a/ports-mgmt/psearch/distinfo b/ports-mgmt/psearch/distinfo new file mode 100644 index 0000000..8b3ca8c --- /dev/null +++ b/ports-mgmt/psearch/distinfo @@ -0,0 +1,3 @@ +MD5 (psearch-1.0.tar.gz) = 39af7bcac687a8e4890ff44888959d51 +SHA256 (psearch-1.0.tar.gz) = fbfd05985a55508bec9aa3b78f50f72e38a318c1e56240afea786cc00ea60988 +SIZE (psearch-1.0.tar.gz) = 4280 diff --git a/ports-mgmt/psearch/pkg-descr b/ports-mgmt/psearch/pkg-descr new file mode 100644 index 0000000..db67cc1 --- /dev/null +++ b/ports-mgmt/psearch/pkg-descr @@ -0,0 +1,7 @@ +psearch is an utility for searching the FreeBSD Ports Collection. + +It allows you to use regular expressions, and has support for searching +the long description (pkg-descr files), as well as inverse matches that +allow filtering of ports. + +WWW: http://www.maxlor.com/freebsd-scripts.shtml |