diff options
author | Kent Fredric <kentfredric@gmail.com> | 2016-04-07 17:33:32 +1200 |
---|---|---|
committer | Andreas K. Hüttel <dilfridge@gentoo.org> | 2016-04-08 01:07:41 +0200 |
commit | 64ffa5c593fa88cbffe07eb44b5850a810e123a2 (patch) | |
tree | 931d962f5a9175c07973f08dc7c05d4251631512 /dev-perl/Proc-Simple/Proc-Simple-1.320.0.ebuild | |
parent | dev-perl/Proc-ProcessTable: Bump to version 0.530.0 (diff) | |
download | gentoo-64ffa5c593fa88cbffe07eb44b5850a810e123a2.tar.gz gentoo-64ffa5c593fa88cbffe07eb44b5850a810e123a2.tar.bz2 gentoo-64ffa5c593fa88cbffe07eb44b5850a810e123a2.zip |
dev-perl/Proc-Simple: Bump to version 1.320.0
- EAPI6
- Simplify DESCRIPTION
- added USE="test" and USE="examples"
Upstream:
- use safer open() calls.
Package-Manager: portage-2.2.28
Diffstat (limited to 'dev-perl/Proc-Simple/Proc-Simple-1.320.0.ebuild')
-rw-r--r-- | dev-perl/Proc-Simple/Proc-Simple-1.320.0.ebuild | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/dev-perl/Proc-Simple/Proc-Simple-1.320.0.ebuild b/dev-perl/Proc-Simple/Proc-Simple-1.320.0.ebuild new file mode 100644 index 000000000000..9c7c65b83a51 --- /dev/null +++ b/dev-perl/Proc-Simple/Proc-Simple-1.320.0.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +DIST_AUTHOR=MSCHILLI +DIST_VERSION=1.32 +inherit perl-module + +DESCRIPTION="Launch and control background processes" + +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86" +IUSE="test examples" + +RDEPEND="virtual/perl-IO" +DEPEND=" + virtual/perl-ExtUtils-MakeMaker + test? ( virtual/perl-Test-Simple ) +" + +src_install() { + perl-module_src_install + if use examples; then + docompress -x /usr/share/doc/${PF}/examples + docinto examples + dodoc -r eg/* + fi +} |