diff options
author | xtraeme <xtraeme@pkgsrc.org> | 2004-12-28 04:37:54 +0000 |
---|---|---|
committer | xtraeme <xtraeme@pkgsrc.org> | 2004-12-28 04:37:54 +0000 |
commit | 0cf538c137546e13a553292a677c7d245f401e6c (patch) | |
tree | afc93fd085cdc8c86eeb27f3cd8cf0fae70b2299 | |
parent | beff5dbb84e9f04489589db90fadab2a1937bf3e (diff) | |
download | pkgsrc-0cf538c137546e13a553292a677c7d245f401e6c.tar.gz |
Add an option to disable the crypto extensions (it's enabled by default
as before) so users that don't need this, can disable it via
PKG_OPTIONS.libxslt=-crypto.
-rw-r--r-- | textproc/libxslt/Makefile | 15 |
1 files changed, 13 insertions, 2 deletions
diff --git a/textproc/libxslt/Makefile b/textproc/libxslt/Makefile index bd4676e4c6e..c56e4bb3789 100644 --- a/textproc/libxslt/Makefile +++ b/textproc/libxslt/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.51 2004/10/31 11:01:23 recht Exp $ +# $NetBSD: Makefile,v 1.52 2004/12/28 04:37:54 xtraeme Exp $ DISTNAME= libxslt-1.1.12 PKGNAME= ${DISTNAME} @@ -28,7 +28,18 @@ TEST_TARGET= check BUILDLINK_DEPENDS.libxml2+= libxml2>=2.6.8 +PKG_OPTIONS_VAR= PKG_OPTIONS.libxslt +PKG_SUPPORTED_OPTIONS= crypto +PKG_DEFAULT_OPTIONS+= crypto +.include "../../mk/bsd.options.mk" + +.if !empty(PKG_OPTIONS:Mcrypto) +. include "../../security/libgcrypt/buildlink3.mk" +CONFIGURE_ARGS+= --with-crypto +.else +CONFIGURE_ARGS+= --without-crypto +.endif + .include "../../textproc/libxml2/buildlink3.mk" -.include "../../security/libgcrypt/buildlink3.mk" .include "../../lang/perl5/buildlink3.mk" .include "../../mk/bsd.pkg.mk" |