From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 0B006138330 for ; Sun, 2 Oct 2016 10:42:58 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 14C69E0962; Sun, 2 Oct 2016 10:42:53 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id E69C3E08D5 for ; Sun, 2 Oct 2016 10:42:52 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 5D47D340C5B for ; Sun, 2 Oct 2016 10:42:51 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C3D1E248D for ; Sun, 2 Oct 2016 10:42:49 +0000 (UTC) From: "Jeroen Roovers" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Jeroen Roovers" Message-ID: <1475404913.312f6b743606d3bb860e232265736e1196a68d35.jer@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: x11-misc/gtkdialog/ X-VCS-Repository: repo/gentoo X-VCS-Files: x11-misc/gtkdialog/gtkdialog-0.8.3-r2.ebuild X-VCS-Directories: x11-misc/gtkdialog/ X-VCS-Committer: jer X-VCS-Committer-Name: Jeroen Roovers X-VCS-Revision: 312f6b743606d3bb860e232265736e1196a68d35 X-VCS-Branch: master Date: Sun, 2 Oct 2016 10:42:49 +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: 48b32261-e527-4092-beb2-9ff12e04a779 X-Archives-Hash: eb34afc4fd6f3adde329a04b2ee8a2d8 commit: 312f6b743606d3bb860e232265736e1196a68d35 Author: Jeroen Roovers gentoo org> AuthorDate: Sun Oct 2 10:41:53 2016 +0000 Commit: Jeroen Roovers gentoo org> CommitDate: Sun Oct 2 10:41:53 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=312f6b74 x11-misc/gtkdialog: Depend on x11-libs/vte:0= (bug #595912). Package-Manager: portage-2.3.1 x11-misc/gtkdialog/gtkdialog-0.8.3-r2.ebuild | 51 ++++++++++++++++++++++++++++ 1 file changed, 51 insertions(+) diff --git a/x11-misc/gtkdialog/gtkdialog-0.8.3-r2.ebuild b/x11-misc/gtkdialog/gtkdialog-0.8.3-r2.ebuild new file mode 100644 index 00000000..5a95075 --- /dev/null +++ b/x11-misc/gtkdialog/gtkdialog-0.8.3-r2.ebuild @@ -0,0 +1,51 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 +inherit autotools + +DESCRIPTION="A small utility for fast and easy GUI building" +HOMEPAGE="https://code.google.com/p/gtkdialog/" +SRC_URI="https://${PN}.googlecode.com/files/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86" +IUSE="glade vte" + +RDEPEND=" + x11-libs/gtk+:2 + glade? ( gnome-base/libglade ) + vte? ( x11-libs/vte:0= ) +" +DEPEND=" + ${RDEPEND} + virtual/pkgconfig + sys-devel/flex + virtual/yacc +" + +DOCS=( + AUTHORS + ChangeLog + TODO +) +PATCHES=( + "${FILESDIR}"/${PN}-0.8.3-optdeps.patch +) + +src_prepare() { + mv configure.{in,ac} || die + default + eautoreconf +} + +src_configure() { + econf $(use_with glade) $(use_with vte) +} + +src_install() { + # Stop make install from running gtk-update-icon-cache + emake DESTDIR="${D}" UPDATE_ICON_CACHE=true install +}