# Copyright 1999-2008 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: $ #inherit eutils DESCRIPTION="A collection of C++ libraries providing security functionality for XML data." HOMEPAGE="http://santuario.apache.org/" SRC_URI="http://xml.apache.org/security/dist/c-library/${P}.tar.gz" LICENSE="Apache-2.0" SLOT="0" KEYWORDS="~x86 ~amd64" IUSE="doc debug" DEPEND="dev-libs/xerces-c >=dev-libs/openssl-0.9.7" RDEPEND="${DEPEND}" src_compile() { econf || die "econf failed" make || die "make failed" } src_install() { emake DESTDIR="${D}" install || die "emake install failed" if use doc; then insinto /usr/share/doc/${PF} doins -r ${S}/doc/* fi }