diff options
author | jmmv <jmmv> | 2003-03-21 18:15:28 +0000 |
---|---|---|
committer | jmmv <jmmv> | 2003-03-21 18:15:28 +0000 |
commit | ee8447b6fee859186aa44b9e0f6840462cde52db (patch) | |
tree | dc215b3da7f901650b8f5c1df36e6665547c157f /www/dillo/Makefile | |
parent | 6fe7f4349348727d6a9c8a3eb21b0a8ba35f687a (diff) | |
download | pkgsrc-ee8447b6fee859186aa44b9e0f6840462cde52db.tar.gz |
Update to 0.7.1.2. There are lots of new features, including plugin
support and IPv6; threads are now a must.
Patch provided in PR pkg/20672 by Quentin Garnier.
Diffstat (limited to 'www/dillo/Makefile')
-rw-r--r-- | www/dillo/Makefile | 18 |
1 files changed, 13 insertions, 5 deletions
diff --git a/www/dillo/Makefile b/www/dillo/Makefile index 64bdee90ce1..9154d19a639 100644 --- a/www/dillo/Makefile +++ b/www/dillo/Makefile @@ -1,13 +1,13 @@ -# $NetBSD: Makefile,v 1.11 2003/01/28 22:04:28 jlam Exp $ +# $NetBSD: Makefile,v 1.12 2003/03/21 18:15:28 jmmv Exp $ # -DISTNAME= dillo-0.6.6 -PKGREVISION= 1 +DISTNAME= dillo-0.7.1.2 +WRKSRC= ${WRKDIR}/dillo-0.7.1 CATEGORIES= www -MASTER_SITES= http://dillo.cipsga.org.br/download/ +MASTER_SITES= http://dillo.auriga.wearlab.de/download/ MAINTAINER= Benjamin.Wong@cc.gatech.edu -HOMEPAGE= http://dillo.cipsga.org.br/ +HOMEPAGE= http://dillo.auriga.wearlab.de/ COMMENT= Very small and fast graphical web-browser USE_BUILDLINK2= yes @@ -21,6 +21,13 @@ CONF_FILES= ${EGDIR}/dillorc ${PKG_SYSCONFDIR}/dillorc CFLAGS+= -DPKG_SYSCONFDIR=\"\\\"${PKG_SYSCONFDIR}\\\"\" +.include "../../mk/bsd.prefs.mk" + +BUILD_DEFS+= USE_INET6 +.if defined(USE_INET6) && !empty(USE_INET6:M[Yy][Ee][Ss]) +CONFIGURE_ARGS+= --enable-ipv6 +.endif + post-install: ${INSTALL_DATA_DIR} ${PREFIX}/share/doc/dillo ${INSTALL_DATA} ${WRKSRC}/doc/* ${PREFIX}/share/doc/dillo @@ -29,4 +36,5 @@ post-install: .include "../../graphics/png/buildlink2.mk" .include "../../x11/gtk/buildlink2.mk" +.include "../../mk/pthread.buildlink2.mk" .include "../../mk/bsd.pkg.mk" |