# Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/dev-cpp/libxmlpp/libxmlpp-1.0.2.ebuild,v 1.4 2004/06/24 21:50:47 agriffis Exp $ inherit libtool MY_P=${P/pp/++} DESCRIPTION="C++ wrapper for the libxml XML parser library" HOMEPAGE="http://libxmlplusplus.sourceforge.net/" SRC_URI="mirror://gnome/sources/libxml++/${PV%.*}/${MY_P}.tar.bz2" IUSE="" LICENSE="LGPL-2.1" SLOT="0" KEYWORDS="~x86 ~ppc ~sparc ~amd64" DEPEND=">=dev-libs/libxml2-2.6.1 >=dev-cpp/glibmm-2.4.0" S=${WORKDIR}/${MY_P} MAKEOPTS="${MAKEOPTS} -j1" src_compile() { elibtoolize econf || die "configure failed" emake || die "make failed" } src_install() { make DESTDIR=${D} install|| die "Install failed" dodoc AUTHORS COPYING ChangeLog NEWS README* }