mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-11 02:50:24 +00:00
43b0eb0cb0
Reassigning my ports back to the pool with the hope of freeing up to do more FreeBSD work in the future. Submitted by: glarkin
33 lines
720 B
Makefile
33 lines
720 B
Makefile
# Created by: Gerrit Beine <gerrit.beine@gmx.de>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= remind
|
|
PORTVERSION= 1
|
|
PORTREVISION= 5
|
|
CATEGORIES= www devel python
|
|
MASTER_SITES= http://www.unixmedia.it/
|
|
PKGNAMEPREFIX= trac-
|
|
DISTNAME= trac${PORTNAME}
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Trac tickets reminder script
|
|
|
|
RUN_DEPENDS+= tracd:${PORTSDIR}/www/trac
|
|
|
|
NO_BUILD= yes
|
|
USE_ZIP= yes
|
|
USE_PYTHON= -2.7
|
|
|
|
PLIST_FILES= bin/tracremind.py etc/tracremind.conf
|
|
|
|
NO_STAGE= yes
|
|
post-patch:
|
|
${REINPLACE_CMD} -e "s,%%PREFIX%%,${PREFIX}," \
|
|
-e "s,%%PYTHON%%,${PYTHON_CMD}," ${WRKSRC}/tracremind.py
|
|
|
|
do-install:
|
|
${INSTALL_SCRIPT} ${WRKSRC}/tracremind.py ${PREFIX}/bin
|
|
${INSTALL_DATA} ${WRKSRC}/tracremind.conf ${PREFIX}/etc
|
|
|
|
.include <bsd.port.mk>
|