Gentoo Archives: gentoo-commits

From: Hans de Graaff <graaff@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-irc/epic5/
Date: Mon, 28 Dec 2015 08:05:57
Message-Id: 1451289941.89bad6a2dc5ea0a82177efd881815e6aa466f1ce.graaff@gentoo
1 commit: 89bad6a2dc5ea0a82177efd881815e6aa466f1ce
2 Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
3 AuthorDate: Mon Dec 28 08:05:24 2015 +0000
4 Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
5 CommitDate: Mon Dec 28 08:05:41 2015 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=89bad6a2
7
8 net-irc/epic5: cleanup for bug 547768
9
10 Package-Manager: portage-2.2.24
11
12 net-irc/epic5/epic5-1.1.10.ebuild | 83 ---------------------------------------
13 1 file changed, 83 deletions(-)
14
15 diff --git a/net-irc/epic5/epic5-1.1.10.ebuild b/net-irc/epic5/epic5-1.1.10.ebuild
16 deleted file mode 100644
17 index 9ed22d7..0000000
18 --- a/net-irc/epic5/epic5-1.1.10.ebuild
19 +++ /dev/null
20 @@ -1,83 +0,0 @@
21 -# Copyright 1999-2015 Gentoo Foundation
22 -# Distributed under the terms of the GNU General Public License v2
23 -# $Id$
24 -
25 -EAPI=4
26 -
27 -USE_RUBY="ruby19"
28 -RUBY_OPTIONAL=yes
29 -inherit autotools eutils multilib ruby-ng toolchain-funcs
30 -
31 -DESCRIPTION="Epic5 IRC Client"
32 -SRC_URI="ftp://ftp.epicsol.org/pub/epic/EPIC5-PRODUCTION/${P}.tar.bz2"
33 -HOMEPAGE="http://epicsol.org/"
34 -
35 -LICENSE="BSD"
36 -SLOT="0"
37 -KEYWORDS="amd64 ~ppc x86"
38 -IUSE="archive ipv6 perl tcl ruby socks5 valgrind"
39 -
40 -RDEPEND="
41 - >=dev-libs/openssl-0.9.8e-r3:0
42 - >=sys-libs/ncurses-5.6-r2
43 - virtual/libiconv
44 - archive? ( app-arch/libarchive )
45 - perl? ( >=dev-lang/perl-5.8.8-r2 )
46 - tcl? ( dev-lang/tcl:0 )
47 - socks5? ( net-proxy/dante )
48 - ruby? ( $(ruby_implementations_depend) )"
49 -DEPEND="${RDEPEND}
50 - valgrind? ( dev-util/valgrind )"
51 -REQUIRED_USE="ruby? ( $(ruby_get_use_targets) )"
52 -
53 -S=${WORKDIR}/${P}
54 -
55 -pkg_setup() {
56 - # bug #489608, bug #497080
57 - use ruby && ruby-ng_pkg_setup
58 -}
59 -
60 -# Don't use ruby-ng's separated sources support:
61 -src_unpack() {
62 - default
63 -}
64 -
65 -src_prepare() {
66 - epatch \
67 - "${FILESDIR}"/${PN}-1.1.2-libarchive-automagic.patch \
68 - "${FILESDIR}"/${P}-ruby-automagic-as-needed.patch \
69 - "${FILESDIR}"/${P}-tcl-automagic-as-needed.patch \
70 - "${FILESDIR}"/${PN}-1.1.2-perl-automagic-as-needed.patch \
71 - "${FILESDIR}"/${P}-without-localdir.patch \
72 - "${FILESDIR}"/${P}-socks5-libsocks.patch
73 - eautoconf
74 -}
75 -
76 -src_configure() {
77 - econf \
78 - --libexecdir="${EPREFIX}"/usr/lib/misc \
79 - $(use_with archive libarchive) \
80 - $(use_with ipv6) \
81 - $(use_with perl) \
82 - $(use_with ruby ruby "$(ruby_implementation_command ${USE_RUBY})") \
83 - $(use_with socks5) \
84 - $(use_with tcl tcl "${EPREFIX}"/usr/$(get_libdir)/tclConfig.sh) \
85 - $(use_with valgrind valgrind)
86 -}
87 -
88 -src_compile() {
89 - # parallel build failure
90 - emake -j1
91 -}
92 -
93 -src_install () {
94 - default
95 -
96 - dodoc BUG_FORM COPYRIGHT EPIC4-USERS-README README KNOWNBUGS VOTES
97 -
98 - cd "${S}"/doc || die
99 - docinto doc
100 - dodoc \
101 - *.txt colors EPIC* IRCII_VERSIONS missing \
102 - nicknames outputhelp README.SSL SILLINESS TS4
103 -}