blob: 65da1fc5471d75b27aace240812c7f80ca7de745 (
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
28
29
30
31
|
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=5
MODULE_AUTHOR=FLORA
inherit perl-module virtualx
DESCRIPTION="A perl interface to the notification library"
LICENSE="LGPL-2"
SLOT="0"
KEYWORDS="amd64 x86"
IUSE="test"
RDEPEND="dev-perl/glib-perl
dev-perl/Gtk2
>=x11-libs/libnotify-0.7"
DEPEND="${RDEPEND}
dev-perl/ExtUtils-Depends
dev-perl/ExtUtils-PkgConfig
test? ( dev-perl/Test-Exception )"
SRC_TEST="do"
PATCHES=( "${FILESDIR}"/${P}-libnotify.patch )
src_test() {
VIRTUALX_COMMAND="perl-module_src_test" virtualmake #416729
}
|