fixed ebuilds
the build was successful Details

This commit is contained in:
tastytea 2018-06-21 22:28:09 +02:00
parent c29a8e908e
commit dd379bb573
Signed by: tastytea
GPG Key ID: 59346E0EA35C67E5
2 changed files with 10 additions and 8 deletions

View File

@ -1,3 +1,6 @@
# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6 EAPI=6
inherit cmake-utils inherit cmake-utils

View File

@ -1,21 +1,20 @@
# Copyright 1999-2017 Gentoo Foundation # Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2 # Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=6 EAPI=6
inherit git-r3 cmake-utils inherit git-r3 cmake-utils
DESCRIPTION="mastodon-cpp is a C++ wrapper for the Mastodon API." DESCRIPTION="mastodon-cpp is a C++ wrapper for the Mastodon API."
HOMEPAGE="https://git.schlomp.space/tastytea/mastodon-cpp" HOMEPAGE="https://schlomp.space/tastytea/mastodon-cpp"
EGIT_REPO_URI="https://git.schlomp.space/tastytea/mastodon-cpp.git" EGIT_REPO_URI="https://schlomp.space/tastytea/mastodon-cpp.git"
LICENSE="GPL-3" LICENSE="GPL-3"
SLOT="0" SLOT="0"
KEYWORDS="" KEYWORDS=""
IUSE="doc debug examples" IUSE="doc debug examples"
RDEPEND=">=dev-cpp/curlpp-0.8.1 RDEPEND=">=dev-cpp/curlpp-0.8.1
>=dev-libs/jsoncpp-1.8.4" >=dev-libs/jsoncpp-1.8.1"
DEPEND=">=dev-util/cmake-3.9.6 DEPEND=">=dev-util/cmake-3.9.6
doc? ( >=app-doc/doxygen-1.8.14-r1 ) doc? ( >=app-doc/doxygen-1.8.13-r1 )
${RDEPEND}" ${RDEPEND}"
src_unpack() { src_unpack() {
@ -48,6 +47,8 @@ src_compile() {
} }
src_install() { src_install() {
cmake-utils_src_install
if use doc; then if use doc; then
HTML_DOCS="doc/html/*" HTML_DOCS="doc/html/*"
fi fi
@ -58,6 +59,4 @@ src_install() {
dodoc ${file} dodoc ${file}
done done
fi fi
cmake-utils_src_install
} }