diff options
author | Nathan Phillip Brink <binki@gentoo.org> | 2011-05-15 22:27:43 +0000 |
---|---|---|
committer | Nathan Phillip Brink <binki@gentoo.org> | 2011-05-15 22:27:43 +0000 |
commit | bb27b941ef65ef6650a52f18321f0021977c493e (patch) | |
tree | 80c704a45434d95ba76c3df3948256f02bcd7903 /net-irc/epic5 | |
parent | Fix underlinking of libX11, bug #367421 . (diff) | |
download | gentoo-2-bb27b941ef65ef6650a52f18321f0021977c493e.tar.gz gentoo-2-bb27b941ef65ef6650a52f18321f0021977c493e.tar.bz2 gentoo-2-bb27b941ef65ef6650a52f18321f0021977c493e.zip |
Slight cleanup and hopefully fix bug 367359.
(Portage version: 2.2.0_alpha31-r1/cvs/Linux x86_64)
Diffstat (limited to 'net-irc/epic5')
-rw-r--r-- | net-irc/epic5/ChangeLog | 7 | ||||
-rw-r--r-- | net-irc/epic5/epic5-1.0.ebuild | 21 |
2 files changed, 14 insertions, 14 deletions
diff --git a/net-irc/epic5/ChangeLog b/net-irc/epic5/ChangeLog index 708328fd2272..da32d5c69262 100644 --- a/net-irc/epic5/ChangeLog +++ b/net-irc/epic5/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for net-irc/epic5 -# Copyright 2000-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-irc/epic5/ChangeLog,v 1.16 2009/02/28 23:35:54 patrick Exp $ +# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/net-irc/epic5/ChangeLog,v 1.17 2011/05/15 22:27:43 binki Exp $ + + 15 May 2011; Nathan Phillip Brink <binki@gentoo.org> epic5-1.0.ebuild: + Slight cleanup and hopefully fix bug 367359. *epic5-1.0 (28 Feb 2009) diff --git a/net-irc/epic5/epic5-1.0.ebuild b/net-irc/epic5/epic5-1.0.ebuild index ac9e8fb68c05..a510d0166008 100644 --- a/net-irc/epic5/epic5-1.0.ebuild +++ b/net-irc/epic5/epic5-1.0.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2009 Gentoo Foundation +# Copyright 1999-2011 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-irc/epic5/epic5-1.0.ebuild,v 1.2 2009/02/28 23:38:55 patrick Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-irc/epic5/epic5-1.0.ebuild,v 1.3 2011/05/15 22:27:43 binki Exp $ inherit eutils toolchain-funcs @@ -13,27 +13,24 @@ KEYWORDS="~amd64 ~ppc ~x86" IUSE="iconv ipv6 perl ssl tcl socks5" DEPEND=">=sys-libs/ncurses-5.6-r2 - iconv? ( sys-libs/glibc ) + iconv? ( virtual/libiconv ) perl? ( >=dev-lang/perl-5.8.8-r2 ) ssl? ( >=dev-libs/openssl-0.9.8e-r3 ) tcl? ( dev-lang/tcl ) socks5? ( net-proxy/dante )" # ruby? ( >=dev-lang/ruby-1.8.6_p287-r1 ) # fails at the moment - -src_unpack() { - unpack ${A} -} +RDEPEND="${DEPEND}" src_compile() { econf \ --libexecdir=/usr/lib/misc \ + --without-ruby \ $(use_with iconv) \ $(use_with ipv6) \ $(use_with perl) \ $(use_with ssl) \ $(use_with tcl tcl) \ - $(use_with socks5) \ - || die "econf failed" + $(use_with socks5) # $(use_with ruby) fails at the moment # parallel build failure @@ -45,11 +42,11 @@ src_install () { sharedir="${D}"/usr/share \ libexecdir="${D}"/usr/lib/misc || die "einstall failed" - dodoc BUG_FORM COPYRIGHT README KNOWNBUGS VOTES + dodoc BUG_FORM COPYRIGHT README KNOWNBUGS VOTES || die - cd "${S}"/doc + cd "${S}"/doc || die docinto doc dodoc \ *.txt colors EPIC* IRCII_VERSIONS local_vars missing new-load \ - nicknames outputhelp README.SSL SILLINESS TS4 + nicknames outputhelp README.SSL SILLINESS TS4 || die } |