# Copyright 1999-2011 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: $ EAPI="2" inherit autotools DESCRIPTION="C++ bindings of libcurl" HOMEPAGE="http://curlpp.org/" SRC_URI="http://${PN}.googlecode.com/files/${P}.tar.gz" LICENSE="MIT" SLOT="0" KEYWORDS="~amd64 ~x86" IUSE="" DEPEND="net-misc/curl dev-libs/boost" RDEPEND="${DEPEND}" src_prepare() { eautoreconf } src_install() { emake DESTDIR="${D}" install || die "install failed" dodoc CHANGES AUTHORS TODO doc/guide.pdf insinto "/usr/share/${P}" doins examples/* }