diff options
author | V3n3RiX <venerix@redcorelinux.org> | 2018-07-14 20:58:29 +0100 |
---|---|---|
committer | V3n3RiX <venerix@redcorelinux.org> | 2018-07-14 20:58:29 +0100 |
commit | 0cf2f20608308acdf3cb922c3736446bbd8f3388 (patch) | |
tree | 07815070629c7c11000a7f51ceb8ccbccb49a809 /games-action/bomberclone | |
parent | 1798c4aeca70ac8d0a243684d6a798fbc65735f8 (diff) |
gentoo resync : 14.07.2018
Diffstat (limited to 'games-action/bomberclone')
-rw-r--r-- | games-action/bomberclone/Manifest | 5 | ||||
-rw-r--r-- | games-action/bomberclone/bomberclone-0.11.8-r1.ebuild | 59 | ||||
-rw-r--r-- | games-action/bomberclone/files/bomberclone-0.11.8-gcc52.patch | 11 | ||||
-rw-r--r-- | games-action/bomberclone/files/bomberclone-0.11.8-underlink.patch | 20 | ||||
-rw-r--r-- | games-action/bomberclone/metadata.xml | 11 |
5 files changed, 0 insertions, 106 deletions
diff --git a/games-action/bomberclone/Manifest b/games-action/bomberclone/Manifest deleted file mode 100644 index a3857946adc9..000000000000 --- a/games-action/bomberclone/Manifest +++ /dev/null @@ -1,5 +0,0 @@ -AUX bomberclone-0.11.8-gcc52.patch 223 BLAKE2B bbce3a29a92c94a7e55e02514d1c3d197517d48e8660eabe11e13cf8dd75068a379f9e621f2b864640a7830df2d84b667b2b4356a7704e8403216774b2957f62 SHA512 a536ce4130f6dca9aaaeb79a4b4501edee1f52e020f333202f592477839409f4691ad95735cffd9f178e21c8ea8e885a908684f39e3477fd0d4137b9f8c49012 -AUX bomberclone-0.11.8-underlink.patch 434 BLAKE2B e0cf13a2d51d2597583877c8ab5add8cb76b1482f14fef7cf33c40573864f5c4c42ed346291635ec467c3f2d3baaf3a9673c9ede3f8a37d0a062d37064c71568 SHA512 78738422f3a83a9dbfa03976701bb136c4326b9bb6fca310968518c77c2a6440ba9291a568162773bf0f48691a8039e0c461972c0d8f9e40d4b54525a2db9840 -DIST bomberclone-0.11.8.tar.bz2 7966452 BLAKE2B ab090be622e891ae803529360d8bd753ac64b9d66b045d06946735a06e9203bf07a32dddd165f038ea484d584383ed760a5bf9e5d206638438ecb10583734225 SHA512 a5e52db43f7f508993231ec13bb2705f60e25cfc21d15c17d9b422c6fc948dc14cc8c4519acfac2e9b7b32a3072dc3a521fbf28b2150a86cfb4099ced72ab79b -EBUILD bomberclone-0.11.8-r1.ebuild 1207 BLAKE2B 5d38c6b10c187793d213ad9f6d1532b90c00a3e183d35d5a692246a5973e6a15e72cffe272ab9e16800ee55bd06712501dda3e4d3d6f24b4944a2baed03a3ee8 SHA512 d0d5713d51c53183c191ef3bd1b23df1661a631b29bac38bee10d3cfc4e2b8ec343d7b7190ed137f13316cdff890610835f5a95eb7c7186bec0bbcc7636bd725 -MISC metadata.xml 334 BLAKE2B 5d34b252ed17c0a05782417336de98dfc5196ad854dd1705e286781eecee9d7e3081f46d1dc9014a39e8b236ca082a1c14af26e8ce4c26652e510644eda46b18 SHA512 0e309d5ada167696d234e2e2c44cb045607018801b9e03fab79bc2496c66f6e484364200320bf6124fb5fdd787d798de6052fa659862336d233cd6bd1eb8e5e9 diff --git a/games-action/bomberclone/bomberclone-0.11.8-r1.ebuild b/games-action/bomberclone/bomberclone-0.11.8-r1.ebuild deleted file mode 100644 index 31eb3fe53e87..000000000000 --- a/games-action/bomberclone/bomberclone-0.11.8-r1.ebuild +++ /dev/null @@ -1,59 +0,0 @@ -# Copyright 1999-2018 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 -inherit eutils autotools - -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=/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 '{}' + - - doicon data/pixmaps/bomberclone.png - make_desktop_entry bomberclone Bomberclone -} diff --git a/games-action/bomberclone/files/bomberclone-0.11.8-gcc52.patch b/games-action/bomberclone/files/bomberclone-0.11.8-gcc52.patch deleted file mode 100644 index fd77e1b7b1d6..000000000000 --- a/games-action/bomberclone/files/bomberclone-0.11.8-gcc52.patch +++ /dev/null @@ -1,11 +0,0 @@ ---- a/src/single.c 2015-09-17 09:21:57.826930680 +0200 -+++ b/src/single.c 2015-09-17 09:22:04.315824372 +0200 -@@ -476,7 +476,7 @@ - }; - - --inline int -+static inline int - ai_checknewpos (_point pos, int d) - { - _point m; diff --git a/games-action/bomberclone/files/bomberclone-0.11.8-underlink.patch b/games-action/bomberclone/files/bomberclone-0.11.8-underlink.patch deleted file mode 100644 index 18c063b56db9..000000000000 --- a/games-action/bomberclone/files/bomberclone-0.11.8-underlink.patch +++ /dev/null @@ -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 - - diff --git a/games-action/bomberclone/metadata.xml b/games-action/bomberclone/metadata.xml deleted file mode 100644 index 3948f34d5eb8..000000000000 --- a/games-action/bomberclone/metadata.xml +++ /dev/null @@ -1,11 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> -<pkgmetadata> - <maintainer type="project"> - <email>games@gentoo.org</email> - <name>Gentoo Games Project</name> - </maintainer> - <upstream> - <remote-id type="sourceforge">bomberclone</remote-id> - </upstream> -</pkgmetadata> |