9bc1509239
PR: ports/153574 Submitted by: Chifeng Qu <chifeng@gmail.com> (maintainer)
41 lines
1.1 KiB
Makefile
41 lines
1.1 KiB
Makefile
# New ports collection makefile for: rss2email
|
|
# Date created: 17 March 2007
|
|
# Whom: Andrew Pantyukhin <infofarmer@FreeBSD.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= rss2email
|
|
PORTVERSION= 2.70
|
|
CATEGORIES= mail python
|
|
MASTER_SITES= http://www.allthingsrss.com/rss2email/
|
|
|
|
MAINTAINER= chifeng@gmail.com
|
|
COMMENT= Read newsfeeds in your email client
|
|
|
|
RUN_DEPENDS= py*-feedparser>=0:${PORTSDIR}/textproc/py-feedparser \
|
|
py*-html2text>=0:${PORTSDIR}/textproc/py-html2text
|
|
|
|
USE_PYTHON= yes
|
|
NO_BUILD= yes
|
|
PLIST_FILES= bin/r2e %%DATADIR%%/${PORTNAME}.py
|
|
PLIST_DIRS= %%DATADIR%%
|
|
PORTEXAMPLES= config.py.example
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's|@PYTHONCMD@|${PYTHON_CMD}|;s|@DATADIR@|${DATADIR}|'\
|
|
${WRKSRC}/r2e
|
|
@${REINPLACE_CMD} -e "s|\([^[:alnum:]]\)c.type\([^[:alnum:]]\)|\1c.get('type','')\2|"\
|
|
${WRKSRC}/rss2email.py
|
|
|
|
do-install:
|
|
@${INSTALL} -d ${DATADIR}/
|
|
@${INSTALL_SCRIPT} ${WRKSRC}/${PORTNAME}.py ${DATADIR}/
|
|
@${INSTALL_SCRIPT} ${WRKSRC}/r2e ${PREFIX}/bin/
|
|
.ifndef NOPORTEXAMPLES
|
|
@${INSTALL} -d ${EXAMPLESDIR}/
|
|
@${INSTALL_DATA} ${WRKSRC}/config.py.example ${EXAMPLESDIR}/
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|