diff options
author | miwi <miwi@FreeBSD.org> | 2007-04-20 20:40:28 +0800 |
---|---|---|
committer | miwi <miwi@FreeBSD.org> | 2007-04-20 20:40:28 +0800 |
commit | dbad32ae1141419a85753c03fa69c6cac70d16c9 (patch) | |
tree | 636593aa5aa4d154b44885f1d503ff85cb70fc29 /ports-mgmt | |
parent | 5ee04854798c9cb8ba6b92dd61273f01fe6e1fef (diff) | |
download | freebsd-ports-gnome-dbad32ae1141419a85753c03fa69c6cac70d16c9.tar.gz freebsd-ports-gnome-dbad32ae1141419a85753c03fa69c6cac70d16c9.tar.zst freebsd-ports-gnome-dbad32ae1141419a85753c03fa69c6cac70d16c9.zip |
Genplist automatically creates a static plist for a port by installing it
into a temporary directory, and then examining the directory tree. The
process is based on the instructions for plist generation in the
FreeBSD Porter's Handbook.
WWW: http://www.neuro.mcw.edu/~bacon/FreeBSD_MRI
PR: ports/111892
Submitted by: Jason Bacon bacon at smithers.neuro.mcw.edu
Sponsord by: addport
Diffstat (limited to 'ports-mgmt')
-rw-r--r-- | ports-mgmt/genplist/Makefile | 26 | ||||
-rw-r--r-- | ports-mgmt/genplist/distinfo | 3 | ||||
-rw-r--r-- | ports-mgmt/genplist/pkg-descr | 6 |
3 files changed, 35 insertions, 0 deletions
diff --git a/ports-mgmt/genplist/Makefile b/ports-mgmt/genplist/Makefile new file mode 100644 index 000000000000..6d95dc5ab72a --- /dev/null +++ b/ports-mgmt/genplist/Makefile @@ -0,0 +1,26 @@ +# New ports collection makefile for: genplist +# Date created: 2007-04-19 +# Whom: Jason Bacon bacon@smithers.neuro.mcw.edu +# +# $FreeBSD$ +# + +PORTNAME= genplist +PORTVERSION= 0.1 +CATEGORIES= ports-mgmt +MASTER_SITES= http://www.neuro.mcw.edu/~bacon/Ports/distfiles/ + +MAINTAINER= bacon@smithers.neuro.mcw.edu +COMMENT= Generates a static plist for a port + +NO_BUILD= yes + +PLIST_FILES= bin/genplist + +MAN1= genplist.1 + +do-install: + ${INSTALL_SCRIPT} ${WRKSRC}/genplist ${PREFIX}/bin + ${INSTALL_MAN} ${WRKSRC}/genplist.1 ${PREFIX}/man/man1 + +.include <bsd.port.mk> diff --git a/ports-mgmt/genplist/distinfo b/ports-mgmt/genplist/distinfo new file mode 100644 index 000000000000..6923f5ca82f4 --- /dev/null +++ b/ports-mgmt/genplist/distinfo @@ -0,0 +1,3 @@ +MD5 (genplist-0.1.tar.gz) = dc781b08646314dd2d62ef24c1cc05e2 +SHA256 (genplist-0.1.tar.gz) = 9829668038ec2f26943025884629f41738e94e4114557a67dbe613d81d9e3245 +SIZE (genplist-0.1.tar.gz) = 2309 diff --git a/ports-mgmt/genplist/pkg-descr b/ports-mgmt/genplist/pkg-descr new file mode 100644 index 000000000000..b3bf0f565af3 --- /dev/null +++ b/ports-mgmt/genplist/pkg-descr @@ -0,0 +1,6 @@ +Genplist automatically creates a static plist for a port by installing it +into a temporary directory, and then examining the directory tree. The +process is based on the instructions for plist generation in the +FreeBSD Porter's Handbook. + +WWW: http://www.neuro.mcw.edu/~bacon/FreeBSD_MRI |