diff options
author | Mike Frysinger <vapier@gentoo.org> | 2004-04-16 02:37:59 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2004-04-16 02:37:59 +0000 |
commit | 182ab02b5e996b73cb7f154ba81a1e32baa5862e (patch) | |
tree | f5e432a9ecaeb8c1a3d65ef528493bba55a77a88 /dev-libs/gdome2 | |
parent | add inherit eutils (diff) | |
download | gentoo-2-182ab02b5e996b73cb7f154ba81a1e32baa5862e.tar.gz gentoo-2-182ab02b5e996b73cb7f154ba81a1e32baa5862e.tar.bz2 gentoo-2-182ab02b5e996b73cb7f154ba81a1e32baa5862e.zip |
add inherit eutils
Diffstat (limited to 'dev-libs/gdome2')
-rw-r--r-- | dev-libs/gdome2/gdome2-0.8.0.ebuild | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/dev-libs/gdome2/gdome2-0.8.0.ebuild b/dev-libs/gdome2/gdome2-0.8.0.ebuild index cb82b857affd..e5091a159612 100644 --- a/dev-libs/gdome2/gdome2-0.8.0.ebuild +++ b/dev-libs/gdome2/gdome2-0.8.0.ebuild @@ -1,27 +1,28 @@ # Copyright 1999-2004 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/gdome2/gdome2-0.8.0.ebuild,v 1.3 2004/03/14 12:28:57 mr_bones_ Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/gdome2/gdome2-0.8.0.ebuild,v 1.4 2004/04/16 02:35:59 vapier Exp $ + +inherit eutils DESCRIPTION="The DOM C library for the GNOME project" HOMEPAGE="http://gdome2.cs.unibo.it/" SRC_URI="http://gdome2.cs.unibo.it/tarball/${P}.tar.gz" -SLOT="0" LICENSE="LGPL-2.1" +SLOT="0" KEYWORDS="~x86 ~sparc ~ppc" DEPEND=">=dev-libs/libxml2-2.4.21 =dev-libs/glib-1.2*" - src_unpack() { unpack ${A} cd ${S} epatch ${FILESDIR}/${P}-libxml.patch } -# has the option of using glib-2 by using --enable-glib-2 src_compile() { + # has the option of using glib-2 by using --enable-glib-2 econf \ --with-html-dir=${D}/usr/share/doc || die "configure problem" emake || die "compile problem" @@ -29,5 +30,5 @@ src_compile() { src_install() { make DESTDIR=${D} install || die "install problem" - dodoc AUTHORS ChangeLog COPYING* INSTALL MAINTAINERS README + dodoc AUTHORS ChangeLog INSTALL MAINTAINERS README } |