diff options
Diffstat (limited to 'net-irc/ircii')
-rw-r--r-- | net-irc/ircii/ChangeLog | 6 | ||||
-rw-r--r-- | net-irc/ircii/ircii-20060725.ebuild | 14 |
2 files changed, 13 insertions, 7 deletions
diff --git a/net-irc/ircii/ChangeLog b/net-irc/ircii/ChangeLog index baf1196a46f9..74050a434aca 100644 --- a/net-irc/ircii/ChangeLog +++ b/net-irc/ircii/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for net-irc/ircii # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-irc/ircii/ChangeLog,v 1.29 2011/12/02 00:17:56 binki Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-irc/ircii/ChangeLog,v 1.30 2011/12/02 00:35:24 binki Exp $ + + 02 Dec 2011; Nathan Phillip Brink <binki@gentoo.org> ircii-20060725.ebuild: + Address bug #247987 by adding blocker on net-irc/irc-client to + ircii-20060725. Add missing expansion quoting. *ircii-20111115 (02 Dec 2011) diff --git a/net-irc/ircii/ircii-20060725.ebuild b/net-irc/ircii/ircii-20060725.ebuild index 4f8c92fa54ef..40b113a6bf39 100644 --- a/net-irc/ircii/ircii-20060725.ebuild +++ b/net-irc/ircii/ircii-20060725.ebuild @@ -1,16 +1,18 @@ -# 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/ircii/ircii-20060725.ebuild,v 1.6 2009/07/28 02:11:25 flameeyes Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-irc/ircii/ircii-20060725.ebuild,v 1.7 2011/12/02 00:35:24 binki Exp $ IUSE="ipv6" -DESCRIPTION="ircII is an IRC and ICB client that runs under most UNIX platforms." +DESCRIPTION="ircII is an IRC and ICB client that runs under most UNIX platforms" SRC_URI="ftp://ircii.warped.com/pub/ircII/${P}.tar.bz2" HOMEPAGE="http://www.eterna.com.au/ircii/" RDEPEND="sys-libs/ncurses" -DEPEND="${RDEPEND} - >=sys-apps/sed-4" +# This and irc-client both install /usr/bin/irc #247987 +RDEPEND="${DEPEND} + >=sys-apps/sed-4 + !net-irc/irc-client" SLOT="0" LICENSE="GPL-2" @@ -22,7 +24,7 @@ src_compile() { } src_install() { - emake -j1 DESTDIR=${D} install || die "make install failed" + emake -j1 DESTDIR="${D}" install || die "make install failed" dodoc ChangeLog INSTALL NEWS README \ doc/Copyright doc/crypto doc/VERSIONS doc/ctcp \ |