diff options
author | Achim Gottinger <achim@gentoo.org> | 2001-05-05 17:19:44 +0000 |
---|---|---|
committer | Achim Gottinger <achim@gentoo.org> | 2001-05-05 17:19:44 +0000 |
commit | d050eb3d5225e5adc34aaa302af0e934274ab543 (patch) | |
tree | a1c6f29c0640ea71dfdf17ed54260202a3735159 /gnome-base/nautilus | |
parent | Update (diff) | |
download | historical-d050eb3d5225e5adc34aaa302af0e934274ab543.tar.gz historical-d050eb3d5225e5adc34aaa302af0e934274ab543.tar.bz2 historical-d050eb3d5225e5adc34aaa302af0e934274ab543.zip |
Update, thx seb
Diffstat (limited to 'gnome-base/nautilus')
-rw-r--r-- | gnome-base/nautilus/files/digest-nautilus-1.0.2 | 1 | ||||
-rw-r--r-- | gnome-base/nautilus/nautilus-1.0.2.ebuild | 60 |
2 files changed, 61 insertions, 0 deletions
diff --git a/gnome-base/nautilus/files/digest-nautilus-1.0.2 b/gnome-base/nautilus/files/digest-nautilus-1.0.2 new file mode 100644 index 000000000000..0db2edf4c770 --- /dev/null +++ b/gnome-base/nautilus/files/digest-nautilus-1.0.2 @@ -0,0 +1 @@ +MD5 9c6b11436e11d7dc184dd5748e7e82ac nautilus-1.0.2.tar.gz diff --git a/gnome-base/nautilus/nautilus-1.0.2.ebuild b/gnome-base/nautilus/nautilus-1.0.2.ebuild new file mode 100644 index 000000000000..1c747d239466 --- /dev/null +++ b/gnome-base/nautilus/nautilus-1.0.2.ebuild @@ -0,0 +1,60 @@ +## Copyright 1999-2000 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# Author Achim Gottinger <achim@gentoo.org> +# Updated by Sebastian Werner <sebastian@werner-productions.de> +# /home/cvsroot/gentoo-x86/gnome-apps/nautilus/nautilus-1.0.ebuild,v 1.3 2001/04/29 18:42:54 achim Exp + +A=${P}.tar.gz +S=${WORKDIR}/${P} +DESCRIPTION="nautilus" +SRC_URI="ftp://ftp.gnome.org/pub/GNOME/stable/sources/${PN}/${A} + ftp://gnome.eazel.com/pub/gnome/stable/sources/${PN}/${A}" + +HOMEPAGE="http://www.gnome.org/" + +DEPEND="nls? ( sys-devel/gettext ) + mozilla? ( >=net-www/mozilla-0.8-r1 ) + >=media-libs/freetype-2.0.1 + >=sys-libs/pam-0.73 + >=gnome-base/bonobo-1.0.2 + >=gnome-base/libghttp-1.0.9 + >=gnome-base/scrollkeeper-0.2 + >=gnome-base/control-center-1.4.0 + >=gnome-libs/medusa-0.5.0 + >=gnome-libs/ammonite-1.0.0" + +src_compile() { + local myconf + if [ -z "`use nls`" ] + then + myconf="--disable-nls" + fi + if [ "`use mozilla`" ] + then +# MOZILLA=${S}/../../../mozilla-0.8-r2/work/mozilla/dist + MOZILLA=/opt/mozilla + myconf="${myconf} --with-mozilla-lib-place=$MOZILLA \ + --with-mozilla-include-place=$MOZILLA/include" + export MOZILLA_FIVE_HOME=$MOZILLA + export LD_LIBRARY_PATH=$MOZILLA_FIVE_HOME + export CXXFLAGS="$CXXFLAGS -fno-exceptions -fno-rtti" + else + myconf="${myconf} --disable-mozilla-component" + fi + try ./configure --host=${CHOST} --prefix=/opt/gnome \ + --sysconfdir=/etc/opt/gnome --infodir=/opt/gnome/share/info \ + --mandir=/opt/gnome/share/man --enable-eazel-services=1 ${myconf} + try make +} + +src_install() { + cd ${S} + try make prefix=${D}/opt/gnome sysconfdir=${D}/etc/opt/gnome \ + mandir=${D}/opt/gnome/share/man infodir=${D}/opt/gnome/share/info install + dodoc AUTHORS COPYING* ChangeLog* NEWS TODO +} + + + + + |