diff options
author | adamw <adamw@FreeBSD.org> | 2004-02-18 11:50:38 +0800 |
---|---|---|
committer | adamw <adamw@FreeBSD.org> | 2004-02-18 11:50:38 +0800 |
commit | d54a3b0f1a738ab689824d255aa5acf2e0fe3e42 (patch) | |
tree | e54f44a172651f143d14bb72b8c2b5ba71f59cdb /www/galeon | |
parent | 85c8f3f941efa685ff55da9ec788c7db82afee6f (diff) | |
download | freebsd-ports-gnome-d54a3b0f1a738ab689824d255aa5acf2e0fe3e42.tar.gz freebsd-ports-gnome-d54a3b0f1a738ab689824d255aa5acf2e0fe3e42.tar.zst freebsd-ports-gnome-d54a3b0f1a738ab689824d255aa5acf2e0fe3e42.zip |
GTK2 mozilla is now the default, and GTK1 support will be built only if explicitly
requested.
This means that mozilla-gtk2 and mozilla-devel-gtk2 are now mozilla and
mozilla-devel, respectively; and the old mozilla and mozilla-devel are now
mozilla-gtk1 and mozilla-devel-gtk1.
This is done for a whole plethora of reasons, and should please everybody
except galeon1 fanatics and uhm... anybody else who it doesn't please.
If you have WITH_MOZILLA set in your /etc/make.conf, you'll need to update
the value accordingly. GTK2 ports will automatically install GTK2 mozilla,
and GTK1 ports will automatically install GTK1 ports, so WITH_MOZILLA need
be defined only if you want the development version... which are dormant
right now anyway.
For now, all ports that honoured WITH_MOZILLA=mozilla-{,-devel}-gtk2 will
still honour those values as well as WITH_MOZILLA=mozilla{,-devel}, but
future ports reserve the right to ignore the *-gtk2 values.
Diffstat (limited to 'www/galeon')
-rw-r--r-- | www/galeon/Makefile | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/www/galeon/Makefile b/www/galeon/Makefile index b216fa9874d0..57bb356e8e72 100644 --- a/www/galeon/Makefile +++ b/www/galeon/Makefile @@ -22,15 +22,15 @@ RUN_DEPENDS= ${X11BASE}/lib/${MOZILLA}/libgtkembedmoz.so:${PORTSDIR}/www/${MOZIL MOZ_CONFIGURE_ARGS=--with-mozilla-snapshot="trunk" .if !defined(WITH_MOZILLA) -MOZILLA= mozilla +MOZILLA= mozilla-gtk1 HEADERS_SUFX= .else -.if ${WITH_MOZILLA}=="mozilla-devel" +.if ${WITH_MOZILLA}=="mozilla-devel-gtk1" MOZILLA= ${WITH_MOZILLA} -HEADERS_SUFX= -devel +HEADERS_SUFX= -devel-gtk1 MOZ_CONFIGURE_ARGS= --with-mozilla-snapshot="1.6b" .else -MOZILLA= mozilla +MOZILLA= mozilla-gtk1 HEADERS_SUFX= .endif .endif @@ -62,10 +62,10 @@ CONFIGURE_ARGS+= --disable-werror pre-everything:: @${ECHO_MSG} "" - @${ECHO_MSG} " By default the port uses www/mozilla for html rendering, but you can change" - @${ECHO_MSG} " this by defining WITH_MOZILLA to one of the following values:" + @${ECHO_MSG} " By default the port uses www/mozilla-gtk1 for html rendering, but you can" + @${ECHO_MSG} " change this by defining WITH_MOZILLA to one of the following values:" @${ECHO_MSG} - @${ECHO_MSG} " mozilla-devel " + @${ECHO_MSG} " mozilla-devel-gtk1 " @${ECHO_MSG} "" post-patch: |