From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 4ABF9138CCF for ; Mon, 11 May 2015 18:25:00 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D5F2DE08AE; Mon, 11 May 2015 18:24:57 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 7CFE4E08AE for ; Mon, 11 May 2015 18:24:57 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 438FB340942 for ; Mon, 11 May 2015 18:24:56 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9099A9B1 for ; Mon, 11 May 2015 18:24:48 +0000 (UTC) From: "Michael Palimaka" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michael Palimaka" Message-ID: <1431368672.d76f8841e03a434e5c85aba1f9ce6c4a8979e6ba.kensington@gentoo> Subject: [gentoo-commits] proj/kde:master commit in: net-libs/accounts-qt/ X-VCS-Repository: proj/kde X-VCS-Files: net-libs/accounts-qt/accounts-qt-1.13.ebuild X-VCS-Directories: net-libs/accounts-qt/ X-VCS-Committer: kensington X-VCS-Committer-Name: Michael Palimaka X-VCS-Revision: d76f8841e03a434e5c85aba1f9ce6c4a8979e6ba X-VCS-Branch: master Date: Mon, 11 May 2015 18:24:48 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 44c70788-383d-4e30-b414-548964c37dce X-Archives-Hash: 8bdfbf47963d6eb6508f33009014a273 commit: d76f8841e03a434e5c85aba1f9ce6c4a8979e6ba Author: Michael Palimaka gentoo org> AuthorDate: Mon May 11 18:24:32 2015 +0000 Commit: Michael Palimaka gentoo org> CommitDate: Mon May 11 18:24:32 2015 +0000 URL: https://gitweb.gentoo.org/proj/kde.git/commit/?id=d76f8841 [net-libs/accounts-qt] Introduce doc USE flag. This avoids build failure with app-doc/doxygen is missing. Package-Manager: portage-2.2.18 net-libs/accounts-qt/accounts-qt-1.13.ebuild | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/net-libs/accounts-qt/accounts-qt-1.13.ebuild b/net-libs/accounts-qt/accounts-qt-1.13.ebuild index a031fba..0b44287 100644 --- a/net-libs/accounts-qt/accounts-qt-1.13.ebuild +++ b/net-libs/accounts-qt/accounts-qt-1.13.ebuild @@ -13,20 +13,25 @@ SRC_URI="https://accounts-sso.googlecode.com/files/${PN}-1.11.tar.bz2" LICENSE="LGPL-2.1" SLOT="0" KEYWORDS="~amd64 ~x86" +IUSE="doc" -DEPEND=" +RDEPEND=" net-libs/libaccounts-glib dev-libs/glib:2 dev-qt/qtcore:5 dev-qt/qttest:5 dev-qt/qtxml:5 " -RDEPEND="${DEPEND}" +DEPEND="${RDEPEND} + doc? ( app-doc/doxygen ) +" S="${WORKDIR}/${PN}-1.11" + src_prepare() { epatch "${FILESDIR}"/${PN}-1.11-to-1.13.patch sed -i -e '/^SUBDIRS/s/tests//' accounts-qt.pro || die "couldn't disable tests" + use doc || sed -e "/include( doc\/doc.pri )/d" -i ${PN}.pro || die } src_configure() {