diff options
author | drochner <drochner@pkgsrc.org> | 2005-05-31 15:43:56 +0000 |
---|---|---|
committer | drochner <drochner@pkgsrc.org> | 2005-05-31 15:43:56 +0000 |
commit | ebe19cd4975858662d961a6d0c93c30a55e51a62 (patch) | |
tree | 4cca834cf725afd8298ef884f01fe2b556aca1f8 /www/galeon/Makefile | |
parent | c443a4ee637560f95d900f76c74dd314e2b10244 (diff) | |
download | pkgsrc-ebe19cd4975858662d961a6d0c93c30a55e51a62.tar.gz |
let this use the renderer from "firefox" or "mozilla-gtk2", depending
on the GECKO_PROVIDER option
update to 1.3.21
changes:
Works with mozilla 1.7 -> 1.7.8, 1.8a3 -> 1.8b2 and trunk
Couple more focus fixes to less common cases
Fix regression since 1.3.19 that prevented helpers from working with
file:/// urls.
Fix toolbar editor to work when the composite extension is enabled
Other bug fixes
Diffstat (limited to 'www/galeon/Makefile')
-rw-r--r-- | www/galeon/Makefile | 17 |
1 files changed, 14 insertions, 3 deletions
diff --git a/www/galeon/Makefile b/www/galeon/Makefile index 3481ebe49c6..2811249c90d 100644 --- a/www/galeon/Makefile +++ b/www/galeon/Makefile @@ -1,7 +1,7 @@ -# $NetBSD: Makefile,v 1.77 2005/05/22 20:08:45 jlam Exp $ +# $NetBSD: Makefile,v 1.78 2005/05/31 15:43:56 drochner Exp $ # -DISTNAME= galeon-1.3.20 +DISTNAME= galeon-1.3.21 CATEGORIES= www MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=galeon/} EXTRACT_SUFX= .tar.bz2 @@ -21,11 +21,16 @@ USE_PKGLOCALEDIR= yes USE_LIBTOOL= yes USE_X11= yes GNU_CONFIGURE= yes -WRKSRC= ${WRKDIR}/${DISTNAME:S/14a/14/} MOZILLA_USE_GTK2= # defined MOZILLA_USE_XFT= YES +.include "../../mk/bsd.prefs.mk" + +.if ${GECKO_PROVIDER} == "firefox" +CONFIGURE_ARGS+= --with-mozilla=firefox +.else BUILDLINK_RPATHDIRS.mozilla-gtk2+= lib/mozilla-gtk2 +.endif GCONF2_SCHEMAS= galeon.schemas @@ -41,7 +46,13 @@ CONF_FILES= ${EGDIR}/sound/events/galeon.soundlist \ .include "../../security/openssl/buildlink3.mk" .include "../../textproc/intltool/buildlink3.mk" .include "../../textproc/scrollkeeper/omf.mk" +.if ${GECKO_PROVIDER} == "firefox" +# firefox didn't have a pkgconfig file before 1.0.4 +BUILDLINK_DEPENDS.firefox+= firefox>=1.0.4 +.include "../../www/firefox/buildlink3.mk" +.else .include "../../www/mozilla-gtk2/buildlink3.mk" +.endif .include "../../x11/gnome-desktop/buildlink3.mk" .include "../../mk/pthread.buildlink3.mk" .include "../../mk/bsd.pkg.mk" |