diff options
author | Pacho Ramos <pacho@gentoo.org> | 2019-01-26 13:27:02 +0100 |
---|---|---|
committer | Pacho Ramos <pacho@gentoo.org> | 2019-01-26 13:42:36 +0100 |
commit | 64c2ec24e1e7a45fee8a8409298e11546a7010b9 (patch) | |
tree | 6498c824ae4fb92e2b96056842c63256ae20d77f /net-irc/epic5 | |
parent | net-misc/pen: Bump to 0.34.1 (diff) | |
download | gentoo-64c2ec24e1e7a45fee8a8409298e11546a7010b9.tar.gz gentoo-64c2ec24e1e7a45fee8a8409298e11546a7010b9.tar.bz2 gentoo-64c2ec24e1e7a45fee8a8409298e11546a7010b9.zip |
net-irc/epic5: Bump to 2.0.1
Closes: https://bugs.gentoo.org/675254
Package-Manager: Portage-2.3.58, Repoman-2.3.12
Signed-off-by: Pacho Ramos <pacho@gentoo.org>
Diffstat (limited to 'net-irc/epic5')
-rw-r--r-- | net-irc/epic5/Manifest | 1 | ||||
-rw-r--r-- | net-irc/epic5/epic5-2.0.1.ebuild | 66 |
2 files changed, 67 insertions, 0 deletions
diff --git a/net-irc/epic5/Manifest b/net-irc/epic5/Manifest index d6852ab3490f..84edd9778ef9 100644 --- a/net-irc/epic5/Manifest +++ b/net-irc/epic5/Manifest @@ -1 +1,2 @@ DIST epic5-1.1.10.tar.bz2 851439 BLAKE2B 13cf0f78ed2009595479fac8173b2936cf74382ec22964e00de2d84fd89c6cee661e4ea9e3d8ba44ec715ac7e861f4639b3459d3ac2d67c74cc49ad4aeebf127 SHA512 d0215570962253a0d5c60dacec86db1094575b0765db039247cf16b5957ba721576618ff73588610ba528782f4460fd4bbe5a1869e60e2c10d832d41ea3c6048 +DIST epic5-2.0.1.tar.xz 808612 BLAKE2B 48bc1305f955f524e26b5a2122f061b0251b874ad102e3a95c65b15646f7d5c95f661bdbac3e6ea118ce5d5b5e3ca58a94cfce288ee32c7483ea6dc1b6d24950 SHA512 29721cb097946fae3d64f71be4047f8348f7821ccdea870b4c756098f07adee90f03decb2f37fc5fa5c7c9d1aac5a16f4944adc9c9bc66097ceb609c69da2e25 diff --git a/net-irc/epic5/epic5-2.0.1.ebuild b/net-irc/epic5/epic5-2.0.1.ebuild new file mode 100644 index 000000000000..ac3c4b0060af --- /dev/null +++ b/net-irc/epic5/epic5-2.0.1.ebuild @@ -0,0 +1,66 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 +USE_RUBY="ruby23 ruby24" + +inherit autotools ruby-single toolchain-funcs + +DESCRIPTION="Epic5 IRC Client" +SRC_URI="ftp://ftp.epicsol.org/pub/epic/EPIC5-PRODUCTION/${P}.tar.xz" +HOMEPAGE="http://epicsol.org/" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86" + +# Fails to build without ipv6 +IUSE="archive perl tcl ruby socks5 valgrind" #ipv6 + +RDEPEND=" + >=dev-libs/openssl-0.9.8e-r3:0= + >=sys-libs/ncurses-5.6-r2:0= + 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_DEPS} ) +" +DEPEND="${RDEPEND} + valgrind? ( dev-util/valgrind ) +" + +S="${WORKDIR}/${P}" + +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 \ + --with-ipv6 \ + $(use_with archive libarchive) \ + $(use_with perl) \ + $(use_with 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 () { + 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 +} |