# Copyright 1999-2003 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/gnome-extra/libgsf/libgsf-1.3.0-r1.ebuild,v 1.6 2003/02/13 12:22:39 vapier Exp $ IUSE="gnome doc" S=${WORKDIR}/${P} DESCRIPTION="The GNOME Structured File Library" SRC_URI="ftp://ftp.gnome.org/pub/GNOME/sources/${PN}/1.3/${P}.tar.bz2 mirror://gnome/2.0.0/sources/${PN}/${P}.tar.bz2" HOMEPAGE="http://www.gnome.org/" SLOT="0" LICENSE="GPL-2 LGPL-2" KEYWORDS="x86 sparc ppc" 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 ) 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 make || die } src_install() { make prefix=${D}/usr \ sysconfdir=${D}/etc \ localstatedir=${D}/var/lib \ datadir=${D}/usr/share/doc/${PF} \ install || die dodoc AUTHORS COPYING* ChangeLog INSTALL NEWS README }