diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2005-07-20 19:53:07 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2005-07-20 19:53:07 +0000 |
commit | 122fd491ac3436d71a9e854ab6e39681c91568d1 (patch) | |
tree | 6bf337f4d00fa9cc9e58afec1ca2060b0ab1ff82 /games-arcade/lbreakout2 | |
parent | Version bump due security bug, bug #99583 (diff) | |
download | historical-122fd491ac3436d71a9e854ab6e39681c91568d1.tar.gz historical-122fd491ac3436d71a9e854ab6e39681c91568d1.tar.bz2 historical-122fd491ac3436d71a9e854ab6e39681c91568d1.zip |
use a png for the icon instead of a gif. latest gtk+ doesn't like gifs all that much (bug #99555); tidy
Package-Manager: portage-2.0.51.22-r2
Diffstat (limited to 'games-arcade/lbreakout2')
-rw-r--r-- | games-arcade/lbreakout2/ChangeLog | 7 | ||||
-rw-r--r-- | games-arcade/lbreakout2/Manifest | 4 | ||||
-rw-r--r-- | games-arcade/lbreakout2/lbreakout2-2.5.2.ebuild | 16 |
3 files changed, 15 insertions, 12 deletions
diff --git a/games-arcade/lbreakout2/ChangeLog b/games-arcade/lbreakout2/ChangeLog index a4fcb217f8bd..7291803f7111 100644 --- a/games-arcade/lbreakout2/ChangeLog +++ b/games-arcade/lbreakout2/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for games-arcade/lbreakout2 # Copyright 2002-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-arcade/lbreakout2/ChangeLog,v 1.14 2005/03/30 19:40:08 kloeri Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-arcade/lbreakout2/ChangeLog,v 1.15 2005/07/20 19:53:07 mr_bones_ Exp $ + + 20 Jul 2005; Michael Sterrett <mr_bones_@gentoo.org> + lbreakout2-2.5.2.ebuild: + use a png for the icon instead of a gif. latest gtk+ doesn't like gifs + all that much (bug #99555); tidy 30 Mar 2005; Bryan Ăstergaard <kloeri@gentoo.org> lbreakout2-2.5.2.ebuild: diff --git a/games-arcade/lbreakout2/Manifest b/games-arcade/lbreakout2/Manifest index 554821ddb003..8ccd6e83c4e2 100644 --- a/games-arcade/lbreakout2/Manifest +++ b/games-arcade/lbreakout2/Manifest @@ -1,4 +1,4 @@ MD5 f17b9b8fa07a38914fe1c03268f51678 metadata.xml 158 -MD5 9850cc8af52df6d207c7a355ee0cc998 lbreakout2-2.5.2.ebuild 1229 -MD5 790a14dbe53e1ad53cf0799ff3f44555 ChangeLog 3792 +MD5 0010e0b7a0f02f60c1791dcb8c8ee63a lbreakout2-2.5.2.ebuild 1222 +MD5 f4ed8ae240aea93de658ef22f0c53c0f ChangeLog 3987 MD5 67c125d09570c989a5cbaf1a856e50b8 files/digest-lbreakout2-2.5.2 150 diff --git a/games-arcade/lbreakout2/lbreakout2-2.5.2.ebuild b/games-arcade/lbreakout2/lbreakout2-2.5.2.ebuild index 5c7d56bd3279..d1884dd4af07 100644 --- a/games-arcade/lbreakout2/lbreakout2-2.5.2.ebuild +++ b/games-arcade/lbreakout2/lbreakout2-2.5.2.ebuild @@ -1,8 +1,8 @@ # Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/games-arcade/lbreakout2/lbreakout2-2.5.2.ebuild,v 1.2 2005/03/30 19:40:08 kloeri Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-arcade/lbreakout2/lbreakout2-2.5.2.ebuild,v 1.3 2005/07/20 19:53:07 mr_bones_ Exp $ -inherit flag-o-matic games +inherit flag-o-matic eutils games DESCRIPTION="Breakout clone written with the SDL library" HOMEPAGE="http://lgames.sourceforge.net/index.php?project=LBreakout2" @@ -11,11 +11,10 @@ SRC_URI="mirror://sourceforge/lgames/${P}.tar.gz LICENSE="GPL-2" SLOT="0" -KEYWORDS="amd64 ppc x86 ~alpha" +KEYWORDS="~alpha amd64 ppc x86" IUSE="" -DEPEND="virtual/libc - media-libs/libpng +DEPEND="media-libs/libpng sys-libs/zlib >=media-libs/libsdl-1.1.5 media-libs/sdl-net @@ -38,14 +37,13 @@ src_compile() { } src_install() { - make install DESTDIR="${D}" || die + make install DESTDIR="${D}" || die "make install failed" mv "${D}"/usr/share/doc/${PF}/{lbreakout2,html} dodoc AUTHORS README TODO ChangeLog - cp lbreakout48.gif lbreakout2.gif - doicon lbreakout2.gif - make_desktop_entry lbreakout2 LBreakout2 lbreakout2.gif + newicon client/gfx/win_icon.png lbreakout2.png + make_desktop_entry lbreakout2 LBreakout2 prepgamesdirs } |