diff options
author | Martin Wilke <miwi@FreeBSD.org> | 2007-03-11 20:35:27 +0000 |
---|---|---|
committer | Martin Wilke <miwi@FreeBSD.org> | 2007-03-11 20:35:27 +0000 |
commit | 4c0ac4f1fd8dbade31ee601dd135b5688312d684 (patch) | |
tree | dfeff4928bc7349a565fd2209598c31ea7dba6b8 /graphics/aolserver-nsgd | |
parent | b1fec2657fbcb91da03db57d199ac54fe9e25b36 (diff) | |
download | ports-4c0ac4f1fd8dbade31ee601dd135b5688312d684.tar.gz ports-4c0ac4f1fd8dbade31ee601dd135b5688312d684.zip |
- Respect tcl-threads
- Fix build
- Bump PORTREVISION
Submitted by: pointyhat
Approved by: maintainer
Notes
Notes:
svn path=/head/; revision=187159
Diffstat (limited to 'graphics/aolserver-nsgd')
-rw-r--r-- | graphics/aolserver-nsgd/Makefile | 16 |
1 files changed, 13 insertions, 3 deletions
diff --git a/graphics/aolserver-nsgd/Makefile b/graphics/aolserver-nsgd/Makefile index c8f4cce8e71a..2334f5ceaf46 100644 --- a/graphics/aolserver-nsgd/Makefile +++ b/graphics/aolserver-nsgd/Makefile @@ -5,11 +5,14 @@ # $FreeBSD$ # -PORTNAME= aolserver-nsgd +PORTNAME= nsgd PORTVERSION= 2.0 +PORTREVISION= 1 CATEGORIES= graphics www MASTER_SITES= http://www.aolserver.cz/download/ -DISTFILES= nsgd2.tgz +PKGNAMEPREFIX= aolserver- +DISTNAME= ${PORTNAME}2 +EXTRACT_SUFX= .tgz DIST_SUBDIR= aolserver MAINTAINER= martin@matuska.org @@ -24,7 +27,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> |