diff options
Diffstat (limited to 'news/rawdog/Makefile')
-rw-r--r-- | news/rawdog/Makefile | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/news/rawdog/Makefile b/news/rawdog/Makefile new file mode 100644 index 0000000..c5a6008 --- /dev/null +++ b/news/rawdog/Makefile @@ -0,0 +1,36 @@ +# New ports collection makefile for: rawdog +# Date created: 9 September 2003 +# Whom: Tim Bishop <tim@bishnet.net> +# +# $FreeBSD$ +# + +PORTNAME= rawdog +PORTVERSION= 1.2 +CATEGORIES= news python +MASTER_SITES= http://offog.org/files/ + +MAINTAINER= tim@bishnet.net +COMMENT= A simple RSS aggregator + +USE_PYTHON= yes +USE_PYDISTUTILS= yes + +post-install: + ${MKDIR} ${EXAMPLESDIR} + ${INSTALL_DATA} ${WRKSRC}/config ${EXAMPLESDIR} + ${INSTALL_DATA} ${WRKSRC}/style.css ${EXAMPLESDIR} +.if !defined(NOPORTDOCS) + ${MKDIR} ${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/README ${DOCSDIR} +.endif + @echo " ---------------------------------------------" + @echo " Sample config and stylesheet installed in:" + @echo " ${EXAMPLESDIR}" +.if !defined(NOPORTDOCS) + @echo " Please read the README:" + @echo " ${DOCSDIR}/README" +.endif + @echo " ---------------------------------------------" + +.include <bsd.port.mk> |