diff options
author | Daniel Robbins <drobbins@gentoo.org> | 2000-10-31 02:43:30 +0000 |
---|---|---|
committer | Daniel Robbins <drobbins@gentoo.org> | 2000-10-31 02:43:30 +0000 |
commit | 8450c140a5edc1b0fdf94f71497cf20f0990971e (patch) | |
tree | 9b85dac19c074b9c43df2de1b6ce29a7ac09f812 /gnome-base/gconf/gconf-0.9.ebuild | |
parent | little fixes (diff) | |
download | historical-8450c140a5edc1b0fdf94f71497cf20f0990971e.tar.gz historical-8450c140a5edc1b0fdf94f71497cf20f0990971e.tar.bz2 historical-8450c140a5edc1b0fdf94f71497cf20f0990971e.zip |
updates and new ebuilds
Diffstat (limited to 'gnome-base/gconf/gconf-0.9.ebuild')
-rw-r--r-- | gnome-base/gconf/gconf-0.9.ebuild | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/gnome-base/gconf/gconf-0.9.ebuild b/gnome-base/gconf/gconf-0.9.ebuild new file mode 100644 index 000000000000..a4ee4cb119e4 --- /dev/null +++ b/gnome-base/gconf/gconf-0.9.ebuild @@ -0,0 +1,32 @@ +# 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> +# $Header + +P=GConf-0.9 +A=${P}.tar.gz +S=${WORKDIR}/${P} +DESCRIPTION="Gconf" +SRC_URI="ftp://ftp.gnome.org/pub/GNOME/unstable/sources/GConf/${A}" +HOMEPAGE="http://www.gnome.org/" + +src_unpack() { + unpack ${A} +} + +src_compile() { + cd ${S} + try ./configure --host=${CHOST} --prefix=/opt/gnome --with-catgets + try make +} + +src_install() { + cd ${S} + try make prefix=${D}/opt/gnome install + prepman /opt/gnome + + dodoc AUTHORS BUGS COPYING ChangeLog FAQ NEWS README* THANKS TODO +} + + + |