summaryrefslogtreecommitdiffstats
path: root/www
diff options
context:
space:
mode:
authorsobomax <sobomax@FreeBSD.org>2000-08-01 09:05:58 +0000
committersobomax <sobomax@FreeBSD.org>2000-08-01 09:05:58 +0000
commited21297b137a1cf58e38fe0b9a6b254234f3dcf8 (patch)
tree7901cfb803f3af4d3589f5817700fac24e388457 /www
parent0274f5cd70739902c18618119220fdcef3e7fab4 (diff)
downloadFreeBSD-ports-ed21297b137a1cf58e38fe0b9a6b254234f3dcf8.zip
FreeBSD-ports-ed21297b137a1cf58e38fe0b9a6b254234f3dcf8.tar.gz
Add galeon - a GNOME Web browser based on gecko (the mozilla rendering engine).
It allows to use state-of-the-art HTML rendering engine without much overhead imposed my Mozilla itself. Obtained from: http://www.gnome.org/
Diffstat (limited to 'www')
-rw-r--r--www/Makefile1
-rw-r--r--www/galeon/Makefile49
-rw-r--r--www/galeon/distinfo1
-rw-r--r--www/galeon/files/patch-ab23
-rw-r--r--www/galeon/pkg-comment1
-rw-r--r--www/galeon/pkg-descr4
-rw-r--r--www/galeon/pkg-plist19
-rw-r--r--www/galeon2/Makefile49
-rw-r--r--www/galeon2/distinfo1
-rw-r--r--www/galeon2/files/patch-ab23
-rw-r--r--www/galeon2/pkg-comment1
-rw-r--r--www/galeon2/pkg-descr4
-rw-r--r--www/galeon2/pkg-plist19
13 files changed, 195 insertions, 0 deletions
diff --git a/www/Makefile b/www/Makefile
index ecd0c26..9444878 100644
--- a/www/Makefile
+++ b/www/Makefile
@@ -48,6 +48,7 @@
SUBDIR += flashplugin
SUBDIR += fxhtml
SUBDIR += g-gcl
+ SUBDIR += galeon
SUBDIR += glibwww2
SUBDIR += gn
SUBDIR += gnuinfo
diff --git a/www/galeon/Makefile b/www/galeon/Makefile
new file mode 100644
index 0000000..8288f7f
--- /dev/null
+++ b/www/galeon/Makefile
@@ -0,0 +1,49 @@
+# Ports collection Makefile for: galeon
+# Date created: 1 August 2000
+# Whom: Maxim Sobolev <sobomax@FreeBSD.org>
+#
+# $FreeBSD$
+#
+
+PORTNAME= galeon
+PORTVERSION= 0.7.1
+CATEGORIES= www gnome
+MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
+MASTER_SITE_SUBDIR= ${PORTNAME}
+
+MAINTAINER= sobomax@FreeBSD.org
+
+BUILD_DEPENDS= /nonexistent:${PORTSDIR}/www/mozilla:build
+LIB_DEPENDS= gnome.4:${PORTSDIR}/x11/gnomelibs \
+ glade.4:${PORTSDIR}/devel/libglade
+RUN_DEPENDS= panel:${PORTSDIR}/x11/gnomecore \
+ mozilla:${PORTSDIR}/www/mozilla
+
+USE_X_PREFIX= yes
+GNU_CONFIGURE= yes
+
+GLIB_CONFIG?= ${LOCALBASE}/bin/glib12-config
+GTK_CONFIG?= ${X11BASE}/bin/gtk12-config
+CFLAGS+= -D_REENTRANT -D_THREAD_SAFE
+
+CONFIGURE_ARGS= --localstatedir=${PREFIX}/share/gnome \
+ --datadir=${PREFIX}/share/gnome \
+ --with-mozilla-headers=${WRKDIRPREFIX}${.CURDIR}/../../www/mozilla/work/mozilla/dist/include \
+ --with-mozilla-libs=${WRKDIRPREFIX}${.CURDIR}/../../www/mozilla/work/mozilla/dist/lib
+CONFIGURE_ENV= GLIB_CONFIG="${GLIB_CONFIG}" \
+ GTK_CONFIG="${GTK_CONFIG}" \
+ CPPFLAGS="-I${LOCALBASE}/include" \
+ LDFLAGS="-L${LOCALBASE}/lib"
+
+post-patch:
+ @${PERL} -pi -e 's|-lpthread|-pthread|g ; \
+ s|DATADIRNAME=lib|DATADIRNAME=share|g' ${WRKSRC}/configure
+ @find ${WRKSRC} -name "Makefile.in" | xargs ${PERL} -pi -e \
+ 's|\$\(datadir\)/gnome/|\$\(datadir\)/|g ; \
+ s|\$\(datadir\)/locale|\$\(prefix\)/share/locale|g ; \
+ s|-lpthread|-pthread|g'
+ @${PERL} -pi -e 's|%%PREFIX%%|${PREFIX}|g ; \
+ s|%%LOCALBASE%%|${LOCALBASE}|g ; \
+ s|%%X11BASE%%|${X11BASE}|g' ${WRKSRC}/src/galeon
+
+.include <bsd.port.mk>
diff --git a/www/galeon/distinfo b/www/galeon/distinfo
new file mode 100644
index 0000000..c322cb1
--- /dev/null
+++ b/www/galeon/distinfo
@@ -0,0 +1 @@
+MD5 (galeon-0.7.1.tar.gz) = d21f940a1fcf385d3dc2a512a7435ed7
diff --git a/www/galeon/files/patch-ab b/www/galeon/files/patch-ab
new file mode 100644
index 0000000..157f691
--- /dev/null
+++ b/www/galeon/files/patch-ab
@@ -0,0 +1,23 @@
+--- src/galeon.orig Tue Aug 1 11:22:03 2000
++++ src/galeon Tue Aug 1 11:22:14 2000
+@@ -1,14 +1,14 @@
+-#!/bin/bash
++#!/bin/sh
+
+-dist_bin=`dirname $0`
++dist_bin=%%PREFIX%%/bin
+
+ if test -n "$MOZILLA_FIVE_HOME"; then
+ export LD_LIBRARY_PATH=$MOZILLA_FIVE_HOME:$LD_LIBRARY_PATH
+ exec $dist_bin/galeon-bin $@
+-elif [ -f /usr/local/mozilla/libgtkembedmoz.so ]; then
+- MOZILLA_HOME=/usr/local/mozilla
+-elif [ -f /usr/lib/mozilla/libgtkembedmoz.so ]; then
+- MOZILLA_HOME=/usr/lib/mozilla
++elif [ -f %%LOCALBASE%%/lib/mozilla/libgtkembedmoz.so ]; then
++ MOZILLA_HOME=%%LOCALBASE%%/lib/mozilla
++elif [ -f %%X11BASE%%/lib/mozilla/libgtkembedmoz.so ]; then
++ MOZILLA_HOME=%%X11BASE%%/lib/mozilla
+ else
+ echo "Cannot find mozilla installation directory. Please set MOZILLA_FIVE_HOME to your mozilla directory"
+ exit
diff --git a/www/galeon/pkg-comment b/www/galeon/pkg-comment
new file mode 100644
index 0000000..df47615
--- /dev/null
+++ b/www/galeon/pkg-comment
@@ -0,0 +1 @@
+A GNOME Web browser based on gecko (the Mozilla rendering engine)
diff --git a/www/galeon/pkg-descr b/www/galeon/pkg-descr
new file mode 100644
index 0000000..a3006b9
--- /dev/null
+++ b/www/galeon/pkg-descr
@@ -0,0 +1,4 @@
+Galeon is a GNOME Web browser based on gecko (the mozilla rendering engine).
+It's fast, it has a light interface, and it is fully standards-compliant.
+
+WWW: http://galeon.sourceforge.net/
diff --git a/www/galeon/pkg-plist b/www/galeon/pkg-plist
new file mode 100644
index 0000000..a180f4e
--- /dev/null
+++ b/www/galeon/pkg-plist
@@ -0,0 +1,19 @@
+bin/galeon
+bin/galeon-bin
+share/gnome/apps/Internet/galeon.desktop
+share/gnome/galeon/bookmarks.xml
+share/gnome/galeon/galeon.glade
+share/gnome/galeon/logo.png
+share/gnome/galeon/preferences.xml
+share/gnome/pixmaps/galeon.png
+share/gnome/pixmaps/galeon/logo.jpg
+share/locale/da/LC_MESSAGES/galeon.mo
+share/locale/es/LC_MESSAGES/galeon.mo
+share/locale/et/LC_MESSAGES/galeon.mo
+share/locale/fr/LC_MESSAGES/galeon.mo
+share/locale/it/LC_MESSAGES/galeon.mo
+share/locale/ko/LC_MESSAGES/galeon.mo
+share/locale/ru/LC_MESSAGES/galeon.mo
+share/locale/sv/LC_MESSAGES/galeon.mo
+@dirrm share/gnome/pixmaps/galeon
+@dirrm share/gnome/galeon
diff --git a/www/galeon2/Makefile b/www/galeon2/Makefile
new file mode 100644
index 0000000..8288f7f
--- /dev/null
+++ b/www/galeon2/Makefile
@@ -0,0 +1,49 @@
+# Ports collection Makefile for: galeon
+# Date created: 1 August 2000
+# Whom: Maxim Sobolev <sobomax@FreeBSD.org>
+#
+# $FreeBSD$
+#
+
+PORTNAME= galeon
+PORTVERSION= 0.7.1
+CATEGORIES= www gnome
+MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
+MASTER_SITE_SUBDIR= ${PORTNAME}
+
+MAINTAINER= sobomax@FreeBSD.org
+
+BUILD_DEPENDS= /nonexistent:${PORTSDIR}/www/mozilla:build
+LIB_DEPENDS= gnome.4:${PORTSDIR}/x11/gnomelibs \
+ glade.4:${PORTSDIR}/devel/libglade
+RUN_DEPENDS= panel:${PORTSDIR}/x11/gnomecore \
+ mozilla:${PORTSDIR}/www/mozilla
+
+USE_X_PREFIX= yes
+GNU_CONFIGURE= yes
+
+GLIB_CONFIG?= ${LOCALBASE}/bin/glib12-config
+GTK_CONFIG?= ${X11BASE}/bin/gtk12-config
+CFLAGS+= -D_REENTRANT -D_THREAD_SAFE
+
+CONFIGURE_ARGS= --localstatedir=${PREFIX}/share/gnome \
+ --datadir=${PREFIX}/share/gnome \
+ --with-mozilla-headers=${WRKDIRPREFIX}${.CURDIR}/../../www/mozilla/work/mozilla/dist/include \
+ --with-mozilla-libs=${WRKDIRPREFIX}${.CURDIR}/../../www/mozilla/work/mozilla/dist/lib
+CONFIGURE_ENV= GLIB_CONFIG="${GLIB_CONFIG}" \
+ GTK_CONFIG="${GTK_CONFIG}" \
+ CPPFLAGS="-I${LOCALBASE}/include" \
+ LDFLAGS="-L${LOCALBASE}/lib"
+
+post-patch:
+ @${PERL} -pi -e 's|-lpthread|-pthread|g ; \
+ s|DATADIRNAME=lib|DATADIRNAME=share|g' ${WRKSRC}/configure
+ @find ${WRKSRC} -name "Makefile.in" | xargs ${PERL} -pi -e \
+ 's|\$\(datadir\)/gnome/|\$\(datadir\)/|g ; \
+ s|\$\(datadir\)/locale|\$\(prefix\)/share/locale|g ; \
+ s|-lpthread|-pthread|g'
+ @${PERL} -pi -e 's|%%PREFIX%%|${PREFIX}|g ; \
+ s|%%LOCALBASE%%|${LOCALBASE}|g ; \
+ s|%%X11BASE%%|${X11BASE}|g' ${WRKSRC}/src/galeon
+
+.include <bsd.port.mk>
diff --git a/www/galeon2/distinfo b/www/galeon2/distinfo
new file mode 100644
index 0000000..c322cb1
--- /dev/null
+++ b/www/galeon2/distinfo
@@ -0,0 +1 @@
+MD5 (galeon-0.7.1.tar.gz) = d21f940a1fcf385d3dc2a512a7435ed7
diff --git a/www/galeon2/files/patch-ab b/www/galeon2/files/patch-ab
new file mode 100644
index 0000000..157f691
--- /dev/null
+++ b/www/galeon2/files/patch-ab
@@ -0,0 +1,23 @@
+--- src/galeon.orig Tue Aug 1 11:22:03 2000
++++ src/galeon Tue Aug 1 11:22:14 2000
+@@ -1,14 +1,14 @@
+-#!/bin/bash
++#!/bin/sh
+
+-dist_bin=`dirname $0`
++dist_bin=%%PREFIX%%/bin
+
+ if test -n "$MOZILLA_FIVE_HOME"; then
+ export LD_LIBRARY_PATH=$MOZILLA_FIVE_HOME:$LD_LIBRARY_PATH
+ exec $dist_bin/galeon-bin $@
+-elif [ -f /usr/local/mozilla/libgtkembedmoz.so ]; then
+- MOZILLA_HOME=/usr/local/mozilla
+-elif [ -f /usr/lib/mozilla/libgtkembedmoz.so ]; then
+- MOZILLA_HOME=/usr/lib/mozilla
++elif [ -f %%LOCALBASE%%/lib/mozilla/libgtkembedmoz.so ]; then
++ MOZILLA_HOME=%%LOCALBASE%%/lib/mozilla
++elif [ -f %%X11BASE%%/lib/mozilla/libgtkembedmoz.so ]; then
++ MOZILLA_HOME=%%X11BASE%%/lib/mozilla
+ else
+ echo "Cannot find mozilla installation directory. Please set MOZILLA_FIVE_HOME to your mozilla directory"
+ exit
diff --git a/www/galeon2/pkg-comment b/www/galeon2/pkg-comment
new file mode 100644
index 0000000..df47615
--- /dev/null
+++ b/www/galeon2/pkg-comment
@@ -0,0 +1 @@
+A GNOME Web browser based on gecko (the Mozilla rendering engine)
diff --git a/www/galeon2/pkg-descr b/www/galeon2/pkg-descr
new file mode 100644
index 0000000..a3006b9
--- /dev/null
+++ b/www/galeon2/pkg-descr
@@ -0,0 +1,4 @@
+Galeon is a GNOME Web browser based on gecko (the mozilla rendering engine).
+It's fast, it has a light interface, and it is fully standards-compliant.
+
+WWW: http://galeon.sourceforge.net/
diff --git a/www/galeon2/pkg-plist b/www/galeon2/pkg-plist
new file mode 100644
index 0000000..a180f4e
--- /dev/null
+++ b/www/galeon2/pkg-plist
@@ -0,0 +1,19 @@
+bin/galeon
+bin/galeon-bin
+share/gnome/apps/Internet/galeon.desktop
+share/gnome/galeon/bookmarks.xml
+share/gnome/galeon/galeon.glade
+share/gnome/galeon/logo.png
+share/gnome/galeon/preferences.xml
+share/gnome/pixmaps/galeon.png
+share/gnome/pixmaps/galeon/logo.jpg
+share/locale/da/LC_MESSAGES/galeon.mo
+share/locale/es/LC_MESSAGES/galeon.mo
+share/locale/et/LC_MESSAGES/galeon.mo
+share/locale/fr/LC_MESSAGES/galeon.mo
+share/locale/it/LC_MESSAGES/galeon.mo
+share/locale/ko/LC_MESSAGES/galeon.mo
+share/locale/ru/LC_MESSAGES/galeon.mo
+share/locale/sv/LC_MESSAGES/galeon.mo
+@dirrm share/gnome/pixmaps/galeon
+@dirrm share/gnome/galeon
OpenPOWER on IntegriCloud