# Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: $ inherit eutils DESCRIPTION="Libiqxmlrpc is an object-oriented library, which represents simple XML-RPC solution both for client and server sides." HOMEPAGE="http://libiqxmlrpc.sourceforge.net/" SRC_URI="mirror://sourceforge/libiqxmlrpc/${P}.tar.gz" LICENSE="GPL-2 LGPL-2" IUSE="doc" SLOT="0" KEYWORDS="x86" DEPEND=">=dev-cpp/libxmlpp-1.0.0 doc? (app-doc/doxygen)" src_compile() { local mydocs="--disable-docs" if use doc; then mydocs="" fi ./configure \ --host=${CHOST} \ --prefix=/usr \ --infodir=/usr/share/info \ ${mydocs} \ --mandir=/usr/share/man || die "./configure failed" emake || die "emake failed" } src_install() { make DESTDIR=${D} install || die }