diff options
author | Philip M. Gollucci <pgollucci@FreeBSD.org> | 2009-07-09 02:37:20 +0000 |
---|---|---|
committer | Philip M. Gollucci <pgollucci@FreeBSD.org> | 2009-07-09 02:37:20 +0000 |
commit | 9b98c3cecbb7cea3c63fae8f7cc089f989a9e51e (patch) | |
tree | 0cd5a4e16049d5a8a04c55bc66d534e8d517b57f | |
parent | - Update to 3.2.6.1 (diff) |
- configure cvsadmin to use mkdtemp(3) instead of insecure work-around
PR: ports/136287
Submitted by: Klaus T Aehlig <aehlig@linta.de> (maintainer)
Notes
Notes:
svn path=/head/; revision=237459
-rw-r--r-- | devel/cvsadmin/Makefile | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/devel/cvsadmin/Makefile b/devel/cvsadmin/Makefile index 28465927cd14..c1c6a3603bae 100644 --- a/devel/cvsadmin/Makefile +++ b/devel/cvsadmin/Makefile @@ -8,10 +8,9 @@ PORTNAME= cvsadmin PORTVERSION= 1.0.3 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= devel -MASTER_SITES= ${MASTER_SITE_LOCAL} -MASTER_SITE_SUBDIR= gabor +MASTER_SITES= LOCAL/gabor MAINTAINER= aehlig@linta.de COMMENT= A simple program to administrate users of a CVS repository @@ -21,6 +20,9 @@ GNU_CONFIGURE= yes MAN1= cvsadmin.1 PLIST_FILES= bin/cvsadmin +post-configure: + ${ECHO_CMD} "#define HAVE_MKDTEMP 1" >> ${WRKSRC}/config.h + post-install: ${INSTALL_MAN} ${WRKSRC}/man/cvsadmin.1 ${MANPREFIX}/man/man1 |