diff options
author | 2017-11-02 10:59:31 +1300 | |
---|---|---|
committer | 2017-11-02 10:59:51 +1300 | |
commit | 953e83bfd1b6d36a01ef6fc4e809a8650a84b37b (patch) | |
tree | 685eec70c8fe3e2accf1d11c8325b0500096b86a /dev-perl/Module-Build-XSUtil/Module-Build-XSUtil-0.180.0.ebuild | |
parent | dev-perl/Module-Signature: Bump to version 0.810.0 (diff) | |
download | gentoo-953e83bfd1b6d36a01ef6fc4e809a8650a84b37b.tar.gz gentoo-953e83bfd1b6d36a01ef6fc4e809a8650a84b37b.tar.bz2 gentoo-953e83bfd1b6d36a01ef6fc4e809a8650a84b37b.zip |
dev-perl/Module-Build-XSUtil: Bump to version 0.180.0
Upstream:
- Support pure-perl build
Package-Manager: Portage-2.3.8, Repoman-2.3.3
Diffstat (limited to 'dev-perl/Module-Build-XSUtil/Module-Build-XSUtil-0.180.0.ebuild')
-rw-r--r-- | dev-perl/Module-Build-XSUtil/Module-Build-XSUtil-0.180.0.ebuild | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/dev-perl/Module-Build-XSUtil/Module-Build-XSUtil-0.180.0.ebuild b/dev-perl/Module-Build-XSUtil/Module-Build-XSUtil-0.180.0.ebuild new file mode 100644 index 000000000000..e46ec575ccb3 --- /dev/null +++ b/dev-perl/Module-Build-XSUtil/Module-Build-XSUtil-0.180.0.ebuild @@ -0,0 +1,46 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +DIST_AUTHOR=HIDEAKIO +DIST_VERSION=0.18 +inherit perl-module + +DESCRIPTION="A Module::Build class for building XS modules" + +SLOT="0" +KEYWORDS="~amd64 ~hppa ~ppc ~x86" +IUSE="test examples" +# File::Basename -> perl +RDEPEND=" + dev-perl/Devel-CheckCompiler + virtual/perl-Devel-PPPort + virtual/perl-Exporter + virtual/perl-ExtUtils-CBuilder + virtual/perl-File-Path + virtual/perl-XSLoader + virtual/perl-parent +" +# File::Spec::Functions -> virtual/perl-File-Spec +# Test::More -> perl-Test-Simple +DEPEND=" + >=dev-perl/Module-Build-0.400.500 + ${RDEPEND} + test? ( + dev-perl/Capture-Tiny + dev-perl/Cwd-Guard + dev-perl/File-Copy-Recursive + virtual/perl-File-Spec + virtual/perl-File-Temp + >=virtual/perl-Test-Simple-0.980.0 + ) +" +src_install() { + perl-module_src_install + if use examples; then + docompress -x usr/share/doc/${PF}/eg/ + insinto usr/share/doc/${PF} + doins -r eg + fi +} |