diff options
author | wiz <wiz@pkgsrc.org> | 2005-06-02 18:11:34 +0000 |
---|---|---|
committer | wiz <wiz@pkgsrc.org> | 2005-06-02 18:11:34 +0000 |
commit | e778a69716b87d1b13475532561ef309c272fa77 (patch) | |
tree | 9615c05f1ce5babf7ecb88f3add81d065087e6ed /www/dillo | |
parent | 72a76e28e935b10ca9fe62f31b6671a5055a423e (diff) | |
download | pkgsrc-e778a69716b87d1b13475532561ef309c272fa77.tar.gz |
Convert to options framework.
Diffstat (limited to 'www/dillo')
-rw-r--r-- | www/dillo/Makefile | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/www/dillo/Makefile b/www/dillo/Makefile index c6a3727bb51..d400a3a58fc 100644 --- a/www/dillo/Makefile +++ b/www/dillo/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.27 2005/06/01 18:03:26 jlam Exp $ +# $NetBSD: Makefile,v 1.28 2005/06/02 18:11:34 wiz Exp $ DISTNAME= dillo-0.8.4 CATEGORIES= www @@ -18,10 +18,12 @@ EGDIR= ${PREFIX}/share/examples/dillo CONF_FILES= ${EGDIR}/dillorc.default ${PKG_SYSCONFDIR}/dillorc CONF_FILES+= ${EGDIR}/dpidrc ${PKG_SYSCONFDIR}/dpidrc -.include "../../mk/bsd.prefs.mk" +PKG_OPTIONS_VAR= PKG_OPTIONS.dillo +PKG_SUPPORTED_OPTIONS= inet6 -.if defined(USE_INET6) && !empty(USE_INET6:M[Yy][Ee][Ss]) -BUILD_DEFS+= USE_INET6 +.include "../../mk/bsd.options.mk" + +.if !empty(PKG_OPTIONS:Minet6) CONFIGURE_ARGS+= --enable-ipv6 .endif |