diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2013-12-13 22:14:48 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2013-12-13 22:14:48 +0000 |
commit | 0ca532df4360aa1cb2569c2a0d096679e9a9c9d2 (patch) | |
tree | d45116aa7831f9c174bf134392cb045b1cc10e30 /games-board/sirius | |
parent | Fix broken package installation due to missing roccat group. Patch by poncho ... (diff) | |
download | gentoo-2-0ca532df4360aa1cb2569c2a0d096679e9a9c9d2.tar.gz gentoo-2-0ca532df4360aa1cb2569c2a0d096679e9a9c9d2.tar.bz2 gentoo-2-0ca532df4360aa1cb2569c2a0d096679e9a9c9d2.zip |
EAPI=5; fixup desktop file for bug #494176
(Portage version: 2.2.7/cvs/Linux x86_64, unsigned Manifest commit)
Diffstat (limited to 'games-board/sirius')
-rw-r--r-- | games-board/sirius/ChangeLog | 8 | ||||
-rw-r--r-- | games-board/sirius/sirius-0.8.0.ebuild | 18 |
2 files changed, 16 insertions, 10 deletions
diff --git a/games-board/sirius/ChangeLog b/games-board/sirius/ChangeLog index 64ca3a33de45..726e8a3423b2 100644 --- a/games-board/sirius/ChangeLog +++ b/games-board/sirius/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for games-board/sirius -# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-board/sirius/ChangeLog,v 1.8 2010/08/16 19:58:24 mr_bones_ Exp $ +# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/games-board/sirius/ChangeLog,v 1.9 2013/12/13 22:14:48 mr_bones_ Exp $ + + 13 Dec 2013; Michael Sterrett <mr_bones_@gentoo.org> sirius-0.8.0.ebuild: + EAPI=5; fixup desktop file for bug #494176 16 Aug 2010; Michael Sterrett <mr_bones_@gentoo.org> sirius-0.8.0.ebuild: EAPI=2; make it easier to find for reversi fans (bug #332807) @@ -35,4 +38,3 @@ 07 Jul 2003; Michael Sterrett <msterret@gentoo.org> sirius-0.3.1.ebuild: Initial commit. ebuild based on the one submitted by Andrew Joyce in bug 17729. - diff --git a/games-board/sirius/sirius-0.8.0.ebuild b/games-board/sirius/sirius-0.8.0.ebuild index ba54fa0c5303..8b5e329a521a 100644 --- a/games-board/sirius/sirius-0.8.0.ebuild +++ b/games-board/sirius/sirius-0.8.0.ebuild @@ -1,9 +1,9 @@ -# Copyright 1999-2010 Gentoo Foundation +# Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/games-board/sirius/sirius-0.8.0.ebuild,v 1.9 2010/08/16 19:58:24 mr_bones_ Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-board/sirius/sirius-0.8.0.ebuild,v 1.10 2013/12/13 22:14:48 mr_bones_ Exp $ -EAPI=2 -inherit games +EAPI=5 +inherit autotools games DESCRIPTION="A program for playing the game of othello/reversi" HOMEPAGE="http://sirius.bitvis.nu/" @@ -23,7 +23,12 @@ DEPEND="${RDEPEND} nls? ( sys-devel/gettext )" src_prepare() { - sed -i '/-g -O3/d' configure || die "sed failed" + sed -i -e '/-g -O3/d' configure.in || die + sed -i \ + -e '/Icon/s/\.png//' \ + -e '/Categories/s/Application;//' \ + sirius.desktop.in || die + eautoreconf } src_configure() { @@ -33,7 +38,6 @@ src_configure() { } src_install() { - emake DESTDIR="${D}" install || die "emake install failed" - dodoc AUTHORS BUGS ChangeLog README + default prepgamesdirs } |