diff options
author | adamw <adamw@FreeBSD.org> | 2003-06-03 21:47:49 +0000 |
---|---|---|
committer | adamw <adamw@FreeBSD.org> | 2003-06-03 21:47:49 +0000 |
commit | 23fbe9d82d72fc873b4f3c3f7a671b6e35cca556 (patch) | |
tree | d30f2094b0f0d37b3295b12acf58ab98bca2273f /sysutils/portsman/Makefile | |
parent | e4038c759aa326d022d68a55c1aa4fe84ee431fd (diff) | |
download | FreeBSD-ports-23fbe9d82d72fc873b4f3c3f7a671b6e35cca556.zip FreeBSD-ports-23fbe9d82d72fc873b4f3c3f7a671b6e35cca556.tar.gz |
Add portsman.
Ports manager is a ncurses based, graphical front-end to manage
the FreeBSD ports collection. It behaves like a package manager
and comes with many features.
PR: ports/47192
Submitted by: Anselm Garbe <anselmg@t-online.de>
Diffstat (limited to 'sysutils/portsman/Makefile')
-rw-r--r-- | sysutils/portsman/Makefile | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/sysutils/portsman/Makefile b/sysutils/portsman/Makefile new file mode 100644 index 0000000..0517604 --- /dev/null +++ b/sysutils/portsman/Makefile @@ -0,0 +1,29 @@ +# New ports collection makefile for: portsman +# Date created: 18 January 2003 +# Whom: Anselm R. Garbe <anselmg@t-online.de> +# +# $FreeBSD$ +# + +PORTNAME= portsman +PORTVERSION= 0.2 +CATEGORIES= sysutils +MASTER_SITES= http://download.berlios.de/portsman/ +# temporary +DISTNAME= ${PORTNAME}-${PORTVERSION}-rc2 + +MAINTAINER= anselmg@t-online.de +COMMENT= An ncurses based front-end to manage the FreeBSD ports collection + +.include <bsd.port.pre.mk> + +.if ${OSVERSION} < 400000 +LIB_DEPENDS= ncurses.5:${PORTSDIR}/devel/ncurses +.endif + +MAN1= portsman.1 +MAN5= portsmanrc.5 +USE_GZIP= yes +GNU_CONFIGURE= yes + +.include <bsd.port.post.mk> |