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 715AF138332 for ; Sat, 8 Oct 2016 09:51:23 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B257021C072; Sat, 8 Oct 2016 09:51:21 +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 96444E0C2B for ; Sat, 8 Oct 2016 09:51:21 +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 853C73414CD for ; Sat, 8 Oct 2016 09:51:19 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0269424AD for ; Sat, 8 Oct 2016 09:51:18 +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: <1475920214.90296a306c1785fa1988d32ca66f11bb108fad5e.pacho@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: xfce-extra/xfce4-vala/ X-VCS-Repository: repo/gentoo X-VCS-Files: xfce-extra/xfce4-vala/xfce4-vala-4.10.3-r3.ebuild X-VCS-Directories: xfce-extra/xfce4-vala/ X-VCS-Committer: pacho X-VCS-Committer-Name: Pacho Ramos X-VCS-Revision: 90296a306c1785fa1988d32ca66f11bb108fad5e X-VCS-Branch: master Date: Sat, 8 Oct 2016 09:51: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: 9788a3f6-430b-4cd5-89e2-165a65525058 X-Archives-Hash: 4ff640bc82f57f09210edcd480c857a1 commit: 90296a306c1785fa1988d32ca66f11bb108fad5e Author: Pacho Ramos gentoo org> AuthorDate: Sat Oct 8 08:50:11 2016 +0000 Commit: Pacho Ramos gentoo org> CommitDate: Sat Oct 8 09:50:14 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=90296a30 xfce-extra/xfce4-vala: Support vala:0.32 Package-Manager: portage-2.3.1 xfce-extra/xfce4-vala/xfce4-vala-4.10.3-r3.ebuild | 41 +++++++++++++++++++++++ 1 file changed, 41 insertions(+) diff --git a/xfce-extra/xfce4-vala/xfce4-vala-4.10.3-r3.ebuild b/xfce-extra/xfce4-vala/xfce4-vala-4.10.3-r3.ebuild new file mode 100644 index 00000000..7d2f914 --- /dev/null +++ b/xfce-extra/xfce4-vala/xfce4-vala-4.10.3-r3.ebuild @@ -0,0 +1,41 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 +MY_VALA_VERSION=0.32 +VALA_MIN_API_VERSION=${MY_VALA_VERSION} +VALA_MAX_API_VERSION=${MY_VALA_VERSION} +VALA_USE_DEPEND=vapigen +inherit xfconf vala + +DESCRIPTION="Vala bindings for the Xfce desktop environment" +HOMEPAGE="https://wiki.xfce.org/vala-bindings" +SRC_URI="mirror://xfce/src/bindings/${PN}/${PV%.*}/${P}.tar.bz2" + +LICENSE="LGPL-2.1" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +RDEPEND="$(vala_depend) + >=xfce-base/exo-0.10 + >=xfce-base/garcon-0.2 + >=xfce-base/libxfce4ui-4.10 + >=xfce-base/libxfce4util-4.10 + >=xfce-base/xfce4-panel-4.10 + >=xfce-base/xfconf-4.10" +DEPEND="${RDEPEND} + virtual/pkgconfig" + +pkg_setup() { + DOCS=( AUTHORS ChangeLog NEWS README TODO ) + XFCONF=( + --with-vala-api=${MY_VALA_VERSION} + ) +} + +src_prepare() { + xfconf_src_prepare + vala_src_prepare +}