diff options
author | Achim Gottinger <achim@gentoo.org> | 2001-01-16 14:34:58 +0000 |
---|---|---|
committer | Achim Gottinger <achim@gentoo.org> | 2001-01-16 14:34:58 +0000 |
commit | 3bce65d2871c77fbd2bface0916757986bb5c9a5 (patch) | |
tree | fd99e4c0656e35507d00613299db1185c4792091 /gnome-libs | |
parent | *** empty log message *** (diff) | |
download | gentoo-2-3bce65d2871c77fbd2bface0916757986bb5c9a5.tar.gz gentoo-2-3bce65d2871c77fbd2bface0916757986bb5c9a5.tar.bz2 gentoo-2-3bce65d2871c77fbd2bface0916757986bb5c9a5.zip |
*** empty log message ***
Diffstat (limited to 'gnome-libs')
-rw-r--r-- | gnome-libs/gb/files/digest-gb-0.0.17 | 1 | ||||
-rw-r--r-- | gnome-libs/gb/gb-0.0.17.ebuild | 32 |
2 files changed, 33 insertions, 0 deletions
diff --git a/gnome-libs/gb/files/digest-gb-0.0.17 b/gnome-libs/gb/files/digest-gb-0.0.17 new file mode 100644 index 000000000000..3f9cee74eff4 --- /dev/null +++ b/gnome-libs/gb/files/digest-gb-0.0.17 @@ -0,0 +1 @@ +MD5 3cd9606630275cf9b5571afcc4423c91 gb-0.0.17.tar.gz diff --git a/gnome-libs/gb/gb-0.0.17.ebuild b/gnome-libs/gb/gb-0.0.17.ebuild new file mode 100644 index 000000000000..8b4fb871f777 --- /dev/null +++ b/gnome-libs/gb/gb-0.0.17.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 + +A=${P}.tar.gz +S=${WORKDIR}/${P} +DESCRIPTION="GNOME Basic" +SRC_URI="ftp://ftp.gnome.org/pub/GNOME/unstable/sources/${PN}/${A}" +HOMEPAGE="http://www.gnome.org/" + +DEPEND=">=gnome-base/gnome-libs-1.2.8" + +src_unpack() { + unpack ${A} +} + +src_compile() { + cd ${S} + try ./configure --host=${CHOST} --prefix=/opt/gnome + try make +} + +src_install() { + cd ${S} + try make prefix=${D}/opt/gnome install + + dodoc AUTHORS COPYING ChangeLog NEWS README* TODO +} + + + |