# Copyright 1999-2000 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later # Author Mikael Hallendal # $Header: /var/cvsroot/gentoo-x86/gnome-extra/gal/gal-0.18.ebuild,v 1.1 2001/11/08 12:08:47 hallski Exp $ S=${WORKDIR}/${P} DESCRIPTION="The Gnome Application Libraries" SRC_URI="ftp://ftp.gnome.org/pub/GNOME/unstable/sources/${PN}/${P}.tar.bz2" HOMEPAGE="http://www.gnome.org/" DEPEND="nls? ( sys-devel/gettext ) >=dev-util/intltool-0.11 sys-devel/perl >=gnome-base/gnome-vfs-1.0.2-r1 >=dev-libs/libunicode-0.4-r1 alsa? ( >=media-libs/alsa-lib-0.5.10 ) >=gnome-base/gnome-print-0.30 >=gnome-base/libglade-0.17-r1 >=dev-libs/libxml-1.8.15" src_compile() { local myconf if [ -z "`use nls`" ] then myconf="--disable-nls" fi ./configure --host=${CHOST} \ --prefix=/usr \ --sysconfdir=/etc \ --localstatedir=/var/lib \ ${myconf} || die make || die # Doesn't work with -j 4 (hallski) } src_install() { make prefix=${D}/usr \ sysconfdir=${D}/etc \ localstatedir=${D}/var/lib \ install || die dodoc AUTHORS COPYING ChangeLog NEWS README }