diff options
author | Nathan Phillip Brink <binki@gentoo.org> | 2015-07-11 20:36:35 +0000 |
---|---|---|
committer | Nathan Phillip Brink <binki@gentoo.org> | 2015-07-11 20:36:35 +0000 |
commit | d25ec9a83ef588542216a6a5131fed86115a1561 (patch) | |
tree | b75d26b850abdd6e2ceaff3100d989667c2fd34f /net-irc | |
parent | Fix capitalization (diff) | |
download | gentoo-2-d25ec9a83ef588542216a6a5131fed86115a1561.tar.gz gentoo-2-d25ec9a83ef588542216a6a5131fed86115a1561.tar.bz2 gentoo-2-d25ec9a83ef588542216a6a5131fed86115a1561.zip |
Support building against any modern ruby target for bug #547768.
(Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 743A52E86BA81050)
Diffstat (limited to 'net-irc')
-rw-r--r-- | net-irc/epic5/ChangeLog | 7 | ||||
-rw-r--r-- | net-irc/epic5/epic5-1.1.10-r1.ebuild | 87 |
2 files changed, 93 insertions, 1 deletions
diff --git a/net-irc/epic5/ChangeLog b/net-irc/epic5/ChangeLog index adec09470b4d..c7f454d9a3ca 100644 --- a/net-irc/epic5/ChangeLog +++ b/net-irc/epic5/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for net-irc/epic5 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-irc/epic5/ChangeLog,v 1.28 2015/03/25 16:18:58 jlec Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-irc/epic5/ChangeLog,v 1.29 2015/07/11 20:36:35 binki Exp $ + +*epic5-1.1.10-r1 (11 Jul 2015) + + 11 Jul 2015; Nathan Phillip Brink <binki@gentoo.org> +epic5-1.1.10-r1.ebuild: + Support building against any modern ruby target for bug #547768. 25 Mar 2015; Justin Lecher <jlec@gentoo.org> -epic5-0.3.5.ebuild, epic5-1.1.10.ebuild: diff --git a/net-irc/epic5/epic5-1.1.10-r1.ebuild b/net-irc/epic5/epic5-1.1.10-r1.ebuild new file mode 100644 index 000000000000..8180bf207b54 --- /dev/null +++ b/net-irc/epic5/epic5-1.1.10-r1.ebuild @@ -0,0 +1,87 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-irc/epic5/epic5-1.1.10-r1.ebuild,v 1.1 2015/07/11 20:36:35 binki Exp $ + +EAPI=4 + +USE_RUBY="ruby20 ruby21 ruby22" +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=" + >=dev-libs/openssl-0.9.8e-r3:0 + >=sys-libs/ncurses-5.6-r2 + virtual/libiconv + archive? ( app-arch/libarchive ) + perl? ( >=dev-lang/perl-5.8.8-r2 ) + tcl? ( dev-lang/tcl:0 ) + socks5? ( net-proxy/dante ) + ruby? ( $(ruby_implementations_depend) )" +DEPEND="${RDEPEND} + valgrind? ( dev-util/valgrind )" +REQUIRED_USE="ruby? ( ^^ ( $(ruby_get_use_targets) ) ) + $(for t in $(ruby_get_use_targets); do echo "${t}? ( ruby )"; done)" + +S=${WORKDIR}/${P} + +pkg_setup() { + # bug #489608, bug #497080 + use ruby && ruby-ng_pkg_setup +} + +# Don't use ruby-ng's separated sources support: +src_unpack() { + default +} + +src_prepare() { + epatch \ + "${FILESDIR}"/${PN}-1.1.2-libarchive-automagic.patch \ + "${FILESDIR}"/${P}-ruby-automagic-as-needed.patch \ + "${FILESDIR}"/${P}-tcl-automagic-as-needed.patch \ + "${FILESDIR}"/${PN}-1.1.2-perl-automagic-as-needed.patch \ + "${FILESDIR}"/${P}-without-localdir.patch \ + "${FILESDIR}"/${P}-socks5-libsocks.patch + eautoconf +} + +src_configure() { + # Because of our REQUIRED_USE constraints above, we know that + # ruby_get_use_implementations will only ever return one ruby + # implementation. + econf \ + --libexecdir="${EPREFIX}"/usr/lib/misc \ + $(use_with archive libarchive) \ + $(use_with ipv6) \ + $(use_with perl) \ + $(use_with ruby ruby "$(ruby_implementation_command $(ruby_get_use_implementations))") \ + $(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 () { + default + + dodoc BUG_FORM COPYRIGHT EPIC4-USERS-README README KNOWNBUGS VOTES + + cd "${S}"/doc || die + docinto doc + dodoc \ + *.txt colors EPIC* IRCII_VERSIONS missing \ + nicknames outputhelp README.SSL SILLINESS TS4 +} |