blob: e051e540deb9ec57102dda98e31cce9142813781 (
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
|
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-irc/irssi/irssi-0.8.6.ebuild,v 1.1 2002/11/19 18:39:13 blizzy Exp $
IUSE="nls ipv6 perl"
inherit perl-module
S=${WORKDIR}/${P}
DESCRIPTION="A modular textUI IRC client with IPv6 support."
SRC_URI="http://irssi.org/files/${P}.tar.bz2"
HOMEPAGE="http://irssi.org/"
DEPEND="=dev-libs/glib-1.2*
sys-libs/ncurses
perl? ( sys-devel/perl )"
#socks? ( >=net-misc/dante-1.1.13 )
RDEPEND="nls? ( sys-devel/gettext )"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="~x86 ~ppc ~sparc ~sparc64"
src_compile() {
# Note: there is an option to build a GUI for irssi, but according
# to the website the GUI is no longer developed, so that option is
# not used here.
# Edit these if you like
myconf="--without-servertest --with-bot --with-proxy --with-ncurses"
use nls || myconf="${myconf} --disable-nls"
#perl is auto-detected and must be explicitly disabled
use perl || myconf="${myconf} --with-perl=no"
#ipv6 needs to be explicitly enabled
use ipv6 && myconf="${myconf} --enable-ipv6"
#socks needs to be explicitly enabled
#use socks && myconf="${myconf} --with-socks"
./configure \
--host=${CHOST} \
--prefix=/usr \
--infodir=/usr/share/info \
--mandir=/usr/share/man \
--sysconfdir=/etc \
${myconf} || die "./configure failed"
emake || die
}
src_install() {
myflags=""
use perl && ( \
cd ${S}/src/perl/common
perl-module_src_prep
cd ${S}/src/perl/irc
perl-module_src_prep
cd ${S}/src/perl/textui
perl-module_src_prep
cd ${S}/src/perl/ui
perl-module_src_prep
cd ${S}
)
make DESTDIR=${D} \
PREFIX=${D}/usr \
docdir=/usr/share/doc/${PF} \
gnulocaledir=${D}/usr/share/locale \
${myflags} \
install || die
prepalldocs
dodoc AUTHORS ChangeLog README TODO NEWS
}
|