Gentoo Archives: gentoo-commits

From: Sobhan Mohammadpour <sobhan@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/gnome:master commit in: x11-libs/tepl/
Date: Mon, 31 Dec 2018 20:22:10
Message-Id: 1546280392.f192653418cafd0b7c1bbbcabf4ae1692f2250bb.sobhan@gentoo
1 commit: f192653418cafd0b7c1bbbcabf4ae1692f2250bb
2 Author: Sobhan Mohammadpour <sobhan <AT> gentoo <DOT> org>
3 AuthorDate: Mon Dec 31 18:19:52 2018 +0000
4 Commit: Sobhan Mohammadpour <sobhan <AT> gentoo <DOT> org>
5 CommitDate: Mon Dec 31 18:19:52 2018 +0000
6 URL: https://gitweb.gentoo.org/proj/gnome.git/commit/?id=f1926534
7
8 x11-libs/tepl: bump to 4.2.0
9
10 Package-Manager: Portage-2.3.52, Repoman-2.3.12
11 Manifest-Sign-Key: 0x7DF238CF0AA182E1
12 Signed-off-by: Sobhan Mohammadpour <sobhan <AT> gentoo.org>
13
14 x11-libs/tepl/tepl-4.2.0.ebuild | 51 +++++++++++++++++++++++++++++++++++++++++
15 1 file changed, 51 insertions(+)
16
17 diff --git a/x11-libs/tepl/tepl-4.2.0.ebuild b/x11-libs/tepl/tepl-4.2.0.ebuild
18 new file mode 100644
19 index 00000000..3c963606
20 --- /dev/null
21 +++ b/x11-libs/tepl/tepl-4.2.0.ebuild
22 @@ -0,0 +1,51 @@
23 +# Copyright 1999-2018 Gentoo Authors
24 +# Distributed under the terms of the GNU General Public License v2
25 +
26 +EAPI=6
27 +
28 +inherit gnome2 virtualx
29 +
30 +DESCRIPTION="GtkSourceView-based text editors and IDE helper library"
31 +HOMEPAGE="https://wiki.gnome.org/Projects/Gtef"
32 +
33 +LICENSE="LGPL-2.1+"
34 +SLOT="3"
35 +KEYWORDS="~amd64 ~x86"
36 +IUSE="+introspection test"
37 +
38 +RDEPEND="
39 + >=dev-libs/glib-2.52:2
40 + >=x11-libs/gtk+-3.22
41 + x11-libs/gtksourceview:4
42 + >=dev-libs/libxml2-2.5
43 + app-i18n/uchardet
44 + introspection? ( >=dev-libs/gobject-introspection-1.42:= )
45 + x11-libs/amtk
46 +"
47 +DEPEND="${DEPEND}
48 + test? ( dev-util/valgrind )
49 + >=sys-devel/gettext-0.19.4
50 + >=dev-util/gtk-doc-am-1.25
51 + virtual/pkgconfig
52 +"
53 +
54 +src_prepare() {
55 + # requires running gvfs-metadata
56 + sed -e 's:\(g_test_add_func.*/file/load_save_metadata_sync.*\):/*\1*/:' \
57 + -e 's:\(g_test_add_func.*/file/load_save_metadata_async.*\):/*\1*/:' \
58 + -e 's:\(g_test_add_func.*/file/set_without_load.*\):/*\1*/:' \
59 + -i testsuite/test-file-metadata.c || die
60 +
61 + gnome2_src_prepare
62 +}
63 +
64 +src_configure() {
65 + gnome2_src_configure \
66 + --enable-gvfs-metadata \
67 + $(use_enable introspection) \
68 + $(use_enable test valgrind)
69 +}
70 +
71 +src_test() {
72 + virtx emake check
73 +}