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>
This commit is contained in:
parent
8f002b6c5d
commit
7ab398f130
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=198014
4 changed files with 59 additions and 0 deletions
|
@ -197,6 +197,7 @@
|
|||
SUBDIR += cut
|
||||
SUBDIR += cutils
|
||||
SUBDIR += cvs+ipv6
|
||||
SUBDIR += cvs-syncmail
|
||||
SUBDIR += cvs2cl
|
||||
SUBDIR += cvs2darcs
|
||||
SUBDIR += cvs2html
|
||||
|
|
49
devel/cvs-syncmail/Makefile
Normal file
49
devel/cvs-syncmail/Makefile
Normal file
|
@ -0,0 +1,49 @@
|
|||
# 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>
|
3
devel/cvs-syncmail/distinfo
Normal file
3
devel/cvs-syncmail/distinfo
Normal file
|
@ -0,0 +1,3 @@
|
|||
MD5 (syncmail) = 103292e14c12a7cf2ac5d75e6681546f
|
||||
SHA256 (syncmail) = f86a6cc92420a3dcdfbdea05874974fd2af6c178afac96ad84e3a91844811f3a
|
||||
SIZE (syncmail) = 13734
|
6
devel/cvs-syncmail/pkg-descr
Normal file
6
devel/cvs-syncmail/pkg-descr
Normal file
|
@ -0,0 +1,6 @@
|
|||
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.
|
||||
|
||||
WWW: http://sourceforge.net/projects/cvs-syncmail
|
Loading…
Reference in a new issue