diff options
author | Robin H. Johnson <robbat2@gentoo.org> | 2011-01-24 05:10:54 +0000 |
---|---|---|
committer | Robin H. Johnson <robbat2@gentoo.org> | 2011-01-24 05:10:54 +0000 |
commit | b76931eb681c10314cc0e6bc4faa7620456d4f36 (patch) | |
tree | 7b70dccf245308df207fecc9fbc65635ac5a05bb /app-portage | |
parent | marking stable x86/amd64 (only provides one file, ack from base-system team) (diff) | |
download | gentoo-2-b76931eb681c10314cc0e6bc4faa7620456d4f36.tar.gz gentoo-2-b76931eb681c10314cc0e6bc4faa7620456d4f36.tar.bz2 gentoo-2-b76931eb681c10314cc0e6bc4faa7620456d4f36.zip |
New release. Fixes bugs #313049 (distfile ext detection), #349329 (existence of overlay directories), #344631, #339889 (underscores in package names), #338116 (configure_requires dependencies).
(Portage version: 2.2.0_alpha18/cvs/Linux x86_64)
Diffstat (limited to 'app-portage')
-rw-r--r-- | app-portage/g-cpan/ChangeLog | 11 | ||||
-rw-r--r-- | app-portage/g-cpan/g-cpan-0.16.3.ebuild | 38 |
2 files changed, 47 insertions, 2 deletions
diff --git a/app-portage/g-cpan/ChangeLog b/app-portage/g-cpan/ChangeLog index 34eebf9f2f35..d4963ffc1fcf 100644 --- a/app-portage/g-cpan/ChangeLog +++ b/app-portage/g-cpan/ChangeLog @@ -1,6 +1,13 @@ # ChangeLog for app-portage/g-cpan -# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-portage/g-cpan/ChangeLog,v 1.61 2010/10/23 09:00:05 ssuominen Exp $ +# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-portage/g-cpan/ChangeLog,v 1.62 2011/01/24 05:10:54 robbat2 Exp $ + +*g-cpan-0.16.3 (24 Jan 2011) + + 24 Jan 2011; Robin H. Johnson <robbat2@gentoo.org> +g-cpan-0.16.3.ebuild: + New release. Fixes bugs #313049 (distfile ext detection), #349329 (existence + of overlay directories), #344631, #339889 (underscores in package names), + #338116 (configure_requires dependencies). 23 Oct 2010; Samuli Suominen <ssuominen@gentoo.org> g-cpan-0.16.2.ebuild: ppc64 stable wrt #337981 diff --git a/app-portage/g-cpan/g-cpan-0.16.3.ebuild b/app-portage/g-cpan/g-cpan-0.16.3.ebuild new file mode 100644 index 000000000000..45db593a447b --- /dev/null +++ b/app-portage/g-cpan/g-cpan-0.16.3.ebuild @@ -0,0 +1,38 @@ +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-portage/g-cpan/g-cpan-0.16.3.ebuild,v 1.1 2011/01/24 05:10:54 robbat2 Exp $ + +EAPI=2 + +inherit perl-module + +DESCRIPTION="g-cpan: generate and install CPAN modules using portage" +HOMEPAGE="http://www.gentoo.org/proj/en/perl/g-cpan.xml" +SRC_URI="mirror://gentoo/${P}.tar.gz + http://dev.gentoo.org/~robbat2/distfiles/${P}.tar.gz" + +LICENSE="|| ( Artistic GPL-2 )" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86" +IUSE="" + +DEPEND="dev-lang/perl + >=dev-perl/yaml-0.60 + dev-perl/Shell-EnvImporter + dev-perl/Log-Agent" + +src_install() { + perl-module_src_install + diropts "-m0755" + dodir "/var/tmp/g-cpan" + keepdir "/var/tmp/g-cpan" + dodir "/var/log/g-cpan" + keepdir "/var/log/g-cpan" +} + +pkg_postinst() { + elog "You may wish to adjust the permissions on /var/tmp/g-cpan" + elog "if you have users besides root expecting to use g-cpan." + einfo "Please note that some CPAN packages need additional manual" + einfo "parameters or tweaking, due to bugs in their build systems." +} |