diff options
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 |