Gentoo Archives: gentoo-commits

From: "Torsten Veller (tove)" <tove@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-perl/Curses: ChangeLog Curses-1.28.ebuild
Date: Fri, 29 Jan 2010 14:54:27
Message-Id: E1NasEm-0004cu-TW@stork.gentoo.org
1 tove 10/01/29 14:54:20
2
3 Modified: ChangeLog
4 Added: Curses-1.28.ebuild
5 Log:
6 Version bump
7 (Portage version: 2.2_rc61/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.51 dev-perl/Curses/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-perl/Curses/ChangeLog?rev=1.51&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-perl/Curses/ChangeLog?rev=1.51&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-perl/Curses/ChangeLog?r1=1.50&r2=1.51
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-perl/Curses/ChangeLog,v
19 retrieving revision 1.50
20 retrieving revision 1.51
21 diff -u -r1.50 -r1.51
22 --- ChangeLog 3 Jun 2009 16:33:58 -0000 1.50
23 +++ ChangeLog 29 Jan 2010 14:54:20 -0000 1.51
24 @@ -1,6 +1,11 @@
25 # ChangeLog for dev-perl/Curses
26 -# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-perl/Curses/ChangeLog,v 1.50 2009/06/03 16:33:58 tove Exp $
28 +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/dev-perl/Curses/ChangeLog,v 1.51 2010/01/29 14:54:20 tove Exp $
30 +
31 +*Curses-1.28 (29 Jan 2010)
32 +
33 + 29 Jan 2010; Torsten Veller <tove@g.o> +Curses-1.28.ebuild:
34 + Version bump
35
36 03 Jun 2009; Torsten Veller <tove@g.o> -Curses-1.26.ebuild:
37 Cleanup
38
39
40
41 1.1 dev-perl/Curses/Curses-1.28.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-perl/Curses/Curses-1.28.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-perl/Curses/Curses-1.28.ebuild?rev=1.1&content-type=text/plain
45
46 Index: Curses-1.28.ebuild
47 ===================================================================
48 # Copyright 1999-2010 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/dev-perl/Curses/Curses-1.28.ebuild,v 1.1 2010/01/29 14:54:20 tove Exp $
51
52 EAPI=2
53
54 MODULE_AUTHOR=GIRAFFED
55 MODULE_A=${P}.tgz
56 inherit perl-module
57
58 DESCRIPTION="Curses interface modules for Perl"
59
60 SLOT="0"
61 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
62 IUSE="unicode"
63
64 DEPEND=">=sys-libs/ncurses-5[unicode?]"
65 RDEPEND="${DEPEND}"
66
67 SRC_TEST="do"
68
69 my_curses_version() {
70 echo ncurses$(use unicode && echo w)
71 }
72
73 pkg_setup() {
74 myconf="${myconf} FORMS PANELS MENUS"
75 mydoc=HISTORY
76 export CURSES_LIBTYPE=$(my_curses_version)
77 export CURSES_LDFLAGS=$($(my_curses_version)5-config --libs)
78 export CURSES_CFLAGS=$( $(my_curses_version)5-config --cflags)
79 }
80
81 src_configure(){
82 perl-module_src_configure
83 if ! use unicode ; then
84 sed -i 's:<form.h>:"/usr/include/form.h":' "${S}"/c-config.h || die
85 fi
86 }