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 42EE1138330 for ; Sun, 18 Sep 2016 11:02:07 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7F34C21C081; Sun, 18 Sep 2016 11:02:02 +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 27C2F21C08D for ; Sun, 18 Sep 2016 11:02:02 +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 521A5340C33 for ; Sun, 18 Sep 2016 11:02:01 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 3BB762490 for ; Sun, 18 Sep 2016 11:01:58 +0000 (UTC) From: "Pacho Ramos" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Pacho Ramos" Message-ID: <1474196496.fa98c2e129e32e20c06239510f3ff9d65a45a458.pacho@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/libunique/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/libunique/libunique-3.0.2-r1.ebuild X-VCS-Directories: dev-libs/libunique/ X-VCS-Committer: pacho X-VCS-Committer-Name: Pacho Ramos X-VCS-Revision: fa98c2e129e32e20c06239510f3ff9d65a45a458 X-VCS-Branch: master Date: Sun, 18 Sep 2016 11:01:58 +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: bbda01eb-3ab1-4db8-bb09-1434236e16c3 X-Archives-Hash: 909f2140ba4424662927c1525057d9bd commit: fa98c2e129e32e20c06239510f3ff9d65a45a458 Author: Pacho Ramos gentoo org> AuthorDate: Sun Sep 18 10:45:28 2016 +0000 Commit: Pacho Ramos gentoo org> CommitDate: Sun Sep 18 11:01:36 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fa98c2e1 dev-libs/libunique: Bump eapi, fix introspection dependencies, stop rebuilding gtk-docs Package-Manager: portage-2.3.0 dev-libs/libunique/libunique-3.0.2-r1.ebuild | 46 ++++++++++++++++++++++++++++ 1 file changed, 46 insertions(+) diff --git a/dev-libs/libunique/libunique-3.0.2-r1.ebuild b/dev-libs/libunique/libunique-3.0.2-r1.ebuild new file mode 100644 index 00000000..2f000ed --- /dev/null +++ b/dev-libs/libunique/libunique-3.0.2-r1.ebuild @@ -0,0 +1,46 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 +GNOME2_LA_PUNT="yes" + +inherit gnome2 virtualx + +DESCRIPTION="A library for writing single instance application" +HOMEPAGE="https://wiki.gnome.org/Attic/LibUnique" + +LICENSE="LGPL-2.1" +SLOT="3" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~ia64-linux ~x86-linux ~x86-solaris" +IUSE="debug +introspection" + +RDEPEND=" + >=dev-libs/glib-2.25.7:2 + sys-apps/dbus[X] + >=x11-libs/gtk+-2.90.0:3[introspection?] + x11-libs/libX11 + introspection? ( >=dev-libs/gobject-introspection-0.9.0:= ) +" +DEPEND="${RDEPEND} + >=dev-util/gtk-doc-am-1.11 + virtual/pkgconfig +" +# For eautoreconf +# dev-util/gtk-doc-am + +src_configure() { + # --disable-dbus means gdbus is used instead of dbus-glib + gnome2_src_configure \ + --disable-static \ + --disable-maintainer-flags \ + --disable-dbus \ + $(usex debug --enable-debug=yes ' ') \ + $(use_enable introspection) +} + +src_test() { + cd "${S}/tests" + cp "${FILESDIR}/run-tests" . || die "Unable to cp \${FILESDIR}/run-tests" + virtx emake -f run-tests || die "Tests failed" +}