Gentoo Archives: gentoo-commits

From: Kent Fredric <kentnl@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-perl/gtk2-gladexml/
Date: Tue, 24 Oct 2017 02:43:24
Message-Id: 1508812212.c214ed27b9b53742b297db544a34d9a274215eff.kentnl@gentoo
1 commit: c214ed27b9b53742b297db544a34d9a274215eff
2 Author: Kent Fredric <kentnl <AT> gentoo <DOT> org>
3 AuthorDate: Tue Oct 24 02:30:12 2017 +0000
4 Commit: Kent Fredric <kentnl <AT> gentoo <DOT> org>
5 CommitDate: Tue Oct 24 02:30:12 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c214ed27
7
8 dev-perl/gtk2-gladexml: Enable tests
9
10 - EAPI6
11 - Enable tests (X11)
12 - Add USE=examples
13
14 Package-Manager: Portage-2.3.8, Repoman-2.3.3
15
16 .../gtk2-gladexml/gtk2-gladexml-1.7.0-r2.ebuild | 30 ++++++++++++++++++++++
17 1 file changed, 30 insertions(+)
18
19 diff --git a/dev-perl/gtk2-gladexml/gtk2-gladexml-1.7.0-r2.ebuild b/dev-perl/gtk2-gladexml/gtk2-gladexml-1.7.0-r2.ebuild
20 new file mode 100644
21 index 00000000000..9a671bdc484
22 --- /dev/null
23 +++ b/dev-perl/gtk2-gladexml/gtk2-gladexml-1.7.0-r2.ebuild
24 @@ -0,0 +1,30 @@
25 +# Copyright 1999-2017 Gentoo Foundation
26 +# Distributed under the terms of the GNU General Public License v2
27 +
28 +EAPI=6
29 +
30 +DIST_NAME=Gtk2-GladeXML
31 +DIST_AUTHOR=TSCH
32 +DIST_VERSION=1.007
33 +DIST_EXAMPLES=("examples/*")
34 +inherit perl-module virtualx
35 +
36 +DESCRIPTION="Create user interfaces directly from Glade XML files"
37 +HOMEPAGE="http://gtk2-perl.sf.net/ ${HOMEPAGE}"
38 +
39 +SLOT="0"
40 +LICENSE="LGPL-2"
41 +KEYWORDS="~alpha ~amd64 ~ppc ~ppc64 ~x86"
42 +IUSE=""
43 +
44 +RDEPEND="x11-libs/gtk+:2
45 + gnome-base/libglade:2.0
46 + >=dev-perl/glib-perl-1.020
47 + >=dev-perl/Gtk2-1.012"
48 +DEPEND="${RDEPEND}
49 + >=dev-perl/ExtUtils-Depends-0.300
50 + dev-perl/ExtUtils-PkgConfig"
51 +
52 +src_test() {
53 + virtx perl-module_src_test
54 +}