You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/net-irc/epic5/epic5-1.1.2.ebuild

75 lines
1.9 KiB

# Copyright 1999-2011 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.1 2011/06/01 14:45:08 binki 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/"
SLOT="0"
LICENSE="as-is"
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
}