diff options
Diffstat (limited to 'misc/freecode-submit/Makefile')
-rw-r--r-- | misc/freecode-submit/Makefile | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/misc/freecode-submit/Makefile b/misc/freecode-submit/Makefile new file mode 100644 index 000000000000..add4a5796b8a --- /dev/null +++ b/misc/freecode-submit/Makefile @@ -0,0 +1,30 @@ +# New ports collection makefile for: freshmeat-submit +# Date created: 2 Jan 2005 +# Whom: x +# +# $FreeBSD$ +# + +PORTNAME= freshmeat-submit +PORTVERSION= 1.6 +CATEGORIES= misc +MASTER_SITES= http://www.catb.org/~esr/freshmeat-submit/ + +MAINTAINER= ports@FreeBSD.org +COMMENT= Submission of updates to Freshmeat via its XML-RPC + +USE_PYTHON= yes +NO_BUILD= yes + +PLIST_FILES= bin/freshmeat-submit +MAN1= freshmeat-submit.1 + +.include <bsd.port.pre.mk> + +do-install: + ${MKDIR} ${PREFIX}/bin + ${INSTALL_SCRIPT} ${WRKSRC}/freshmeat-submit ${PREFIX}/bin + ${MKDIR} ${MAN1PREFIX}/man/man1 + ${INSTALL_MAN} ${WRKSRC}/freshmeat-submit.1 ${MAN1PREFIX}/man/man1 + +.include <bsd.port.post.mk> |