diff options
author | 2009-01-13 19:37:28 +0000 | |
---|---|---|
committer | 2009-01-13 19:37:28 +0000 | |
commit | b6bdcd967926d0df23aef45eb63a8f62c524233d (patch) | |
tree | d0322663b762cc1fc2f6a2e860fcee9890381329 /dev-perl/Curses | |
parent | Remove old ebuilds with known vulnerabilities. (diff) | |
download | gentoo-2-b6bdcd967926d0df23aef45eb63a8f62c524233d.tar.gz gentoo-2-b6bdcd967926d0df23aef45eb63a8f62c524233d.tar.bz2 gentoo-2-b6bdcd967926d0df23aef45eb63a8f62c524233d.zip |
Version bump.
(Portage version: 2.2_rc20/cvs/Linux 2.6.28-05718-g0556e82 x86_64)
Diffstat (limited to 'dev-perl/Curses')
-rw-r--r-- | dev-perl/Curses/ChangeLog | 9 | ||||
-rw-r--r-- | dev-perl/Curses/Curses-1.26.ebuild | 31 |
2 files changed, 38 insertions, 2 deletions
diff --git a/dev-perl/Curses/ChangeLog b/dev-perl/Curses/ChangeLog index 0753b47305b8..a1b439b2d9ec 100644 --- a/dev-perl/Curses/ChangeLog +++ b/dev-perl/Curses/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-perl/Curses -# Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-perl/Curses/ChangeLog,v 1.46 2008/12/08 02:09:07 robbat2 Exp $ +# Copyright 2002-2009 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-perl/Curses/ChangeLog,v 1.47 2009/01/13 19:37:28 robbat2 Exp $ + +*Curses-1.26 (13 Jan 2009) + + 13 Jan 2009; Robin H. Johnson <robbat2@gentoo.org> +Curses-1.26.ebuild: + Version bump. *Curses-1.24 (08 Dec 2008) diff --git a/dev-perl/Curses/Curses-1.26.ebuild b/dev-perl/Curses/Curses-1.26.ebuild new file mode 100644 index 000000000000..74d430cb9f70 --- /dev/null +++ b/dev-perl/Curses/Curses-1.26.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-perl/Curses/Curses-1.26.ebuild,v 1.1 2009/01/13 19:37:28 robbat2 Exp $ + +inherit perl-module eutils + +DESCRIPTION="Curses interface modules for Perl" +HOMEPAGE="http://search.cpan.org/~giraffed/" +SRC_URI="mirror://cpan/authors/id/G/GI/GIRAFFED/${P}.tgz" + +LICENSE="Artistic" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86" +IUSE="" + +DEPEND=">=sys-libs/ncurses-5 + dev-lang/perl" + +SRC_TEST="do" + +myconf="${myconf} GEN PANELS MENUS" + +#This patch may or may not be backwards compatible with perl-5.6.1 +#Add gaurd as necessary... +src_unpack() { + unpack ${A} + cd "${S}" + #epatch "${FILESDIR}"/Curses-1.08-p5.8-fixes.diff + einfo "Copying hints/c-linux.ncurses.h to c-config.h" + cp hints/c-linux.ncurses.h c-config.h || die "Failed to set up hints" +} |