pkgsrc/chat/scrollz/options.mk
wiz 2897a57382 scrollz: efence and inet6 options conflict
According to PR 52883. Put them in one option group. Disable efence.

Bump PKGREVISION.
2018-01-13 08:53:58 +00:00

67 lines
1.6 KiB
Makefile

# $NetBSD: options.mk,v 1.3 2018/01/13 08:53:58 wiz Exp $
PKG_OPTIONS_VAR= PKG_OPTIONS.scrollz
PKG_SUPPORTED_OPTIONS= regexp utf8
PKG_SUGGESTED_OPTIONS+= inet6
PKG_OPTIONS_OPTIONAL_GROUPS= conflict socks ssl
PKG_OPTIONS_GROUP.socks= socks4 dante
PKG_OPTIONS_GROUP.ssl= gnutls openssl
# PR 52883: these two options conflict
PKG_OPTIONS_GROUP.conflict= efence inet6
.include "../../mk/bsd.options.mk"
.if !empty(PKG_OPTIONS:Mefence)
.include "../../devel/electric-fence/buildlink3.mk"
CONFIGURE_ARGS+= --with-efence
.else
CONFIGURE_ARGS+= --disable-efence
.endif
.if !empty(PKG_OPTIONS:Mgnutls)
.include "../../security/gnutls/buildlink3.mk"
CONFIGURE_ARGS+= --enable-fish --with-ssl
.else
CONFIGURE_ARGS+= --disable-fish --without-ssl
.endif
.if !empty(PKG_OPTIONS:Minet6)
CONFIGURE_ARGS+= --enable-ipv6
.else
CONFIGURE_ARGS+= --disable-ipv6
.endif
.if !empty(PKG_OPTIONS:Mopenssl)
.include "../../security/openssl/buildlink3.mk"
CONFIGURE_ARGS+= --disable-fish --with-openssl
.else
CONFIGURE_ARGS+= --without-openssl
.endif
.if !empty(PKG_OPTIONS:Mregexp)
CONFIGURE_ARGS+= --enable-regexp
.else
CONFIGURE_ARGS+= --disable-regexp
.endif
.if !empty(PKG_OPTIONS:Msocks4)
.include "../../net/socks4/buildlink3.mk"
CONFIGURE_ARGS+= --with-socks4=${BUILDLINK_PREFIX.socks4}
.else
CONFIGURE_ARGS+= --disable-socks4
.endif
.if !empty(PKG_OPTIONS:Mdante)
.include "../../net/dante/buildlink3.mk"
CONFIGURE_ARGS+= --with-socks4=${BUILDLINK_PREFIX.dante}
.else
CONFIGURE_ARGS+= --disable-socks4
.endif
.if !empty(PKG_OPTIONS:Mutf8)
.include "../../converters/libiconv/buildlink3.mk"
CONFIGURE_ARGS+= --enable-utf8
LIBS+= -liconv
.else
CONFIGURE_ARGS+= --disable-utf8
.endif