blob: 4617231390e9f1134bd7a7c74e72b2b737787dc1 (
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
|
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-irc/epic5/epic5-1.1.2.ebuild,v 1.2 2012/12/23 20:14:47 ulm Exp $
EAPI=4
USE_RUBY=ruby18
RUBY_OPTIONAL=yes
inherit autotools eutils multilib ruby-ng toolchain-funcs
DESCRIPTION="Epic5 IRC Client"
SRC_URI="ftp://ftp.epicsol.org/pub/epic/EPIC5-PRODUCTION/${P}.tar.bz2"
HOMEPAGE="http://epicsol.org/"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86"
IUSE="archive ipv6 perl tcl ruby socks5 valgrind"
RDEPEND="virtual/libiconv
>=dev-libs/openssl-0.9.8e-r3
>=sys-libs/ncurses-5.6-r2
archive? ( app-arch/libarchive )
perl? ( >=dev-lang/perl-5.8.8-r2 )
tcl? ( dev-lang/tcl )
socks5? ( net-proxy/dante )
ruby? ( $(ruby_implementation_depend ${USE_RUBY}) )"
DEPEND="${RDEPEND}
valgrind? ( dev-util/valgrind )"
S=${WORKDIR}/${P}
# Don't use ruby-ng's separated sources support:
src_unpack() {
default
}
src_prepare() {
epatch "${FILESDIR}"/${P}-libarchive-automagic.patch \
"${FILESDIR}"/${P}-ruby-automagic-as-needed.patch \
"${FILESDIR}"/${P}-tcl-automagic-as-needed.patch \
"${FILESDIR}"/${P}-perl-automagic-as-needed.patch
eautoconf
}
src_configure() {
econf \
--libexecdir="${EPREFIX}"/usr/lib/misc \
$(use_with archive libarchive) \
$(use_with ipv6) \
$(use_with perl) \
$(use_with ruby ruby "$(ruby_implementation_command ${USE_RUBY})") \
$(use_with socks5) \
$(use_with tcl tcl "${EPREFIX}"/usr/$(get_libdir)/tclConfig.sh) \
$(use_with valgrind valgrind)
}
src_compile() {
# parallel build failure
emake -j1
}
src_install () {
einstall \
sharedir="${D}"/usr/share \
libexecdir="${D}"/usr/lib/misc
dodoc BUG_FORM COPYRIGHT EPIC4-USERS-README README KNOWNBUGS VOTES
cd "${S}"/doc || die
docinto doc
dodoc \
*.txt colors EPIC* IRCII_VERSIONS local_vars missing new-load \
nicknames outputhelp README.SSL SILLINESS TS4
}
|