blob: 9b72ebc90f4cd08b4e937a1456d9d9de161872ec (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
# Copyright 1999-2009 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"
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/*
}
|