Gentoo Archives: gentoo-commits

From: Pacho Ramos <pacho@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-irc/epic5/
Date: Sat, 26 Jan 2019 12:43:21
Message-Id: 1548506556.64c2ec24e1e7a45fee8a8409298e11546a7010b9.pacho@gentoo
1 commit: 64c2ec24e1e7a45fee8a8409298e11546a7010b9
2 Author: Pacho Ramos <pacho <AT> gentoo <DOT> org>
3 AuthorDate: Sat Jan 26 12:27:02 2019 +0000
4 Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
5 CommitDate: Sat Jan 26 12:42:36 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=64c2ec24
7
8 net-irc/epic5: Bump to 2.0.1
9
10 Closes: https://bugs.gentoo.org/675254
11 Package-Manager: Portage-2.3.58, Repoman-2.3.12
12 Signed-off-by: Pacho Ramos <pacho <AT> gentoo.org>
13
14 net-irc/epic5/Manifest | 1 +
15 net-irc/epic5/epic5-2.0.1.ebuild | 66 ++++++++++++++++++++++++++++++++++++++++
16 2 files changed, 67 insertions(+)
17
18 diff --git a/net-irc/epic5/Manifest b/net-irc/epic5/Manifest
19 index d6852ab3490..84edd9778ef 100644
20 --- a/net-irc/epic5/Manifest
21 +++ b/net-irc/epic5/Manifest
22 @@ -1 +1,2 @@
23 DIST epic5-1.1.10.tar.bz2 851439 BLAKE2B 13cf0f78ed2009595479fac8173b2936cf74382ec22964e00de2d84fd89c6cee661e4ea9e3d8ba44ec715ac7e861f4639b3459d3ac2d67c74cc49ad4aeebf127 SHA512 d0215570962253a0d5c60dacec86db1094575b0765db039247cf16b5957ba721576618ff73588610ba528782f4460fd4bbe5a1869e60e2c10d832d41ea3c6048
24 +DIST epic5-2.0.1.tar.xz 808612 BLAKE2B 48bc1305f955f524e26b5a2122f061b0251b874ad102e3a95c65b15646f7d5c95f661bdbac3e6ea118ce5d5b5e3ca58a94cfce288ee32c7483ea6dc1b6d24950 SHA512 29721cb097946fae3d64f71be4047f8348f7821ccdea870b4c756098f07adee90f03decb2f37fc5fa5c7c9d1aac5a16f4944adc9c9bc66097ceb609c69da2e25
25
26 diff --git a/net-irc/epic5/epic5-2.0.1.ebuild b/net-irc/epic5/epic5-2.0.1.ebuild
27 new file mode 100644
28 index 00000000000..ac3c4b0060a
29 --- /dev/null
30 +++ b/net-irc/epic5/epic5-2.0.1.ebuild
31 @@ -0,0 +1,66 @@
32 +# Copyright 1999-2019 Gentoo Authors
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=7
36 +USE_RUBY="ruby23 ruby24"
37 +
38 +inherit autotools ruby-single toolchain-funcs
39 +
40 +DESCRIPTION="Epic5 IRC Client"
41 +SRC_URI="ftp://ftp.epicsol.org/pub/epic/EPIC5-PRODUCTION/${P}.tar.xz"
42 +HOMEPAGE="http://epicsol.org/"
43 +
44 +LICENSE="BSD"
45 +SLOT="0"
46 +KEYWORDS="~amd64 ~ppc ~x86"
47 +
48 +# Fails to build without ipv6
49 +IUSE="archive perl tcl ruby socks5 valgrind" #ipv6
50 +
51 +RDEPEND="
52 + >=dev-libs/openssl-0.9.8e-r3:0=
53 + >=sys-libs/ncurses-5.6-r2:0=
54 + virtual/libiconv
55 + archive? ( app-arch/libarchive )
56 + perl? ( >=dev-lang/perl-5.8.8-r2:= )
57 + tcl? ( dev-lang/tcl:0= )
58 + socks5? ( net-proxy/dante )
59 + ruby? ( ${RUBY_DEPS} )
60 +"
61 +DEPEND="${RDEPEND}
62 + valgrind? ( dev-util/valgrind )
63 +"
64 +
65 +S="${WORKDIR}/${P}"
66 +
67 +src_configure() {
68 + # Because of our REQUIRED_USE constraints above, we know that
69 + # ruby_get_use_implementations will only ever return one ruby
70 + # implementation.
71 + econf \
72 + --libexecdir="${EPREFIX}"/usr/lib/misc \
73 + --with-ipv6 \
74 + $(use_with archive libarchive) \
75 + $(use_with perl) \
76 + $(use_with ruby) \
77 + $(use_with socks5) \
78 + $(use_with tcl tcl "${EPREFIX}"/usr/$(get_libdir)/tclConfig.sh) \
79 + $(use_with valgrind valgrind)
80 +}
81 +
82 +src_compile() {
83 + # parallel build failure
84 + emake -j1
85 +}
86 +
87 +src_install () {
88 + default
89 +
90 + dodoc BUG_FORM COPYRIGHT EPIC4-USERS-README README KNOWNBUGS VOTES
91 +
92 + cd "${S}"/doc || die
93 + docinto doc
94 + dodoc \
95 + *.txt colors EPIC* IRCII_VERSIONS missing \
96 + nicknames outputhelp README.SSL SILLINESS TS4
97 +}