diff options
author | Achim Gottinger <achim@gentoo.org> | 2000-12-21 08:22:28 +0000 |
---|---|---|
committer | Achim Gottinger <achim@gentoo.org> | 2000-12-21 08:22:28 +0000 |
commit | 6f5165a6a886168cd939bb1dabb40ac722652a89 (patch) | |
tree | a3b94f8f31b9da01c06a00ca43b356494ec8e6ba /gnome-libs/gb | |
parent | *** empty log message *** (diff) | |
download | historical-6f5165a6a886168cd939bb1dabb40ac722652a89.tar.gz historical-6f5165a6a886168cd939bb1dabb40ac722652a89.tar.bz2 historical-6f5165a6a886168cd939bb1dabb40ac722652a89.zip |
*** empty log message ***
Diffstat (limited to 'gnome-libs/gb')
-rw-r--r-- | gnome-libs/gb/files/digest-gb-0.0.16 | 1 | ||||
-rw-r--r-- | gnome-libs/gb/gb-0.0.16.ebuild | 32 |
2 files changed, 33 insertions, 0 deletions
diff --git a/gnome-libs/gb/files/digest-gb-0.0.16 b/gnome-libs/gb/files/digest-gb-0.0.16 new file mode 100644 index 000000000000..6c699c8d3105 --- /dev/null +++ b/gnome-libs/gb/files/digest-gb-0.0.16 @@ -0,0 +1 @@ +MD5 e7ff8b79afbc2ae88a40a45703fdaab3 gb-0.0.16.tar.gz diff --git a/gnome-libs/gb/gb-0.0.16.ebuild b/gnome-libs/gb/gb-0.0.16.ebuild new file mode 100644 index 000000000000..8b4fb871f777 --- /dev/null +++ b/gnome-libs/gb/gb-0.0.16.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 +} + + + |