diff options
author | fjoe <fjoe@FreeBSD.org> | 2003-02-18 11:54:10 +0000 |
---|---|---|
committer | fjoe <fjoe@FreeBSD.org> | 2003-02-18 11:54:10 +0000 |
commit | 986a363cb500fe525adbf4565cf8c035e97f5cda (patch) | |
tree | bda9fd6c52089f77ba4192a131189807ba5807cf /net/tinyfugue/Makefile | |
parent | 68daabc2b7907cdbeedf0f2ee7200bc72695c754 (diff) | |
download | FreeBSD-ports-986a363cb500fe525adbf4565cf8c035e97f5cda.zip FreeBSD-ports-986a363cb500fe525adbf4565cf8c035e97f5cda.tar.gz |
- De-pkg-comment
- make portlint happier
- WITH_MCCP -> WITHOUT_MCCP
Diffstat (limited to 'net/tinyfugue/Makefile')
-rw-r--r-- | net/tinyfugue/Makefile | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/net/tinyfugue/Makefile b/net/tinyfugue/Makefile index 488cf00..f8bc3f4 100644 --- a/net/tinyfugue/Makefile +++ b/net/tinyfugue/Makefile @@ -10,9 +10,13 @@ PORTVERSION= 4.0s1 CATEGORIES= net games MASTER_SITES= http://ftp.tcp.com/pub/mud/Clients/tinyfugue/ \ ftp://ftp.minet.uni-jena.de/pub/tf/ +.if !defined(WITHOUT_MCCP) +PKGNAMESUFFIX= -mccp +.endif DISTNAME= tf-40s1 MAINTAINER= fjoe@FreeBSD.org +COMMENT= A popular programmable MUD client, with macro support and more PLIST_SUB= DISTNAME=${DISTNAME} @@ -23,16 +27,15 @@ MAN1= tf.1 .include <bsd.port.pre.mk> -.if defined(WITH_MCCP) +.if !defined(WITHOUT_MCCP) EXTRA_PATCHES= ${FILESDIR}/mccp-patch -PKGNAMESUFFIX= -mccp post-extract: @${CP} ${FILESDIR}/mccp.[ch] ${WRKSRC}/src .else pre-extract: @${ECHO_MSG} - @${ECHO_MSG} "You can enable MCCP v1/v2 support by defining WITH_MCCP" + @${ECHO_MSG} "You can disable MCCP v1/v2 support by defining WITHOUT_MCCP" @${ECHO_MSG} .endif |