blob: b80caebf7ac9b86d177c75a2067e777d9ab873bb (
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
79
80
81
82
83
84
85
86
87
88
89
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-irc/irssi/irssi-0.8.10_rc5-r1.ebuild,v 1.5 2005/04/22 21:02:08 mrness Exp $
inherit perl-module eutils
MY_P="${P//_/-}"
DESCRIPTION="A modular textUI IRC client with IPv6 support"
HOMEPAGE="http://irssi.org/"
SRC_URI="http://irssi.org/files/${MY_P}.tar.gz
mirror://gentoo/${P}-CVS-20050121.patch.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86"
IUSE="nls ipv6 perl ssl socks5"
RDEPEND="!net-irc/irssi-cvs
>=dev-libs/glib-2.2.1
sys-libs/ncurses
ssl? ( dev-libs/openssl )
perl? ( dev-lang/perl )
socks5? ( >=net-proxy/dante-1.1.13 )"
DEPEND="${RDEPEND}
nls? ( sys-devel/gettext )
>=sys-apps/sed-4"
S=${WORKDIR}/${MY_P}
src_unpack() {
unpack ${A}
cd ${S}
# Ugly hack to work around compression of the html files.
# Remove this if prepalldocs is changed to avoid gzipping html files.
sed -i \
-e 's/[^ ]\+\.html//g' docs/Makefile.in || \
die "sed doc/Makefile.in failed"
epatch ${WORKDIR}/${P}-CVS-20050121.patch
epatch ${FILESDIR}/irssi-socks-fix.patch
}
src_compile() {
if use ssl
then
myconf="--with-openssl-include=/usr --with-openssl-libs=/usr"
else
myconf="--disable-ssl"
fi
econf \
--with-glib2 \
--without-servertest \
--with-proxy \
--with-ncurses \
$(use_enable nls) \
$(use_with perl) \
$(use_enable ipv6) \
$(use_with socks5 socks) \
${myconf} || die "./configure failed"
emake || die "emake failed"
# Generate updated help
./syntax.pl
}
src_install() {
if use perl
then
for dir in ${S}/src/perl/{common,irc,textui,ui}
do
cd ${dir}
perl-module_src_prep
done
cd ${S}
fi
make \
DESTDIR=${D} \
docdir=/usr/share/doc/${PF} \
gnulocaledir=${D}/usr/share/locale \
install || die "make install failed"
prepalldocs
dodoc AUTHORS ChangeLog README TODO NEWS || die "dodoc failed"
dohtml -r ${S}/docs/. || die "dohtml failed"
}
|