jer 14/11/10 11:07:43 Modified: ChangeLog blassic-0.10.2.ebuild Log: Fix building against sys-libs/ncurses[tinfo] (bug #527112). (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key A792A613)
Revision Changes Path 1.33 dev-lang/blassic/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/blassic/ChangeLog?rev=1.33&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/blassic/ChangeLog?rev=1.33&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/blassic/ChangeLog?r1=1.32&r2=1.33 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/dev-lang/blassic/ChangeLog,v retrieving revision 1.32 retrieving revision 1.33 diff -u -r1.32 -r1.33 --- ChangeLog 4 Jul 2014 08:29:33 -0000 1.32 +++ ChangeLog 10 Nov 2014 11:07:43 -0000 1.33 @@ -1,6 +1,10 @@ # ChangeLog for dev-lang/blassic # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-lang/blassic/ChangeLog,v 1.32 2014/07/04 08:29:33 mr_bones_ Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-lang/blassic/ChangeLog,v 1.33 2014/11/10 11:07:43 jer Exp $ + + 10 Nov 2014; Jeroen Roovers <[email protected]> blassic-0.10.2.ebuild, + +files/blassic-0.10.2-tinfo.patch: + Fix building against sys-libs/ncurses[tinfo] (bug #527112). 04 Jul 2014; Michael Sterrett <[email protected]> blassic-0.10.2.ebuild: EAPI=5; simplify 1.9 dev-lang/blassic/blassic-0.10.2.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/blassic/blassic-0.10.2.ebuild?rev=1.9&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/blassic/blassic-0.10.2.ebuild?rev=1.9&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/blassic/blassic-0.10.2.ebuild?r1=1.8&r2=1.9 Index: blassic-0.10.2.ebuild =================================================================== RCS file: /var/cvsroot/gentoo-x86/dev-lang/blassic/blassic-0.10.2.ebuild,v retrieving revision 1.8 retrieving revision 1.9 diff -u -r1.8 -r1.9 --- blassic-0.10.2.ebuild 4 Jul 2014 08:29:33 -0000 1.8 +++ blassic-0.10.2.ebuild 10 Nov 2014 11:07:43 -0000 1.9 @@ -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/dev-lang/blassic/blassic-0.10.2.ebuild,v 1.8 2014/07/04 08:29:33 mr_bones_ Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-lang/blassic/blassic-0.10.2.ebuild,v 1.9 2014/11/10 11:07:43 jer Exp $ EAPI=5 -inherit eutils +inherit autotools eutils DESCRIPTION="classic Basic interpreter" HOMEPAGE="http://blassic.org" @@ -19,13 +19,15 @@ DEPEND="${RDEPEND} X? ( x11-proto/xproto )" +src_prepare() { + epatch "${FILESDIR}"/${P}-tinfo.patch + eautoreconf +} + src_configure() { econf \ --disable-svgalib \ $(use_with X x) } -src_install() { - emake DESTDIR="${D}" install - dodoc AUTHORS NEWS README THANKS TODO -} +DOCS=( AUTHORS NEWS README THANKS TODO )
