mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-22 00:35:15 +00:00
7536141c34
- Convert USE_BZIP2=yes to USES=tar:bzip2 - Use COPYTREE_SHARE istead of CP - Revert deprecation, distfile is fetchable again
30 lines
746 B
Makefile
30 lines
746 B
Makefile
# Created by: Alan Snelson <alan@wave2.co.uk>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= planet
|
|
PORTVERSION= 2.0
|
|
CATEGORIES= www
|
|
MASTER_SITES= http://www.planetplanet.org/download/
|
|
|
|
MAINTAINER= alan@wave2.co.uk
|
|
COMMENT= Planet is a flexible feed aggregator - and more!
|
|
|
|
RUN_DEPENDS= ${PYTHON_SITELIBDIR}/mx/Tidy/Tidy.py:${PORTSDIR}/devel/py-mx-experimental \
|
|
${PYTHON_PKGNAMEPREFIX}bsddb>0:${PORTSDIR}/databases/py-bsddb
|
|
|
|
USES= tar:bzip2
|
|
NO_BUILD= yes
|
|
USE_PYTHON= yes
|
|
SUB_FILES= pkg-message
|
|
PKGMESSAGE= ${WRKDIR}/pkg-message
|
|
|
|
post-extract:
|
|
@${RM} ${WRKSRC}/.bzrignore
|
|
@${FIND} ${WRKSRC}/ -type d -name '.bzr' | ${XARGS} ${RM} -rf
|
|
|
|
do-install:
|
|
@${MKDIR} ${STAGEDIR}${DATADIR}
|
|
(cd ${WRKSRC} && ${COPYTREE_SHARE} . ${STAGEDIR}${DATADIR})
|
|
|
|
.include <bsd.port.mk>
|