diff options
author | Gabriele Giorgetti <stroke@gentoo.org> | 2002-08-05 22:37:08 +0000 |
---|---|---|
committer | Gabriele Giorgetti <stroke@gentoo.org> | 2002-08-05 22:37:08 +0000 |
commit | 15bfc176a43ae7bb128bb630251bcda1c8734eba (patch) | |
tree | 25f13d35a7d06de85c8fbdd27a584c2dc86802e9 /gnome-extra | |
parent | non tested since lignome isn't released as 2.0.2 yet. is masked so it should ... (diff) | |
download | historical-15bfc176a43ae7bb128bb630251bcda1c8734eba.tar.gz historical-15bfc176a43ae7bb128bb630251bcda1c8734eba.tar.bz2 historical-15bfc176a43ae7bb128bb630251bcda1c8734eba.zip |
Initial cvs import, The GNOME Structured File Library. Also needed by gnumeric.
Diffstat (limited to 'gnome-extra')
-rw-r--r-- | gnome-extra/libgsf/ChangeLog | 10 | ||||
-rw-r--r-- | gnome-extra/libgsf/files/digest-libgsf-1.1.0 | 1 | ||||
-rw-r--r-- | gnome-extra/libgsf/libgsf-1.1.0.ebuild | 51 |
3 files changed, 62 insertions, 0 deletions
diff --git a/gnome-extra/libgsf/ChangeLog b/gnome-extra/libgsf/ChangeLog new file mode 100644 index 000000000000..135d02fa2e79 --- /dev/null +++ b/gnome-extra/libgsf/ChangeLog @@ -0,0 +1,10 @@ +# ChangeLog for gnome-extra/libgsf +# Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL +# $Header: /var/cvsroot/gentoo-x86/gnome-extra/libgsf/ChangeLog,v 1.1 2002/08/05 22:37:08 stroke Exp $ + +*libgsf-1.1.0 (06 Aug 2002) + + 06 Aug 2002; Gabriele Giorgetti <stroke@gentoo.org> libgsf-1.1.0.ebuild: + + Initial cvs import, The GNOME Structured File Library. +
\ No newline at end of file diff --git a/gnome-extra/libgsf/files/digest-libgsf-1.1.0 b/gnome-extra/libgsf/files/digest-libgsf-1.1.0 new file mode 100644 index 000000000000..128195cef0c2 --- /dev/null +++ b/gnome-extra/libgsf/files/digest-libgsf-1.1.0 @@ -0,0 +1 @@ +MD5 d2d7a4205b1a42d688256989b993a367 libgsf-1.1.0.tar.bz2 180504 diff --git a/gnome-extra/libgsf/libgsf-1.1.0.ebuild b/gnome-extra/libgsf/libgsf-1.1.0.ebuild new file mode 100644 index 000000000000..edb4ad8343d5 --- /dev/null +++ b/gnome-extra/libgsf/libgsf-1.1.0.ebuild @@ -0,0 +1,51 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# $Header: /var/cvsroot/gentoo-x86/gnome-extra/libgsf/libgsf-1.1.0.ebuild,v 1.1 2002/08/05 22:37:08 stroke Exp $ + +S=${WORKDIR}/${P} + +DESCRIPTION="The GNOME Structured File Library" +SRC_URI="mirror://gnome/sources/${PN}/${P}.tar.bz2" +HOMEPAGE="http://www.gnome.org/" + +SLOT="0" +LICENSE="GPL-2 LGPL-2" +KEYWORDS="x86" + +DEPEND=">=dev-libs/glib-2.0.4 + >=dev-libs/libxml2-2.4.23 + >=sys-libs/zlib-1.1.4 + gnome? ( >=gnome-base/libbonobo-2.0.0 + >=gnome-base/gnome-vfs-2.0.1 )" + +RDEPEND="${DEPEND}" + +src_compile() { + local myconf + + if [ "`use gnome`" ] + then + # README lied it is --with-gnomevfs not --with-gnome-vfs + # building with-gnomevfs fails, disabling it + # stroke@gentoo.org + # + #myconf="--with-gnomevfs --with-bonobo" + myconf="--without-gnomevfs --with-bonobo" + else + myconf="--without-gnomevfs --without-bonobo" + fi + + econf $myconf --with-zlib || die + make || die +} + +src_install() { + + make prefix=${D}/usr \ + sysconfdir=${D}/etc \ + localstatedir=${D}/var/lib \ + datadir=${D}/usr/share \ + install || die + + dodoc AUTHORS COPYING* ChangeLog INSTALL NEWS README +} |