games-arcade/sdlsasteroids: Stop using games.eclass
authorPacho Ramos <pacho@gentoo.org>
Tue, 24 Apr 2018 17:40:56 +0000 (19:40 +0200)
committerPacho Ramos <pacho@gentoo.org>
Tue, 24 Apr 2018 19:26:01 +0000 (21:26 +0200)
Package-Manager: Portage-2.3.31, Repoman-2.3.9

games-arcade/sdlsasteroids/files/sdlsasteroids-3.0.1-gcc43.patch
games-arcade/sdlsasteroids/files/sdlsasteroids-3.0.1-ldflags.patch
games-arcade/sdlsasteroids/sdlsasteroids-3.0.1-r1.ebuild [new file with mode: 0644]

index 5ee05328e89706e3431006284874cd7a60ecb67d..9863f0c051e95f67b4818644e1f25546df3ea703 100644 (file)
@@ -1,5 +1,5 @@
---- src/sbitmap.h
-+++ src/sbitmap.h
+--- a/src/sbitmap.h
++++ b/src/sbitmap.h
 @@ -36,7 +36,7 @@
    void LoadImage(char* path);
    void LoadSurface(SDL_Surface* surface);
index 302c912efe188c015172cfd1f04a6b4b2a4703dd..581010b51388d62c89b1241ccf2db123194bb256 100644 (file)
@@ -1,5 +1,5 @@
---- src/Makefile.old   2010-09-22 08:44:57.000000000 +0200
-+++ src/Makefile       2010-09-22 08:45:43.000000000 +0200
+--- a/src/Makefile.old 2010-09-22 08:44:57.000000000 +0200
++++ b/src/Makefile     2010-09-22 08:45:43.000000000 +0200
 @@ -26,7 +26,7 @@
  
  
diff --git a/games-arcade/sdlsasteroids/sdlsasteroids-3.0.1-r1.ebuild b/games-arcade/sdlsasteroids/sdlsasteroids-3.0.1-r1.ebuild
new file mode 100644 (file)
index 0000000..24ecc15
--- /dev/null
@@ -0,0 +1,58 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+inherit desktop
+
+DESCRIPTION="Rework of Sasteroids using SDL"
+HOMEPAGE="http://sdlsas.sourceforge.net/"
+SRC_URI="mirror://sourceforge/sdlsas/SDLSasteroids-${PV}.tar.gz"
+
+LICENSE="GPL-2 freedist"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+DEPEND="virtual/opengl
+       media-libs/sdl-mixer
+       media-libs/libsdl[sound,joystick,video]
+       media-libs/sdl-image[png]
+       media-libs/sdl-ttf"
+RDEPEND="${DEPEND}"
+
+S="${WORKDIR}/SDLSasteroids-${PV}"
+
+src_prepare() {
+       default
+       eapply \
+               "${FILESDIR}"/${P}-gcc43.patch \
+               "${FILESDIR}"/${P}-ldflags.patch
+       sed -i \
+               -e 's/make /$(MAKE) /' \
+               -e 's/--strip//' \
+               Makefile || die
+       sed -i \
+               -e '/^CC/d' \
+               -e 's/g++/$(CXX)/' \
+               -e 's/CC/CXX/' \
+               -e 's/CFLAGS/CXXFLAGS/' \
+               src/Makefile || die
+}
+
+src_compile() {
+       emake \
+               GAMEDIR="/usr/share/${PN}" \
+               OPTS="${CXXFLAGS}"
+}
+
+src_install() {
+       dodir /usr/share/man/man6/
+       emake \
+               GAMEDIR="${D}/usr/share/${PN}" \
+               BINDIR="${D}/usr/bin" \
+               MANDIR="${D}/usr/share/man/" \
+               install
+       dodoc ChangeLog README README.xast TODO description
+       newicon graphics/sprite/bigast.png ${PN}.png
+       make_desktop_entry sasteroids "Sasteroids" ${PN}
+}