summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTorsten Veller <tove@gentoo.org>2011-01-14 18:28:28 +0000
committerTorsten Veller <tove@gentoo.org>2011-01-14 18:28:28 +0000
commitcab7553508ecde5f9293d6e35644b9b8afd89f97 (patch)
tree3900a6508fcfe051606471c0c1160cebca43b84c /dev-perl/Curses
parentCleanup (diff)
downloadgentoo-2-cab7553508ecde5f9293d6e35644b9b8afd89f97.tar.gz
gentoo-2-cab7553508ecde5f9293d6e35644b9b8afd89f97.tar.bz2
gentoo-2-cab7553508ecde5f9293d6e35644b9b8afd89f97.zip
Cleanup
(Portage version: 2.2.0_alpha15/cvs/Linux x86_64)
Diffstat (limited to 'dev-perl/Curses')
-rw-r--r--dev-perl/Curses/ChangeLog8
-rw-r--r--dev-perl/Curses/Curses-1.15.ebuild31
-rw-r--r--dev-perl/Curses/Curses-1.27.ebuild39
3 files changed, 6 insertions, 72 deletions
diff --git a/dev-perl/Curses/ChangeLog b/dev-perl/Curses/ChangeLog
index 643747ab3294..da2d84aca5da 100644
--- a/dev-perl/Curses/ChangeLog
+++ b/dev-perl/Curses/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for dev-perl/Curses
-# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-perl/Curses/ChangeLog,v 1.58 2010/11/05 13:56:50 ssuominen Exp $
+# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-perl/Curses/ChangeLog,v 1.59 2011/01/14 18:28:28 tove Exp $
+
+ 14 Jan 2011; Torsten Veller <tove@gentoo.org> -Curses-1.15.ebuild,
+ -Curses-1.27.ebuild:
+ Cleanup
05 Nov 2010; Samuli Suominen <ssuominen@gentoo.org> Curses-1.28.ebuild:
ppc64 stable wrt #341865
diff --git a/dev-perl/Curses/Curses-1.15.ebuild b/dev-perl/Curses/Curses-1.15.ebuild
deleted file mode 100644
index fc827be7026f..000000000000
--- a/dev-perl/Curses/Curses-1.15.ebuild
+++ /dev/null
@@ -1,31 +0,0 @@
-# Copyright 1999-2008 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-perl/Curses/Curses-1.15.ebuild,v 1.9 2008/03/19 02:53:14 jer 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
-}
diff --git a/dev-perl/Curses/Curses-1.27.ebuild b/dev-perl/Curses/Curses-1.27.ebuild
deleted file mode 100644
index 4c1e33db3d22..000000000000
--- a/dev-perl/Curses/Curses-1.27.ebuild
+++ /dev/null
@@ -1,39 +0,0 @@
-# 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.27.ebuild,v 1.1 2009/05/07 09:31:15 tove Exp $
-
-EAPI=2
-
-MODULE_AUTHOR=GIRAFFED
-MODULE_A=${P}.tgz
-inherit perl-module
-
-DESCRIPTION="Curses interface modules for Perl"
-
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
-IUSE="unicode"
-
-DEPEND=">=sys-libs/ncurses-5[unicode?]"
-RDEPEND="${DEPEND}"
-
-SRC_TEST="do"
-
-my_curses_version() {
- echo ncurses$(use unicode && echo w)
-}
-
-pkg_setup() {
- myconf="${myconf} FORMS PANELS MENUS"
- mydoc=HISTORY
- export CURSES_LIBTYPE=$(my_curses_version)
- export CURSES_LDFLAGS=$($(my_curses_version)5-config --libs)
- export CURSES_CFLAGS=$( $(my_curses_version)5-config --cflags)
-}
-
-src_configure(){
- perl-module_src_configure
- if ! use unicode ; then
- sed -i 's:<form.h>:"/usr/include/form.h":' "${S}"/c-config.h || die
- fi
-}