games-action/bomberclone: Drop old 0.11.8

Package-Manager: Portage-2.3.66, Repoman-2.3.12
Signed-off-by: James Le Cuirot <chewi@gentoo.org>
This commit is contained in:
James Le Cuirot
2019-05-10 23:46:07 +01:00
parent 6b4970b4e7
commit 362a6ba108
3 changed files with 0 additions and 80 deletions

View File

@@ -1,2 +1 @@
DIST bomberclone-0.11.8.tar.bz2 7966452 BLAKE2B ab090be622e891ae803529360d8bd753ac64b9d66b045d06946735a06e9203bf07a32dddd165f038ea484d584383ed760a5bf9e5d206638438ecb10583734225 SHA512 a5e52db43f7f508993231ec13bb2705f60e25cfc21d15c17d9b422c6fc948dc14cc8c4519acfac2e9b7b32a3072dc3a521fbf28b2150a86cfb4099ced72ab79b
DIST bomberclone-0.11.9.tar.gz 8109837 BLAKE2B b5ec7cc80b2fe4f7517302029e5e943dd673ce910148f5985a9063f19e67c5fbdb21634f8fead60728b900383f24b67b1fc2b27d1a36c07ab1cfae8f228a4fb7 SHA512 80b3db728d7c54bc421a783c7e3753289e1ecb8500e9c8457d92ce226ebe60f47c2b04fd684c1aae57b1c5968ea3d1fce53c9c269a1fc9e685589fdd0513a439

View File

@@ -1,59 +0,0 @@
# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
inherit autotools desktop vcs-clean
DESCRIPTION="BomberMan clone with network game support"
HOMEPAGE="https://www.bomberclone.de/"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~mips ~ppc64 ~x86"
IUSE="X"
DEPEND=">=media-libs/libsdl-1.1.0[video]
media-libs/sdl-image[png]
media-libs/sdl-mixer[mod]
X? ( x11-libs/libXt )"
RDEPEND="${DEPEND}"
PATCHES=(
"${FILESDIR}"/${P}-gcc52.patch
"${FILESDIR}"/${P}-underlink.patch
)
src_prepare() {
default
ecvs_clean
mv configure.{in,ac} || die
sed -i -e 's/configure.in/configure.ac/' configure.ac || die
sed -i \
-e "s:/share/games/:share/:" \
configure.ac || die
eautoreconf
}
src_configure() {
econf \
$(use_with X x) \
--datadir="${EPREFIX}"/usr/share
sed -i \
-e "/PACKAGE_DATA_DIR/ s:/usr/games/share/games/:/usr/share:" \
config.h || die
}
src_install() {
default
dobin src/${PN}
insinto /usr/share/${PN}
doins -r data/{gfx,maps,player,tileset,music}
find "${D}" -name "Makefile*" -exec rm -f '{}' + || die
doicon data/pixmaps/bomberclone.png
make_desktop_entry bomberclone Bomberclone
}

View File

@@ -1,20 +0,0 @@
--- a/configure.in 2011-06-18 18:23:48.633605738 +0200
+++ b/configure.in 2011-06-18 18:26:26.910628408 +0200
@@ -33,7 +33,7 @@
)
CFLAGS="$SDL_CFLAGS $CFLAGS"
- LIBS="$SDL_LIBS $LIBS"
+ LIBS="$SDL_LIBS $LIBS -lm"
dnl Checks for header files.
@@ -84,7 +84,7 @@
CFLAGS="$CFLAGS -Wall"
AC_MSG_WARN(Disable Warning as Error Treatment)
else
- CFLAGS="$CFLAGS -Wall -Werror"
+ CFLAGS="$CFLAGS -Wall"
fi