diff options
author | obraun <obraun@FreeBSD.org> | 2003-01-09 14:47:36 +0000 |
---|---|---|
committer | obraun <obraun@FreeBSD.org> | 2003-01-09 14:47:36 +0000 |
commit | 81b8d2e34348f820b410bc916e684777ab462288 (patch) | |
tree | e6a4eaf56c6ddb7aea99c489418544959d6a97e7 /misc/portell/Makefile | |
parent | 7d1fb6587d7e21647e2eb6c3815195531fd10b62 (diff) | |
download | FreeBSD-ports-81b8d2e34348f820b410bc916e684777ab462288.zip FreeBSD-ports-81b8d2e34348f820b410bc916e684777ab462288.tar.gz |
Add portell 0.1, quick display of FreeBSD port descriptions.
PR: ports/46869
Submitted by: mich@freebsdcluster.org
Diffstat (limited to 'misc/portell/Makefile')
-rw-r--r-- | misc/portell/Makefile | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/misc/portell/Makefile b/misc/portell/Makefile new file mode 100644 index 0000000..6d74901 --- /dev/null +++ b/misc/portell/Makefile @@ -0,0 +1,38 @@ +# 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.1 +CATEGORIES= misc +MASTER_SITES= http://www.seekrut.com/rk/ +DISTNAME= ${PORTNAME} +DIST_SUBDIR= ${PORTNAME}-${PORTVERSION} + +MAINTAINER= mich@freebsdcluster.org + +USE_PYTHON= YES +NO_BUILD= YES + +do-install: + ${INSTALL_SCRIPT} ${WRKDIR}/${PORTNAME}.py ${PREFIX}/bin + +.if !defined(NOPORTDOCS) + @${MKDIR} ${DOCSDIR} + ${INSTALL_DATA} ${WRKDIR}/README ${DOCSDIR} +.endif + +post-install: +.if !defined(BATCH) + @${ECHO_CMD} "" + @${ECHO_CMD} "###############################################################################" + @${ECHO_CMD} "# You must run 'portell.py -u' to initialize the DB. #" + @${ECHO_CMD} "# ${DOCSDIR}/README for more information. #" + @${ECHO_CMD} "###############################################################################" + @${ECHO_CMD} +.endif + +.include <bsd.port.mk> |