1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-25 00:51:21 +00:00
freebsd-ports/news/rawdog/Makefile
Jimmy Olgeni 7dc406a7a1 Remove indefinite articles and trailing periods from COMMENT, plus minor
COMMENT typos and surrounding whitespace fixes. A few Makefiles where not
included as they contain Latin-1 characters that break the Phabricator
workflow. Category N.

CR:		D307
Approved by:	portmgr (bapt)
2014-07-10 12:13:11 +00:00

54 lines
1.4 KiB
Makefile

# Created by: Tim Bishop <tim@bishnet.net>
# $FreeBSD$
PORTNAME= rawdog
PORTVERSION= 2.19
CATEGORIES= news python
MASTER_SITES= http://offog.org/files/ \
http://ftp.i-scream.org/pub/offog.org/files/
MAINTAINER= tdb@FreeBSD.org
COMMENT= Simple RSS aggregator
LICENSE= GPLv2
RUN_DEPENDS= ${PYTHON_SITELIBDIR}/feedparser.py:${PORTSDIR}/textproc/py-feedparser
USE_PYTHON= yes
USE_PYDISTUTILS= yes
NO_ARCH= yes
PORTDOCS= README
PKGMESSAGE= ${WRKDIR}/pkg-message
OPTIONS_DEFINE= DOCS EXAMPLES
.include <bsd.port.options.mk>
post-install:
${MKDIR} ${STAGEDIR}${EXAMPLESDIR}
${INSTALL_DATA} ${WRKSRC}/config ${STAGEDIR}${EXAMPLESDIR}
${INSTALL_DATA} ${WRKSRC}/style.css ${STAGEDIR}${EXAMPLESDIR}
${MKDIR} ${STAGEDIR}${DOCSDIR}
${INSTALL_DATA} ${PORTDOCS:S,^,${WRKSRC}/,} ${STAGEDIR}${DOCSDIR}
.if ${PORT_OPTIONS:MDOCS} || ${PORT_OPTIONS:MEXAMPLES}
@${ECHO_MSG} " ---------------------------------------------" \
>>${PKGMESSAGE}
.endif
.if ${PORT_OPTIONS:MEXAMPLES}
@${ECHO_MSG} " Sample config and stylesheet installed in:" \
>>${PKGMESSAGE}
@${ECHO_MSG} " ${EXAMPLESDIR}" >>${PKGMESSAGE}
.endif
.if ${PORT_OPTIONS:MDOCS}
@${ECHO_MSG} " Please read the README:" >>${PKGMESSAGE}
@${ECHO_MSG} " ${DOCSDIR}/README" >>${PKGMESSAGE}
.endif
.if ${PORT_OPTIONS:MDOCS} || ${PORT_OPTIONS:MEXAMPLES}
@${ECHO_MSG} " ---------------------------------------------" \
>>${PKGMESSAGE}
.endif
.include <bsd.port.mk>