forked from tastytea/overlay
tastytea
c9e53e0119
Package-Manager: Portage-2.3.62, Repoman-2.3.11 Manifest-Sign-Key: 3555266864CA6D7FF45AA6E7CFC39497F1B26E07
39 lines
790 B
Bash
39 lines
790 B
Bash
# Copyright 2018-2019 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=6
|
|
|
|
inherit cmake-utils
|
|
|
|
DESCRIPTION="C++ wrapper for libcURL"
|
|
HOMEPAGE="http://www.curlpp.org/"
|
|
SRC_URI="https://github.com/jpbarrette/curlpp/archive/v${PV}.tar.gz -> ${P}.tar.gz"
|
|
|
|
LICENSE="MIT"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~x86 ~arm"
|
|
IUSE="doc examples static-libs"
|
|
|
|
RDEPEND=">=net-misc/curl-7.58.0"
|
|
DEPEND=">=dev-util/cmake-3.9.6
|
|
${RDEPEND}"
|
|
|
|
src_prepare() {
|
|
cmake-utils_src_prepare
|
|
sed -i 's/@LDFLAGS@ //' extras/curlpp.pc.in
|
|
if ! use static-libs; then
|
|
eapply "${FILESDIR}/no_static_lib.patch"
|
|
fi
|
|
}
|
|
|
|
src_install() {
|
|
cmake-utils_src_install
|
|
dodoc Readme.md doc/AUTHORS doc/TODO
|
|
if use doc; then
|
|
dodoc doc/guide.pdf
|
|
fi
|
|
if use examples; then
|
|
dodoc -r examples/
|
|
fi
|
|
}
|