diff options
Diffstat (limited to 'gnome-extra/libgsf/libgsf-1.5.0.ebuild')
-rw-r--r-- | gnome-extra/libgsf/libgsf-1.5.0.ebuild | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/gnome-extra/libgsf/libgsf-1.5.0.ebuild b/gnome-extra/libgsf/libgsf-1.5.0.ebuild new file mode 100644 index 000000000000..76bf92dab2c0 --- /dev/null +++ b/gnome-extra/libgsf/libgsf-1.5.0.ebuild @@ -0,0 +1,47 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/gnome-extra/libgsf/libgsf-1.5.0.ebuild,v 1.1 2002/12/06 01:02:25 foser Exp $ + +inherit gnome2 + +IUSE="gnome doc" +S=${WORKDIR}/${P} +DESCRIPTION="The GNOME Structured File Library" +HOMEPAGE="http://www.gnome.org/" +SLOT="0" +LICENSE="GPL-2 LGPL-2" +KEYWORDS="~x86 ~sparc ~sparc64 ~ppc" + +RDEPEND=">=dev-libs/glib-2 + >=dev-libs/libxml2-2.4.16 + >=sys-libs/zlib-1.1.4 + gnome? ( >=gnome-base/libbonobo-2 + >=gnome-base/gnome-vfs-2 )" + +DEPEND=">=dev-util/pkgconfig-0.9 + doc? ( dev-util/gtk-doc )" + +src_unpack() { + unpack ${A} + cd ${S}/doc/ + + # little hack to fix bug 7570 + cp Makefile.in Makefile.in.orig + sed -e "s:doc\$(TARGET_DIR):\$(TARGET_DIR):" \ + Makefile.in.orig > Makefile.in +} + +src_compile() { + local myconf + + use gnome && myconf="--with-gnome" || \ + myconf="--without-gnome" + + use doc && myconf="${myconf} --enable-gtk-doc" || \ + myconf="${myconf} --disable-gtk-doc" + + econf ${myconf} --with-zlib || die + emake || die +} + +DOCS="dodoc AUTHORS COPYING* ChangeLog INSTALL NEWS README" |