From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id C431D1382C5 for ; Sat, 7 Apr 2018 08:38:48 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E18D2E0815; Sat, 7 Apr 2018 08:38:47 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id A51F6E0815 for ; Sat, 7 Apr 2018 08:38:47 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 0FD4D335C30 for ; Sat, 7 Apr 2018 08:38:46 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E81DE26D for ; Sat, 7 Apr 2018 08:38:43 +0000 (UTC) From: "Hans de Graaff" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Hans de Graaff" Message-ID: <1523090314.4e61d05c9aecb3eee317fc1b12b3397f44d0ca91.graaff@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-irc/epic5/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-irc/epic5/epic5-1.1.10-r2.ebuild X-VCS-Directories: net-irc/epic5/ X-VCS-Committer: graaff X-VCS-Committer-Name: Hans de Graaff X-VCS-Revision: 4e61d05c9aecb3eee317fc1b12b3397f44d0ca91 X-VCS-Branch: master Date: Sat, 7 Apr 2018 08:38:43 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: b385ec5b-6fc6-4d8d-a604-cbff307a2567 X-Archives-Hash: 8e09ac28037bd4ab2d186e8e5892f41a commit: 4e61d05c9aecb3eee317fc1b12b3397f44d0ca91 Author: Hans de Graaff gentoo org> AuthorDate: Sat Apr 7 08:38:08 2018 +0000 Commit: Hans de Graaff gentoo org> CommitDate: Sat Apr 7 08:38:34 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4e61d05c net-irc/epic5: fix ruby support, bug 650342 Switch to ruby-single.eclass. This fixes bug 650342 but also simplifies ruby dependency handling. Remove the REQUIRED_USE since this will always be a blocker for most people and simply build against the currently selected ruby version provided by ruby-single. This is in effect what the ebuild was doing before anyway. Include correct slot for ncurses. Use EAPI=6. Closes: https://bugs.gentoo.org/650342 Package-Manager: Portage-2.3.24, Repoman-2.3.6 net-irc/epic5/epic5-1.1.10-r2.ebuild | 77 ++++++++++++++++++++++++++++++++++++ 1 file changed, 77 insertions(+) diff --git a/net-irc/epic5/epic5-1.1.10-r2.ebuild b/net-irc/epic5/epic5-1.1.10-r2.ebuild new file mode 100644 index 00000000000..323296c7006 --- /dev/null +++ b/net-irc/epic5/epic5-1.1.10-r2.ebuild @@ -0,0 +1,77 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +USE_RUBY="ruby22 ruby23" + +inherit autotools eutils multilib ruby-single 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: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_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 + + eapply_user + + 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) \ + $(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 +}