diff options
Diffstat (limited to 'net-www/galeon/galeon-1.2.0.ebuild')
-rw-r--r-- | net-www/galeon/galeon-1.2.0.ebuild | 72 |
1 files changed, 0 insertions, 72 deletions
diff --git a/net-www/galeon/galeon-1.2.0.ebuild b/net-www/galeon/galeon-1.2.0.ebuild deleted file mode 100644 index be2558ed4dba..000000000000 --- a/net-www/galeon/galeon-1.2.0.ebuild +++ /dev/null @@ -1,72 +0,0 @@ -# Copyright 1999-2002 Gentoo Technologies, Inc. -# Distributed under the terms of the GNU General Public License, v2 or later -# Maintainer: Martin Schlemmer <azarah@gentoo.org> -# $Header: /var/cvsroot/gentoo-x86/net-www/galeon/galeon-1.2.0.ebuild,v 1.4 2002/05/27 17:27:39 drobbins Exp $ - -S=${WORKDIR}/${P} -DESCRIPTION="A small webbrowser for gnome that uses mozillas render engine" -SRC_URI="http://download.sourceforge.net/${PN}/${P}.tar.gz - mirror://sourceforge/${PN}/${P}.tar.gz" -HOMEPAGE="http://galeon.sourceforge.net" - -DEPEND=">=dev-libs/libxml-1.8.16 - >=dev-util/intltool-0.11 - ~net-www/mozilla-0.9.9 - >=gnome-base/libglade-0.17-r1 - >=gnome-base/gnome-core-1.4.0.4-r1 - >=gnome-base/gnome-vfs-1.0.2-r1 - >=gnome-base/gconf-1.0.7-r2 - >=gnome-base/oaf-0.6.7 - >=media-libs/gdk-pixbuf-0.16.0-r1 - >=gnome-base/ORBit-0.5.13 - =x11-libs/gtk+-1.2* - >=gnome-base/bonobo-1.0.19 - nls? ( sys-devel/gettext )" - - -src_compile() { - - local myconf - - if [ -z "`use nls`" ] ; then - myconf="--disable-nls" - fi - - ./configure --host=${CHOST} \ - --prefix=/usr \ - --sysconfdir=/etc \ - --localstatedir=/var/lib \ - --with-mozilla-libs=${MOZILLA_FIVE_HOME} \ - --with-mozilla-includes=${MOZILLA_FIVE_HOME}/include \ - --without-debug \ - --disable-applet \ - --disable-install-schemas \ - --enable-nautilus-view=auto \ - $myconf || die - - emake || die -} - -src_install() { - - # galeon-config-tool was rewritten for 1.2.0 and causes sandbox - # violations if gconfd is shut down... The schemas seem to install - # fine without it (at least it seems like it... *sigh*) - #gconftool --shutdown - - make prefix=${D}/usr \ - sysconfdir=${D}/etc \ - localstatedir=${D}/var/lib \ - install || die - - dodoc AUTHORS ChangeLog COPYING* FAQ NEWS README TODO THANKS -} - -pkg_postinst() { - - galeon-config-tool --fix-gconf-permissions - galeon-config-tool --pkg-install-schemas - scrollkeeper-update - -} - |