# Copyright 1999-2003 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 inherit eutils DESCRIPTION="C++ bindings of libcurl" HOMEPAGE="http://curl.haxx.se/libcurl/cplusplus/" SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" KEYWORDS="~amd64" IUSE="" SLOT="0" LICENSE="MIT X11" DEPEND=">=net-misc/curl-7.10.0" src_compile() { ./configure \ --host=${CHOST} \ --prefix=/usr \ --infodir=/usr/share/info \ --mandir=/usr/share/man \ --enable-ewarning=no || die "./configure failed" emake || die "emake failed" } src_install() { make DESTDIR=${D} install || die }