diff options
author | miwi <miwi@FreeBSD.org> | 2007-03-11 20:33:09 +0000 |
---|---|---|
committer | miwi <miwi@FreeBSD.org> | 2007-03-11 20:33:09 +0000 |
commit | 84fe5e2d1b9a5370892e11c0abc127b3c8b407ac (patch) | |
tree | 816ae41c19ba30d105d8de3cca1c6bc5f0b95305 /security | |
parent | 423e7c86bc4dbacabd5b6c982079b00ddb87d816 (diff) | |
download | FreeBSD-ports-84fe5e2d1b9a5370892e11c0abc127b3c8b407ac.zip FreeBSD-ports-84fe5e2d1b9a5370892e11c0abc127b3c8b407ac.tar.gz |
- Respect tcl-threads
- Fix build
- Bump PORTREVISIOn
Submitted by: pointyhat
Approved by: maintainer
Diffstat (limited to 'security')
-rw-r--r-- | security/aolserver-nsmcrypt/Makefile | 15 |
1 files changed, 12 insertions, 3 deletions
diff --git a/security/aolserver-nsmcrypt/Makefile b/security/aolserver-nsmcrypt/Makefile index c0399a4..e0387b8 100644 --- a/security/aolserver-nsmcrypt/Makefile +++ b/security/aolserver-nsmcrypt/Makefile @@ -5,11 +5,13 @@ # $FreeBSD$ # -PORTNAME= aolserver-nsmcrypt +PORTNAME= nsmcrypt PORTVERSION= 1.0 +PORTREVISION= 1 CATEGORIES= security www MASTER_SITES= http://www.aolserver.cz/download/ -DISTFILES= nsmcrypt-${PORTVERSION}.tgz +PKGNAMEPREFIX= aolserver- +EXTRACT_SUFX= .tgz DIST_SUBDIR= aolserver MAINTAINER= martin@matuska.org @@ -24,7 +26,14 @@ RUN_DEPENDS+= ${BUILD_DEPENDS} PLIST_SUB+= AOLSERVERBASE=${AOLSERVERBASE:S/${PREFIX}\///} USE_GMAKE= yes -USE_TCL_BUILD= yes + +USE_TCL_VER?= 84 + +.if ${USE_TCL_VER} != 84 && ${USE_TCL_VER} != 85 +IGNORE= supported values for USE_TCL_VER are only 84 and 85 +.endif + +USE_TCL_BUILD= ${USE_TCL_VER}-thread .include <bsd.port.pre.mk> |