diff options
author | Pacho Ramos <pacho@gentoo.org> | 2018-04-22 21:11:02 +0200 |
---|---|---|
committer | Pacho Ramos <pacho@gentoo.org> | 2018-04-22 21:39:47 +0200 |
commit | ffe239fb4fd9b6ebb5b5fe5e444515552e1e5b3f (patch) | |
tree | 290e5bef288fd2442710411dc5e6eedf610e1fe3 /games-arcade/missile | |
parent | net-wireless/broadcom-sta: Add myself as maintainer (diff) | |
download | gentoo-ffe239fb4fd9b6ebb5b5fe5e444515552e1e5b3f.tar.gz gentoo-ffe239fb4fd9b6ebb5b5fe5e444515552e1e5b3f.tar.bz2 gentoo-ffe239fb4fd9b6ebb5b5fe5e444515552e1e5b3f.zip |
games-arcade/missile: Stop using games.eclass
Package-Manager: Portage-2.3.31, Repoman-2.3.9
Diffstat (limited to 'games-arcade/missile')
-rw-r--r-- | games-arcade/missile/files/missile-1.0.1-ldflags.patch | 4 | ||||
-rw-r--r-- | games-arcade/missile/missile-1.0.1-r1.ebuild | 52 |
2 files changed, 54 insertions, 2 deletions
diff --git a/games-arcade/missile/files/missile-1.0.1-ldflags.patch b/games-arcade/missile/files/missile-1.0.1-ldflags.patch index 5d2288165745..744b8192c5b9 100644 --- a/games-arcade/missile/files/missile-1.0.1-ldflags.patch +++ b/games-arcade/missile/files/missile-1.0.1-ldflags.patch @@ -1,5 +1,5 @@ ---- Makefile.old 2010-09-22 09:11:48.000000000 +0200 -+++ Makefile 2010-09-22 09:13:08.000000000 +0200 +--- a/Makefile.old 2010-09-22 09:11:48.000000000 +0200 ++++ b/Makefile 2010-09-22 09:13:08.000000000 +0200 @@ -125,10 +125,10 @@ fi diff --git a/games-arcade/missile/missile-1.0.1-r1.ebuild b/games-arcade/missile/missile-1.0.1-r1.ebuild new file mode 100644 index 000000000000..2e9d9e9874db --- /dev/null +++ b/games-arcade/missile/missile-1.0.1-r1.ebuild @@ -0,0 +1,52 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 +inherit desktop gnome2-utils + +DESCRIPTION="The game Missile Command for Linux" +HOMEPAGE="http://missile.sourceforge.net/" +SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~x86" +IUSE="" + +DEPEND="media-libs/libsdl[sound,video] + media-libs/sdl-image[png] + media-libs/sdl-mixer +" +RDEPEND="${DEPEND}" + +src_prepare() { + default + eapply "${FILESDIR}"/${P}-ldflags.patch + sed -i \ + -e '/^CC/d' \ + -e "s:\$(game_prefix)/\$(game_data):/usr/share/${PN}:" \ + -e "s/-O2/${CFLAGS}/" \ + -e 's/-lSDL_image $(SND_LIBS)/-lSDL_image -lm $(SND_LIBS)/g' \ + Makefile || die +} + +src_install() { + dobin ${PN} + insinto /usr/share/${PN} + doins -r data/* + newicon -s 48 icons/${PN}_icon_black.png ${PN}.png + make_desktop_entry ${PN} "Missile Command" + einstalldocs +} + +pkg_preinst() { + gnome2_icon_savelist +} + +pkg_postinst() { + gnome2_icon_cache_update +} + +pkg_postrm() { + gnome2_icon_cache_update +} |