blob: 54381843312ce516bbcc8c7338852795c449726f (
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
35
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# 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.5 2003/03/25 22:07:35 seemant Exp $
IUSE="gtk tcltk libwww ncurses"
inherit perl-module
S=${WORKDIR}/${P}
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 ppc sparc alpha"
DEPEND="${DEPEND}
dev-perl/Event
dev-perl/Time-HiRes
dev-perl/Compress-Zlib
dev-perl/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
}
|