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 BE3C2138335 for ; Tue, 9 Apr 2019 16:09:19 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id ABD67E0943; Tue, 9 Apr 2019 16:09:18 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 7D1FAE0943 for ; Tue, 9 Apr 2019 16:09:18 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 712CB335D27 for ; Tue, 9 Apr 2019 16:09:17 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 53E1B5A4 for ; Tue, 9 Apr 2019 16:09:14 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1554826145.9a1e78b6bc749179f83d354f3c1efa1b244e5d8c.mgorny@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-r6.ebuild X-VCS-Directories: xfce-extra/xfce4-vala/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 9a1e78b6bc749179f83d354f3c1efa1b244e5d8c X-VCS-Branch: master Date: Tue, 9 Apr 2019 16:09:14 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 88b3131f-e283-4b5c-980c-f0e4d0b89852 X-Archives-Hash: b49298939aec7c6538342978d93c44e0 commit: 9a1e78b6bc749179f83d354f3c1efa1b244e5d8c Author: Michał Górny gentoo org> AuthorDate: Tue Apr 9 16:07:03 2019 +0000 Commit: Michał Górny gentoo org> CommitDate: Tue Apr 9 16:09:05 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9a1e78b6 xfce-extra/xfce4-vala: Support vala:0.42 (~arch) Signed-off-by: Michał Górny gentoo.org> xfce-extra/xfce4-vala/xfce4-vala-4.10.3-r6.ebuild | 40 +++++++++++++++++++++++ 1 file changed, 40 insertions(+) diff --git a/xfce-extra/xfce4-vala/xfce4-vala-4.10.3-r6.ebuild b/xfce-extra/xfce4-vala/xfce4-vala-4.10.3-r6.ebuild new file mode 100644 index 00000000000..2cd1fb8f4fe --- /dev/null +++ b/xfce-extra/xfce4-vala/xfce4-vala-4.10.3-r6.ebuild @@ -0,0 +1,40 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 +VALA_MIN_API_VERSION=0.42 +VALA_MAX_API_VERSION=${VALA_MIN_API_VERSION} +VALA_USE_DEPEND=vapigen +inherit vala + +DESCRIPTION="Vala bindings for the Xfce desktop environment" +HOMEPAGE="https://wiki.xfce.org/vala-bindings" +SRC_URI="https://archive.xfce.org/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" + +src_prepare() { + default +} + +src_configure() { + local myconf=( + "--with-vala-api=${VALA_MIN_API_VERSION}" + ) + + vala_src_prepare + econf "${myconf[@]}" +}