blob: 46cdf3dddadf77d8ce35b0b62abd3baa3a63690e (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-irc/epic5/epic5-0.0.2.ebuild,v 1.2 2004/06/24 23:04:18 agriffis Exp $
inherit eutils
DESCRIPTION="Epic5 IRC Client"
SRC_URI="ftp://ftp.epicsol.org/pub/epic/EPIC5-ALPHA/${P}.tar.bz2"
HOMEPAGE="http://epicsol.org/"
SLOT="0"
LICENSE="as-is"
KEYWORDS="~x86"
IUSE="ipv6 perl ssl tcltk socks5"
DEPEND=">=sys-libs/ncurses-5.2
perl? ( >=dev-lang/perl-5.6.1 )
ssl? ( >=dev-libs/openssl-0.9.5 )
tcltk? ( dev-lang/tcl )
socks5? ( net-misc/dante )"
src_unpack() {
unpack ${A}
cd ${S}
epatch ${FILESDIR}/epic-defaultserver.patch
epatch ${FILESDIR}/${PV}-segfault-fix.patch
sed -i \
-e 's:/include/tcl$ver:/include:' \
-e 's:-lsocks5:-lsocks:' \
configure
}
src_compile() {
econf \
--libexecdir=/usr/lib/misc \
`use_with ipv6` \
`use_with perl` \
`use_with ssl` \
`use_with tcltk tcl` \
`use_with socks5` \
|| die "econf failed"
emake || die "emake failed"
}
src_install () {
einstall \
sharedir=${D}/usr/share \
libexecdir=${D}/usr/lib/misc || die "einstall failed"
dosym epic5-${PV} /usr/bin/epic5
dodoc BUG_FORM COPYRIGHT README KNOWNBUGS VOTES
cd doc
docinto doc
dodoc *.txt colors EPIC* IRCII_VERSIONS local_vars missing new-load
dodoc nicknames outputhelp SILLINESS TS4
}
|