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 0D1071387B2 for ; Sat, 11 Oct 2014 09:21:22 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1F4C9E0C4E; Sat, 11 Oct 2014 09:21:21 +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 8802BE0C4E for ; Sat, 11 Oct 2014 09:21:20 +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 82FC63403BA for ; Sat, 11 Oct 2014 09:21:19 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 2C5A378A9 for ; Sat, 11 Oct 2014 09:21:18 +0000 (UTC) From: "Manuel Rüger" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Manuel Rüger" Message-ID: <1413019249.5cfff1eb70e6958da2ea0e6e106cf5bb908cf211.mrueg@gentoo> Subject: [gentoo-commits] proj/kde:master commit in: dev-libs/statusnotifier/ X-VCS-Repository: proj/kde X-VCS-Files: dev-libs/statusnotifier/statusnotifier-0.1.0.ebuild X-VCS-Directories: dev-libs/statusnotifier/ X-VCS-Committer: mrueg X-VCS-Committer-Name: Manuel Rüger X-VCS-Revision: 5cfff1eb70e6958da2ea0e6e106cf5bb908cf211 X-VCS-Branch: master Date: Sat, 11 Oct 2014 09:21:18 +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: d729d035-2fd2-4b2f-b6bd-c4ef5a0ed0bb X-Archives-Hash: 24aa39d1fe75533b8fef7ec54aa9d1a9 commit: 5cfff1eb70e6958da2ea0e6e106cf5bb908cf211 Author: Manuel Rüger gentoo org> AuthorDate: Sat Oct 11 09:20:49 2014 +0000 Commit: Manuel Rüger gentoo org> CommitDate: Sat Oct 11 09:20:49 2014 +0000 URL: http://sources.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=5cfff1eb [dev-libs/statusnotifier] Add missing dep on gtk-doc. Build example. Package-Manager: portage-2.2.14_rc1 --- dev-libs/statusnotifier/statusnotifier-0.1.0.ebuild | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/dev-libs/statusnotifier/statusnotifier-0.1.0.ebuild b/dev-libs/statusnotifier/statusnotifier-0.1.0.ebuild index a98b39f..61ccc39 100644 --- a/dev-libs/statusnotifier/statusnotifier-0.1.0.ebuild +++ b/dev-libs/statusnotifier/statusnotifier-0.1.0.ebuild @@ -13,12 +13,18 @@ SRC_URI="https://github.com/jjk-jacky/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" LICENSE="GPL-3" SLOT="0" KEYWORDS="~amd64" -IUSE="" +IUSE="doc examples" -DEPEND="dev-libs/glib:2 - x11-libs/gdk-pixbuf" -RDEPEND="${DEPEND}" +RDEPEND="dev-libs/glib:2 + x11-libs/gdk-pixbuf + examples? ( x11-libs/gtk+:3 )" +DEPEND="${RDEPEND} + dev-util/gtk-doc" src_prepare() { eautoreconf } + +src_configure() { + econf $(use_enable examples example) +}