diff options
author | reed <reed> | 2006-05-27 03:22:32 +0000 |
---|---|---|
committer | reed <reed> | 2006-05-27 03:22:32 +0000 |
commit | 1c44818de6dd4a8481cab3ef0da3959a024a2a85 (patch) | |
tree | bab9f820b6a25d969cc53bdc49da9dfd3f5f0909 /www/dillo/Makefile | |
parent | bfbaf6919c674e77ef042b8eee39e9d32c0d0600 (diff) | |
download | pkgsrc-1c44818de6dd4a8481cab3ef0da3959a024a2a85.tar.gz |
Move options to separate options.mk file.
And add new option: dillo-ssl
The openssl buildlink3.mk is only used when that is enabled.
The package didn't use openssl and the https was disabled in the
code. The new option which is off by default can be used to
enable ssl. Note that is experimental for dillo and does not
appear to work very good.
No change to default package except on systems where it had an
un-needed dependency on openssl package -- so bump PKGREVISION
for that.
Diffstat (limited to 'www/dillo/Makefile')
-rw-r--r-- | www/dillo/Makefile | 13 |
1 files changed, 3 insertions, 10 deletions
diff --git a/www/dillo/Makefile b/www/dillo/Makefile index b1bdeb5b25d..fee3310c06c 100644 --- a/www/dillo/Makefile +++ b/www/dillo/Makefile @@ -1,6 +1,7 @@ -# $NetBSD: Makefile,v 1.39 2006/05/10 21:03:41 adam Exp $ +# $NetBSD: Makefile,v 1.40 2006/05/27 03:22:32 reed Exp $ DISTNAME= dillo-0.8.6 +PKGREVISION= 1 CATEGORIES= www MASTER_SITES= http://www.dillo.org/download/ EXTRACT_SUFX= .tar.bz2 @@ -18,14 +19,7 @@ EGDIR= ${PREFIX}/share/examples/dillo CONF_FILES= ${EGDIR}/dillorc.default ${PKG_SYSCONFDIR}/dillorc CONF_FILES+= ${EGDIR}/dpidrc ${PKG_SYSCONFDIR}/dpidrc -PKG_OPTIONS_VAR= PKG_OPTIONS.dillo -PKG_SUPPORTED_OPTIONS= inet6 - -.include "../../mk/bsd.options.mk" - -.if !empty(PKG_OPTIONS:Minet6) -CONFIGURE_ARGS+= --enable-ipv6 -.endif +.include "options.mk" post-install: ${INSTALL_DATA_DIR} ${PREFIX}/share/doc/dillo @@ -36,7 +30,6 @@ post-install: .include "../../graphics/jpeg/buildlink3.mk" .include "../../graphics/png/buildlink3.mk" -.include "../../security/openssl/buildlink3.mk" .include "../../x11/gtk/buildlink3.mk" .include "../../mk/pthread.buildlink3.mk" |