tupone 14/07/24 19:34:18 Modified: ChangeLog gtklife-5.1.ebuild Log: Fix build. Bug #514318 (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 0145142D)
Revision Changes Path 1.17 games-misc/gtklife/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-misc/gtklife/ChangeLog?rev=1.17&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-misc/gtklife/ChangeLog?rev=1.17&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-misc/gtklife/ChangeLog?r1=1.16&r2=1.17 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/games-misc/gtklife/ChangeLog,v retrieving revision 1.16 retrieving revision 1.17 diff -u -r1.16 -r1.17 --- ChangeLog 3 May 2012 03:29:41 -0000 1.16 +++ ChangeLog 24 Jul 2014 19:34:17 -0000 1.17 @@ -1,6 +1,10 @@ # ChangeLog for games-misc/gtklife -# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-misc/gtklife/ChangeLog,v 1.16 2012/05/03 03:29:41 jdhore Exp $ +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/games-misc/gtklife/ChangeLog,v 1.17 2014/07/24 19:34:17 tupone Exp $ + + 24 Jul 2014; Tupone Alfredo <[email protected]> gtklife-5.1.ebuild, + +files/gtklife-5.1-link.patch: + Fix build. Bug #514318 by Patrick Lauer 03 May 2012; Jeff Horelick <[email protected]> gtklife-5.1.ebuild: dev-util/pkgconfig -> virtual/pkgconfig 1.8 games-misc/gtklife/gtklife-5.1.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-misc/gtklife/gtklife-5.1.ebuild?rev=1.8&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-misc/gtklife/gtklife-5.1.ebuild?rev=1.8&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-misc/gtklife/gtklife-5.1.ebuild?r1=1.7&r2=1.8 Index: gtklife-5.1.ebuild =================================================================== RCS file: /var/cvsroot/gentoo-x86/games-misc/gtklife/gtklife-5.1.ebuild,v retrieving revision 1.7 retrieving revision 1.8 diff -u -r1.7 -r1.8 --- gtklife-5.1.ebuild 3 May 2012 03:29:41 -0000 1.7 +++ gtklife-5.1.ebuild 24 Jul 2014 19:34:17 -0000 1.8 @@ -1,8 +1,8 @@ -# Copyright 1999-2012 Gentoo Foundation +# Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/games-misc/gtklife/gtklife-5.1.ebuild,v 1.7 2012/05/03 03:29:41 jdhore Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-misc/gtklife/gtklife-5.1.ebuild,v 1.8 2014/07/24 19:34:17 tupone Exp $ -EAPI=2 +EAPI=4 inherit eutils games DESCRIPTION="A Conway's Life simulator for Unix" @@ -14,10 +14,16 @@ KEYWORDS="amd64 hppa ~ppc x86" IUSE="" -RDEPEND="x11-libs/gtk+:2" +RDEPEND="x11-libs/gtk+:2 + dev-libs/glib:2 + x11-libs/libX11" DEPEND="${RDEPEND} virtual/pkgconfig" +src_prepare() { + epatch "${FILESDIR}"/${P}-link.patch +} + src_configure() { egamesconf \ --with-gtk2 \ @@ -25,10 +31,10 @@ } src_install() { - dogamesbin ${PN} || die "dogamesbin failed" + dogamesbin ${PN} insinto "${GAMES_DATADIR}"/${PN} - doins -r graphics patterns || die "doins failed" + doins -r graphics patterns newicon icon_48x48.png ${PN}.png make_desktop_entry ${PN} GtkLife
