2013-09-09 02:52:03 +04:00
|
|
|
# Copyright 1999-2013 Gentoo Foundation
|
|
|
|
# Distributed under the terms of the GNU General Public License v2
|
2015-08-11 00:17:55 +03:00
|
|
|
# $Id$
|
2013-09-09 02:52:03 +04:00
|
|
|
|
|
|
|
EAPI=5
|
|
|
|
|
|
|
|
MODULE_AUTHOR=SKONNO
|
|
|
|
inherit perl-module
|
|
|
|
|
|
|
|
DESCRIPTION="Perl extension for UPnP"
|
|
|
|
|
|
|
|
LICENSE="BSD"
|
|
|
|
SLOT="0"
|
2013-12-27 19:32:18 +04:00
|
|
|
KEYWORDS="amd64 ppc x86 ~x86-solaris"
|
2013-09-09 02:52:03 +04:00
|
|
|
# Package warrants IUSE examples
|
|
|
|
IUSE=""
|
|
|
|
|
|
|
|
RDEPEND="virtual/perl-version"
|
|
|
|
DEPEND="${RDEPEND}"
|
|
|
|
|
|
|
|
SRC_TEST=do
|
|
|
|
|
|
|
|
src_install() {
|
|
|
|
perl-module_src_install
|
2013-09-14 19:24:11 +04:00
|
|
|
dodir usr/share/doc/${PF}/examples
|
2013-09-09 02:52:03 +04:00
|
|
|
docompress -x usr/share/doc/${PF}/examples
|
|
|
|
insinto usr/share/doc/${PF}/
|
|
|
|
doins -r examples/
|
|
|
|
}
|