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 096B7138332 for ; Sun, 11 Sep 2016 11:28:56 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5142EE0B71; Sun, 11 Sep 2016 11:28:54 +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 36B76E0B71 for ; Sun, 11 Sep 2016 11:28:54 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 6D67E340AE2 for ; Sun, 11 Sep 2016 11:28:53 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1C52E2487 for ; Sun, 11 Sep 2016 11:28:50 +0000 (UTC) From: "Gilles Dartiguelongue" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Gilles Dartiguelongue" Message-ID: <1473593263.07f90435c855f824caaa720dc4df63b489e101f8.eva@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/libgudev/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/libgudev/libgudev-230-r1.ebuild X-VCS-Directories: dev-libs/libgudev/ X-VCS-Committer: eva X-VCS-Committer-Name: Gilles Dartiguelongue X-VCS-Revision: 07f90435c855f824caaa720dc4df63b489e101f8 X-VCS-Branch: master Date: Sun, 11 Sep 2016 11:28:50 +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: 710f2175-c91a-4740-a382-4f9e217cdda5 X-Archives-Hash: d5c2870cd4c1520f2359b0a5979702ce commit: 07f90435c855f824caaa720dc4df63b489e101f8 Author: Gilles Dartiguelongue gentoo org> AuthorDate: Sat Sep 10 23:09:35 2016 +0000 Commit: Gilles Dartiguelongue gentoo org> CommitDate: Sun Sep 11 11:27:43 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=07f90435 dev-libs/libgudev: fix missing multilib dependencies add missing build dependencies, add subslot to introspection, bump to EAPI=6. Package-Manager: portage-2.3.0 dev-libs/libgudev/libgudev-230-r1.ebuild | 40 ++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) diff --git a/dev-libs/libgudev/libgudev-230-r1.ebuild b/dev-libs/libgudev/libgudev-230-r1.ebuild new file mode 100644 index 00000000..0ca626e --- /dev/null +++ b/dev-libs/libgudev/libgudev-230-r1.ebuild @@ -0,0 +1,40 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +inherit gnome2 multilib-minimal + +DESCRIPTION="GObject bindings for libudev" +HOMEPAGE="https://wiki.gnome.org/Projects/libgudev" + +LICENSE="LGPL-2.1" +SLOT="0/0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86" +IUSE="introspection static-libs" + +COMMON_DEPEND=" + >=dev-libs/glib-2.22.0:2=[${MULTILIB_USEDEP},static-libs?] + >=virtual/libudev-199:=[${MULTILIB_USEDEP},static-libs?] + introspection? ( >=dev-libs/gobject-introspection-1.31.1:= ) +" +RDEPEND="${COMMON_DEPEND} + !sys-fs/eudev[gudev(-)] + !sys-fs/udev[gudev(-)] + !sys-apps/systemd[gudev(-)] +" +DEPEND="${COMMON_DEPEND} + >=dev-util/gtk-doc-am-1.18 + virtual/pkgconfig[${MULTILIB_USEDEP}] +" + +multilib_src_configure() { + ECONF_SOURCE=${S} gnome2_src_configure \ + $(multilib_native_use_enable introspection) \ + $(use_enable static-libs static) +} + +multilib_src_install() { + gnome2_src_install +}