From dd379bb57323097354bd7cf71a848c7e2c56b4d5 Mon Sep 17 00:00:00 2001 From: tastytea Date: Thu, 21 Jun 2018 22:28:09 +0200 Subject: [PATCH] fixed ebuilds --- packages/gentoo/mastodon-cpp-0.0.0.ebuild | 3 +++ packages/gentoo/mastodon-cpp-9999.ebuild | 15 +++++++-------- 2 files changed, 10 insertions(+), 8 deletions(-) diff --git a/packages/gentoo/mastodon-cpp-0.0.0.ebuild b/packages/gentoo/mastodon-cpp-0.0.0.ebuild index 2eb50c1..bb2694d 100644 --- a/packages/gentoo/mastodon-cpp-0.0.0.ebuild +++ b/packages/gentoo/mastodon-cpp-0.0.0.ebuild @@ -1,3 +1,6 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + EAPI=6 inherit cmake-utils diff --git a/packages/gentoo/mastodon-cpp-9999.ebuild b/packages/gentoo/mastodon-cpp-9999.ebuild index fa6364c..4e52dba 100644 --- a/packages/gentoo/mastodon-cpp-9999.ebuild +++ b/packages/gentoo/mastodon-cpp-9999.ebuild @@ -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 -# $Id$ EAPI=6 inherit git-r3 cmake-utils DESCRIPTION="mastodon-cpp is a C++ wrapper for the Mastodon API." -HOMEPAGE="https://git.schlomp.space/tastytea/mastodon-cpp" -EGIT_REPO_URI="https://git.schlomp.space/tastytea/mastodon-cpp.git" +HOMEPAGE="https://schlomp.space/tastytea/mastodon-cpp" +EGIT_REPO_URI="https://schlomp.space/tastytea/mastodon-cpp.git" LICENSE="GPL-3" SLOT="0" KEYWORDS="" IUSE="doc debug examples" 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 - doc? ( >=app-doc/doxygen-1.8.14-r1 ) + doc? ( >=app-doc/doxygen-1.8.13-r1 ) ${RDEPEND}" src_unpack() { @@ -48,6 +47,8 @@ src_compile() { } src_install() { + cmake-utils_src_install + if use doc; then HTML_DOCS="doc/html/*" fi @@ -58,6 +59,4 @@ src_install() { dodoc ${file} done fi - - cmake-utils_src_install }