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-ImageView/
Date: Tue, 24 Oct 2017 02:43:21
Message-Id: 1508809727.d3c18989343d3a94b014210a9d0aba890b889681.kentnl@gentoo
1 commit: d3c18989343d3a94b014210a9d0aba890b889681
2 Author: Kent Fredric <kentnl <AT> gentoo <DOT> org>
3 AuthorDate: Tue Oct 24 01:48:07 2017 +0000
4 Commit: Kent Fredric <kentnl <AT> gentoo <DOT> org>
5 CommitDate: Tue Oct 24 01:48:47 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d3c18989
7
8 dev-perl/Gtk2-ImageView: Enable tests
9
10 - EAPI6
11 - Enable tests
12 - Add USE=examples
13
14 Package-Manager: Portage-2.3.8, Repoman-2.3.3
15
16 .../Gtk2-ImageView/Gtk2-ImageView-0.50.0-r2.ebuild | 28 ++++++++++++++++++++++
17 1 file changed, 28 insertions(+)
18
19 diff --git a/dev-perl/Gtk2-ImageView/Gtk2-ImageView-0.50.0-r2.ebuild b/dev-perl/Gtk2-ImageView/Gtk2-ImageView-0.50.0-r2.ebuild
20 new file mode 100644
21 index 00000000000..fe51cef7515
22 --- /dev/null
23 +++ b/dev-perl/Gtk2-ImageView/Gtk2-ImageView-0.50.0-r2.ebuild
24 @@ -0,0 +1,28 @@
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_AUTHOR=RATCLIFFE
31 +DIST_VERSION=0.05
32 +DIST_EXAMPLES=( "examples/*" )
33 +inherit perl-module virtualx
34 +
35 +DESCRIPTION="Perl binding for the GtkImageView image viewer widget"
36 +
37 +LICENSE="LGPL-3"
38 +SLOT="0"
39 +KEYWORDS="~amd64 ~x86"
40 +IUSE=""
41 +
42 +RDEPEND="dev-perl/Gtk2
43 + >=media-gfx/gtkimageview-1.6.3"
44 +DEPEND="${RDEPEND}
45 + dev-perl/glib-perl
46 + >=dev-perl/ExtUtils-Depends-0.300
47 + >=dev-perl/ExtUtils-PkgConfig-1.030"
48 +
49 +src_test(){
50 + perl_rm_files t/pod.t
51 + virtx perl-module_src_test
52 +}