diff options
author | wiz <wiz@pkgsrc.org> | 2005-06-02 22:21:18 +0000 |
---|---|---|
committer | wiz <wiz@pkgsrc.org> | 2005-06-02 22:21:18 +0000 |
commit | 08ad048d4a4bd2b21f596a83b973d2ec01b25c9e (patch) | |
tree | 6cead2ee4b0ca059779294f124d49dffe62a504b /chat | |
parent | 9ab80c481f0256cfae7e3d91e714b9d5c78df99f (diff) | |
download | pkgsrc-08ad048d4a4bd2b21f596a83b973d2ec01b25c9e.tar.gz |
Convert to options framework.
Diffstat (limited to 'chat')
-rw-r--r-- | chat/ircII/Makefile | 19 | ||||
-rw-r--r-- | chat/ircII/options.mk | 18 |
2 files changed, 22 insertions, 15 deletions
diff --git a/chat/ircII/Makefile b/chat/ircII/Makefile index 36ce538ac54..59f82f8806f 100644 --- a/chat/ircII/Makefile +++ b/chat/ircII/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.37 2005/04/11 21:45:04 tv Exp $ +# $NetBSD: Makefile,v 1.38 2005/06/02 22:21:18 wiz Exp $ DISTNAME= ircii-${VERS} PKGNAME= ircII-${VERS} @@ -28,24 +28,13 @@ GNU_CONFIGURE= yes CONFIGURE_ARGS+= --with-default-server=${DEFAULT_IRC_SERVER} .endif -BUILD_DEFS+= USE_INET6 - # Note: this pkg auto-detects IPv6 without regarding USE_INET6. -# (Leave the above line in to still get it into the README-IPv6.html!) +# (Leave the line in to still get it into the README-IPv6.html!) +BUILD_DEFS+= USE_INET6 PLIST_SRC= ${WRKDIR}/PLIST.tmp -BUILD_DEFS+= USE_SOCKS -# Include SOCKS firewall support -.if defined(USE_SOCKS) && (${USE_SOCKS} == 4 || ${USE_SOCKS} == 5) -. if ${USE_SOCKS} == 4 -. include "../../net/socks4/buildlink3.mk" -CONFIGURE_ARGS+= --with-socks4=${BUILDLINK_PREFIX.socks4} -. elif ${USE_SOCKS} == 5 -. include "../../net/socks5/buildlink3.mk" -CONFIGURE_ARGS+= --with-socks5=${BUILDLINK_PREFIX.socks5} -. endif -.endif +.include "options.mk" # Allow customizations from ${MAKECONF} CONFIGURE_ARGS+= ${IRCII_CONFIGURE_ARGS} diff --git a/chat/ircII/options.mk b/chat/ircII/options.mk new file mode 100644 index 00000000000..9500bbde06a --- /dev/null +++ b/chat/ircII/options.mk @@ -0,0 +1,18 @@ +# $NetBSD: options.mk,v 1.1 2005/06/02 22:21:18 wiz Exp $ + +PKG_OPTIONS_VAR= PKG_OPTIONS.ircII +PKG_SUPPORTED_OPTIONS= # only socks group +PKG_OPTIONS_OPTIONAL_GROUPS= socks +PKG_OPTIONS_GROUP.socks= socks4 socks5 + +.include "../../mk/bsd.options.mk" + +# Include SOCKS firewall support +.if !empty(PKG_OPTIONS:Msocks4) +.include "../../net/socks4/buildlink3.mk" +CONFIGURE_ARGS+= --with-socks4=${BUILDLINK_PREFIX.socks4} +.endif +.if !empty(PKG_OPTIONS:Msocks5) +.include "../../net/socks5/buildlink3.mk" +CONFIGURE_ARGS+= --with-socks5=${BUILDLINK_PREFIX.socks5} +.endif |