freebsd-ports/devel/cvs-syncmail/Makefile
Andrej Zverev 7ab398f130 Syncmail is a CVS notification tool which can provide a diff for every
change to a CVS repository, mailed to specified email addresses.
This tool is useful for large communities to monitor activity,
and is used for Python and many other active projects.

PR:		ports/115476
Submitted by:	Greg Larkin <glarkin@sourcehosting.net>
2007-08-21 07:45:44 +00:00

49 lines
1.1 KiB
Makefile

# New ports collection makefile for: cvs-syncmail
# Date created: 13 August 2007
# Whom: Greg Larkin <glarkin@sourcehosting.net>
#
# $FreeBSD$
#
PORTNAME= cvs-syncmail
PORTVERSION= 2.1
CATEGORIES= devel python
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
MASTER_SITE_SUBDIR= ${PORTNAME}
DISTNAME= syncmail
EXTRACT_SUFX=
MAINTAINER= glarkin@sourcehosting.net
COMMENT= CVS notification tool
.if defined(WITH_CVSNT)
# Use the CVSNT binary when generating diffs instead of the system CVS
RUN_DEPENDS= ${LOCALBASE}/bin/cvsnt:${PORTSDIR}/devel/cvsnt
.endif
NO_BUILD= yes
NO_WRKSUBDIR= yes
USE_PYTHON= 2.0+
PLIST_FILES= bin/${DISTNAME}
do-extract:
@${MKDIR} ${WRKSRC}
@${CP} ${DISTDIR}/${DISTNAME} ${WRKSRC}
do-patch:
@${REINPLACE_CMD} -e "s| /usr/bin/python|${PYTHON_CMD}|" \
${WRKSRC}/${DISTNAME}
@${REINPLACE_CMD} -e "s|cvs -fn update|/usr/bin/cvs -fn update|" \
${WRKSRC}/${DISTNAME}
.if defined(WITH_CVSNT)
@${REINPLACE_CMD} -e "s|/usr/bin/cvs|${LOCALBASE}/bin/cvsnt|" \
${WRKSRC}/${DISTNAME}
.endif
do-install:
${INSTALL_SCRIPT} ${WRKSRC}/${DISTNAME} ${PREFIX}/bin/${DISTNAME}
.include <bsd.port.mk>