blob: 2acd68faa327011f462cd2f1b73e8c4179a81445 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=5
WX_GTK_VER="3.0"
MODULE_AUTHOR=MDOOTSON
MODULE_VERSION=0.32
inherit wxwidgets perl-module
DESCRIPTION="access IO of external processes via events"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
RDEPEND="
x11-libs/wxGTK:${WX_GTK_VER}
>=dev-perl/Wx-0.97.01"
DEPEND="${RDEPEND}"
#SRC_TEST=do
src_prepare() {
need-wxwidgets unicode
perl-module_src_prepare
}
|