diff options
author | sobomax <sobomax@FreeBSD.org> | 2001-07-05 07:33:46 +0000 |
---|---|---|
committer | sobomax <sobomax@FreeBSD.org> | 2001-07-05 07:33:46 +0000 |
commit | 851fb95a1f4114dc3676b8808141522719ea9622 (patch) | |
tree | bd97e56b7ef46837221659bc9ecd5c25300f456e /www/galeon/files | |
parent | 8227c7b39766512d0113e77eac04b0443e41256c (diff) | |
download | FreeBSD-ports-851fb95a1f4114dc3676b8808141522719ea9622.zip FreeBSD-ports-851fb95a1f4114dc3676b8808141522719ea9622.tar.gz |
Update to 0.11.1.
Diffstat (limited to 'www/galeon/files')
-rw-r--r-- | www/galeon/files/patch-ab | 24 | ||||
-rw-r--r-- | www/galeon/files/patch-configure | 20 | ||||
-rw-r--r-- | www/galeon/files/patch-po::Makefile.in.in | 14 |
3 files changed, 54 insertions, 4 deletions
diff --git a/www/galeon/files/patch-ab b/www/galeon/files/patch-ab index b13e0b2..985baef 100644 --- a/www/galeon/files/patch-ab +++ b/www/galeon/files/patch-ab @@ -1,9 +1,9 @@ $FreeBSD$ ---- src/galeon.in 2001/05/15 11:38:39 1.1 -+++ src/galeon.in 2001/05/15 11:42:43 -@@ -1,19 +1,15 @@ +--- src/galeon.in.orig Tue Jul 3 13:30:53 2001 ++++ src/galeon.in Wed Jul 4 18:39:12 2001 +@@ -1,25 +1,15 @@ #!/bin/sh -dist_bin=`dirname $0` @@ -21,6 +21,12 @@ $FreeBSD$ - MOZILLA_HOME=/opt/mozilla -elif [ -f /usr/lib/mozilla-0.8.1/chrome/embed.jar ]; then - MOZILLA_HOME=/usr/lib/mozilla-0.8.1/ +-elif [ -f /usr/lib/mozilla-0.9.1/chrome/embed.jar ]; then +- MOZILLA_HOME=/usr/lib/mozilla-0.9.1/ +-elif [ -f /usr/lib/mozilla-0.9.2/chrome/embed.jar ]; then +- MOZILLA_HOME=/usr/lib/mozilla-0.9.2/ +-elif [ -f /opt/gnome/lib/mozilla/chrome/embed.jar ]; then +- MOZILLA_HOME=/opt/gnome/lib/mozilla/ +elif [ -f %%LOCALBASE%%/lib/%%MOZILLA%%/libgtkembedmoz.so ]; then + MOZILLA_HOME=%%LOCALBASE%%/lib/%%MOZILLA%% +elif [ -f %%X11BASE%%/lib/%%MOZILLA%%/libgtkembedmoz.so ]; then @@ -30,7 +36,17 @@ $FreeBSD$ else echo "Cannot find mozilla installation directory. Please set MOZILLA_FIVE_HOME to your mozilla directory" exit -@@ -34,6 +30,6 @@ +@@ -31,16 +21,9 @@ + MOZILLA_FIVE_HOME=$MOZILLA_HOME + export MOZILLA_FIVE_HOME + +-# for some reason this lets Galeon start properly on Red Hat 7.1 systems +-if [ -f /etc/redhat-release ]; then +- if [ "`cat /etc/redhat-release`" = "Red Hat Linux release 7.1 (Seawolf)" ]; then +- export LD_ASSUME_KERNEL=2.2.5 +- fi +-fi +- if [ -f ./galeon-bin ]; then exec ./galeon-bin "$@" else diff --git a/www/galeon/files/patch-configure b/www/galeon/files/patch-configure new file mode 100644 index 0000000..7f6c287 --- /dev/null +++ b/www/galeon/files/patch-configure @@ -0,0 +1,20 @@ + +$FreeBSD$ + +--- configure 2001/07/04 17:52:53 1.1 ++++ configure 2001/07/04 17:53:44 +@@ -6043,10 +6043,10 @@ + s%@INSTALL_DATA@%$INSTALL_DATA%g + s%@PACKAGE@%$PACKAGE%g + s%@VERSION@%$VERSION%g +-s%@ACLOCAL@%$ACLOCAL%g +-s%@AUTOCONF@%$AUTOCONF%g +-s%@AUTOMAKE@%$AUTOMAKE%g +-s%@AUTOHEADER@%$AUTOHEADER%g ++s%@ACLOCAL@%/usr/bin/true%g ++s%@AUTOCONF@%/usr/bin/true%g ++s%@AUTOMAKE@%/usr/bin/true%g ++s%@AUTOHEADER@%/usr/bin/true%g + s%@MAKEINFO@%$MAKEINFO%g + s%@SET_MAKE@%$SET_MAKE%g + s%@XML_I18N_MERGE_OAF_RULE@%$XML_I18N_MERGE_OAF_RULE%g diff --git a/www/galeon/files/patch-po::Makefile.in.in b/www/galeon/files/patch-po::Makefile.in.in new file mode 100644 index 0000000..badad97 --- /dev/null +++ b/www/galeon/files/patch-po::Makefile.in.in @@ -0,0 +1,14 @@ + +$FreeBSD$ + +--- po/Makefile.in.in 2001/07/04 17:56:11 1.1 ++++ po/Makefile.in.in 2001/07/04 17:56:34 +@@ -106,7 +106,7 @@ + @catalogs='$(CATALOGS)'; \ + for cat in $$catalogs; do \ + cat=`basename $$cat`; \ +- lang=`echo $$cat | sed 's/\.gmo$$//'`; \ ++ lang=`echo $$cat | sed 's/\.mo$$//'`; \ + dir=$(localedir)/$$lang/LC_MESSAGES; \ + $(mkinstalldirs) $(DESTDIR)$$dir; \ + if test -r $$cat; then \ |