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-trayicon/
Date: Tue, 24 Oct 2017 02:43:25
Message-Id: 1508812725.855939d399cb59befe657c96fa83e78c2ac85559.kentnl@gentoo
1 commit: 855939d399cb59befe657c96fa83e78c2ac85559
2 Author: Kent Fredric <kentnl <AT> gentoo <DOT> org>
3 AuthorDate: Tue Oct 24 02:38:45 2017 +0000
4 Commit: Kent Fredric <kentnl <AT> gentoo <DOT> org>
5 CommitDate: Tue Oct 24 02:38:45 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=855939d3
7
8 dev-perl/gtk2-trayicon: 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-trayicon/gtk2-trayicon-0.60.0-r2.ebuild | 32 ++++++++++++++++++++++
17 1 file changed, 32 insertions(+)
18
19 diff --git a/dev-perl/gtk2-trayicon/gtk2-trayicon-0.60.0-r2.ebuild b/dev-perl/gtk2-trayicon/gtk2-trayicon-0.60.0-r2.ebuild
20 new file mode 100644
21 index 00000000000..baa19f488d0
22 --- /dev/null
23 +++ b/dev-perl/gtk2-trayicon/gtk2-trayicon-0.60.0-r2.ebuild
24 @@ -0,0 +1,32 @@
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=BORUP
31 +DIST_VERSION=0.06
32 +DIST_NAME=Gtk2-TrayIcon
33 +DIST_EXAMPLES=("examples/*")
34 +inherit perl-module virtualx
35 +
36 +DESCRIPTION="Perl wrappers for the egg cup Gtk2::TrayIcon utilities"
37 +HOMEPAGE="http://gtk2-perl.sf.net/ ${HOMEPAGE}"
38 +
39 +LICENSE="LGPL-2"
40 +SLOT="0"
41 +KEYWORDS="~amd64 ~ia64 ~ppc ~sparc ~x86"
42 +IUSE=""
43 +
44 +RDEPEND="
45 + >=dev-perl/glib-perl-1.012
46 + >=dev-perl/Gtk2-1.012
47 + gnome-base/libglade:2.0
48 + x11-libs/gtk+:2"
49 +DEPEND="${RDEPEND}
50 + dev-perl/ExtUtils-Depends
51 + dev-perl/ExtUtils-PkgConfig
52 + virtual/pkgconfig"
53 +
54 +src_test() {
55 + virtx perl-module_src_test
56 +}