diff options
author | Michael Cummings <mcummings@gentoo.org> | 2007-01-03 13:21:30 +0000 |
---|---|---|
committer | Michael Cummings <mcummings@gentoo.org> | 2007-01-03 13:21:30 +0000 |
commit | 7cffdbdcb5e61972be0496f42434f1db43c0a08b (patch) | |
tree | 09ecdef9b65137991cc15b335829cd9fba306786 /app-portage | |
parent | Initial commit, ebuild based on the initial submission by Ryan Finnie <ryan@f... (diff) | |
download | gentoo-2-7cffdbdcb5e61972be0496f42434f1db43c0a08b.tar.gz gentoo-2-7cffdbdcb5e61972be0496f42434f1db43c0a08b.tar.bz2 gentoo-2-7cffdbdcb5e61972be0496f42434f1db43c0a08b.zip |
Version bump with bug fixes 157298, 158755, 157141, 99569, 104172, 147000, 155245
(Portage version: 2.1.2_rc4-r3)
Diffstat (limited to 'app-portage')
-rw-r--r-- | app-portage/g-cpan/ChangeLog | 11 | ||||
-rw-r--r-- | app-portage/g-cpan/files/digest-g-cpan-0.15_rc1 | 3 | ||||
-rw-r--r-- | app-portage/g-cpan/g-cpan-0.15_rc1.ebuild | 33 |
3 files changed, 45 insertions, 2 deletions
diff --git a/app-portage/g-cpan/ChangeLog b/app-portage/g-cpan/ChangeLog index 177f839ee365..09567b9006dc 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-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-portage/g-cpan/ChangeLog,v 1.25 2006/12/10 12:49:20 mcummings Exp $ +# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-portage/g-cpan/ChangeLog,v 1.26 2007/01/03 13:21:30 mcummings Exp $ + +*g-cpan-0.15_rc1 (03 Jan 2007) + + 03 Jan 2007; Michael Cummings <mcummings@gentoo.org> + +g-cpan-0.15_rc1.ebuild: + Version bump with bug fixes 157298, 158755, 157141, 99569, 104172, 147000, + 155245 *g-cpan-0.14.1_rc1 (10 Dec 2006) diff --git a/app-portage/g-cpan/files/digest-g-cpan-0.15_rc1 b/app-portage/g-cpan/files/digest-g-cpan-0.15_rc1 new file mode 100644 index 000000000000..710535a1124f --- /dev/null +++ b/app-portage/g-cpan/files/digest-g-cpan-0.15_rc1 @@ -0,0 +1,3 @@ +MD5 3fd59191f6ac81b610b39cd17d17cac6 g-cpan-0.15_rc1.tar.gz 27403 +RMD160 2e5a201cfe3fbbb93956ef34f22a7cbc1d5759c9 g-cpan-0.15_rc1.tar.gz 27403 +SHA256 b08fa36a58d38cfb53f48b50bccc5e35554fd18457357baecd69605da0a13465 g-cpan-0.15_rc1.tar.gz 27403 diff --git a/app-portage/g-cpan/g-cpan-0.15_rc1.ebuild b/app-portage/g-cpan/g-cpan-0.15_rc1.ebuild new file mode 100644 index 000000000000..b9b67e48d5ee --- /dev/null +++ b/app-portage/g-cpan/g-cpan-0.15_rc1.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2007 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.15_rc1.ebuild,v 1.1 2007/01/03 13:21:30 mcummings Exp $ + +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" + +LICENSE="|| ( Artistic GPL-2 )" +SLOT="0" +KEYWORDS="~amd64 ~sparc ~x86" +IUSE="" + +DEPEND="dev-lang/perl + dev-perl/yaml + 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." +} |