Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: xfce-extra/xfce4-vala/
Date: Tue, 09 Apr 2019 16:09:17
Message-Id: 1554826142.c9379cfd4385b5038edcdc64d8ca6ca9c1d021e5.mgorny@gentoo
1 commit: c9379cfd4385b5038edcdc64d8ca6ca9c1d021e5
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Tue Apr 9 15:07:39 2019 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Tue Apr 9 16:09:02 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c9379cfd
7
8 xfce-extra/xfce4-vala: Bump to EAPI 7, port off xfconf
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 xfce-extra/xfce4-vala/xfce4-vala-4.10.3-r4.ebuild | 40 +++++++++++++++++++++++
13 1 file changed, 40 insertions(+)
14
15 diff --git a/xfce-extra/xfce4-vala/xfce4-vala-4.10.3-r4.ebuild b/xfce-extra/xfce4-vala/xfce4-vala-4.10.3-r4.ebuild
16 new file mode 100644
17 index 00000000000..e2874c8d21e
18 --- /dev/null
19 +++ b/xfce-extra/xfce4-vala/xfce4-vala-4.10.3-r4.ebuild
20 @@ -0,0 +1,40 @@
21 +# Copyright 1999-2019 Gentoo Authors
22 +# Distributed under the terms of the GNU General Public License v2
23 +
24 +EAPI=7
25 +VALA_MIN_API_VERSION=0.32
26 +VALA_MAX_API_VERSION=${VALA_MIN_API_VERSION}
27 +VALA_USE_DEPEND=vapigen
28 +inherit vala
29 +
30 +DESCRIPTION="Vala bindings for the Xfce desktop environment"
31 +HOMEPAGE="https://wiki.xfce.org/vala-bindings"
32 +SRC_URI="https://archive.xfce.org/src/bindings/${PN}/${PV%.*}/${P}.tar.bz2"
33 +
34 +LICENSE="LGPL-2.1+"
35 +SLOT="0"
36 +KEYWORDS="~amd64 ~x86"
37 +IUSE=""
38 +
39 +RDEPEND="$(vala_depend)
40 + >=xfce-base/exo-0.10:=
41 + >=xfce-base/garcon-0.2:=
42 + >=xfce-base/libxfce4ui-4.10:=
43 + >=xfce-base/libxfce4util-4.10:=
44 + >=xfce-base/xfce4-panel-4.10:=
45 + >=xfce-base/xfconf-4.10:="
46 +DEPEND="${RDEPEND}
47 + virtual/pkgconfig"
48 +
49 +src_prepare() {
50 + default
51 +}
52 +
53 +src_configure() {
54 + local myconf=(
55 + "--with-vala-api=${VALA_MIN_API_VERSION}"
56 + )
57 +
58 + vala_src_prepare
59 + econf "${myconf[@]}"
60 +}