blob: a59c113c87406cf31fc69ccacf94493ca729420c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-perl/POE/POE-0.23-r1.ebuild,v 1.13 2005/05/25 15:25:07 mcummings Exp $
IUSE="gtk tcltk libwww ncurses"
inherit perl-module
DESCRIPTION="A framework for creating multitasking programs in Perl"
HOMEPAGE="http://poe.perl.org"
SRC_URI="mirror://sourceforge/poe/${P}.tar.gz"
SLOT="0"
LICENSE="as-is"
KEYWORDS="x86 amd64 ppc sparc alpha"
DEPEND="${DEPEND}
dev-perl/Event
perl-core/Time-HiRes
dev-perl/Compress-Zlib
perl-core/Storable
dev-perl/IO-Tty
dev-perl/Filter
dev-perl/FreezeThaw
tcltk? ( dev-perl/perl-tk )
gtk? ( dev-perl/gtk-perl )
libwww? ( dev-perl/libwww-perl )
ncurses? ( dev-perl/Curses )"
mymake="/usr"
src_compile() {
echo "n" | perl-module_src_compile
}
|