jer 14/11/23 10:37:44 Modified: ChangeLog xaric-0.13.6.ebuild Removed: xaric-0.13.5.ebuild Log: Fix building against sys-libs/ncurses[tinfo] (bug #529892). (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key A792A613)
Revision Changes Path 1.3 net-irc/xaric/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/xaric/ChangeLog?rev=1.3&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/xaric/ChangeLog?rev=1.3&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/xaric/ChangeLog?r1=1.2&r2=1.3 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/net-irc/xaric/ChangeLog,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- ChangeLog 14 Jan 2014 06:38:02 -0000 1.2 +++ ChangeLog 23 Nov 2014 10:37:44 -0000 1.3 @@ -1,6 +1,10 @@ # ChangeLog for net-irc/xaric # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-irc/xaric/ChangeLog,v 1.2 2014/01/14 06:38:02 patrick Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-irc/xaric/ChangeLog,v 1.3 2014/11/23 10:37:44 jer Exp $ + + 23 Nov 2014; Jeroen Roovers <[email protected]> -xaric-0.13.5.ebuild, + xaric-0.13.6.ebuild, +files/xaric-0.13.6-tinfo.patch: + Fix building against sys-libs/ncurses[tinfo] (bug #529892). *xaric-0.13.6 (14 Jan 2014) 1.2 net-irc/xaric/xaric-0.13.6.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/xaric/xaric-0.13.6.ebuild?rev=1.2&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/xaric/xaric-0.13.6.ebuild?rev=1.2&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/xaric/xaric-0.13.6.ebuild?r1=1.1&r2=1.2 Index: xaric-0.13.6.ebuild =================================================================== RCS file: /var/cvsroot/gentoo-x86/net-irc/xaric/xaric-0.13.6.ebuild,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- xaric-0.13.6.ebuild 14 Jan 2014 06:38:02 -0000 1.1 +++ xaric-0.13.6.ebuild 23 Nov 2014 10:37:44 -0000 1.2 @@ -1,9 +1,9 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-irc/xaric/xaric-0.13.6.ebuild,v 1.1 2014/01/14 06:38:02 patrick Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-irc/xaric/xaric-0.13.6.ebuild,v 1.2 2014/11/23 10:37:44 jer Exp $ -EAPI=2 -inherit eutils +EAPI=5 +inherit autotools eutils DESCRIPTION="An IRC client similar to ircII, BitchX, or ircII EPIC" HOMEPAGE="http://xaric.org/" @@ -12,13 +12,19 @@ LICENSE="GPL-2" SLOT="0" KEYWORDS="~amd64 ~x86" -IUSE="" DEPEND="sys-libs/ncurses dev-libs/openssl" +RDEPEND="${DEPEND}" + +DOCS=( AUTHORS ChangeLog README ) + +src_prepare() { + epatch "${FILESDIR}"/${P}-tinfo.patch + eautoreconf +} src_install() { - emake DESTDIR="${D}" install || die - dodoc AUTHORS ChangeLog README + default doicon xaric.xpm }
