diff options
Diffstat (limited to 'games-puzzle/atomix')
-rw-r--r-- | games-puzzle/atomix/ChangeLog | 7 | ||||
-rw-r--r-- | games-puzzle/atomix/atomix-2.14.0.ebuild | 15 |
2 files changed, 17 insertions, 5 deletions
diff --git a/games-puzzle/atomix/ChangeLog b/games-puzzle/atomix/ChangeLog index aa4d26f354ff..7037020be599 100644 --- a/games-puzzle/atomix/ChangeLog +++ b/games-puzzle/atomix/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for games-puzzle/atomix -# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-puzzle/atomix/ChangeLog,v 1.14 2012/05/04 04:45:28 jdhore Exp $ +# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/games-puzzle/atomix/ChangeLog,v 1.15 2013/11/04 19:44:33 mr_bones_ Exp $ + + 04 Nov 2013; Michael Sterrett <mr_bones_@gentoo.org> atomix-2.14.0.ebuild: + remove warnings from the desktop file 04 May 2012; Jeff Horelick <jdhore@gentoo.org> atomix-2.14.0.ebuild: dev-util/pkgconfig -> virtual/pkgconfig diff --git a/games-puzzle/atomix/atomix-2.14.0.ebuild b/games-puzzle/atomix/atomix-2.14.0.ebuild index cc4b392f2d8b..2aacf096fa52 100644 --- a/games-puzzle/atomix/atomix-2.14.0.ebuild +++ b/games-puzzle/atomix/atomix-2.14.0.ebuild @@ -1,8 +1,9 @@ -# Copyright 1999-2012 Gentoo Foundation +# Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/games-puzzle/atomix/atomix-2.14.0.ebuild,v 1.7 2012/05/04 04:45:28 jdhore Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-puzzle/atomix/atomix-2.14.0.ebuild,v 1.8 2013/11/04 19:44:33 mr_bones_ Exp $ -EAPI=2 +EAPI=5 +GNOME_TARBALL_SUFFIX=bz2 inherit gnome2 DESCRIPTION="a game where you build full molecules, from simple inorganic to extremely complex organic ones" @@ -30,3 +31,11 @@ DEPEND="${RDEPEND} >=dev-util/intltool-0.17" DOCS="AUTHORS ChangeLog NEWS README" + +src_prepare() { + sed -i \ + -e '/Icon/s/\.png//' \ + -e '/Categories/s/PuzzleGame;//' \ + atomix.desktop.in || die + gnome2_src_prepare +} |