diff options
author | V3n3RiX <venerix@redcorelinux.org> | 2017-12-21 20:47:17 +0000 |
---|---|---|
committer | V3n3RiX <venerix@redcorelinux.org> | 2017-12-21 20:47:17 +0000 |
commit | 4ab6db5717ef23f29320d4c6fb9ebdb8dec1f193 (patch) | |
tree | f7640b8b96a04499f1ce44a2cad122d45a8373bd /games-action/xblast | |
parent | 48bdeb0db9c7ffed22c6eb859ee40b55ba598b86 (diff) |
gentoo resync : 21.12.2017
Diffstat (limited to 'games-action/xblast')
-rw-r--r-- | games-action/xblast/Manifest | 1 | ||||
-rw-r--r-- | games-action/xblast/xblast-2.10.4.ebuild | 69 |
2 files changed, 0 insertions, 70 deletions
diff --git a/games-action/xblast/Manifest b/games-action/xblast/Manifest index 102a7afb5ec2..2a57f286f8ba 100644 --- a/games-action/xblast/Manifest +++ b/games-action/xblast/Manifest @@ -5,5 +5,4 @@ DIST musics-2005-01-06.tar.gz 5317575 BLAKE2B 583d33535c5e80f691e9be7545038ca5de DIST sounds.tar.gz 1612625 BLAKE2B eb1ce96370dfafd254ef50334bd6e296045da6825773704d95f5778e854da4c1460fc0a24ae6c3e0c2c3784723fbce4198dfd7331ca9c18ab0324fef6ef6f3f1 SHA512 69518766ce1cc1bef543964acb077de51c361f1a880ebc11bd0d381fe082af0e013d116aad606a18c94855a08c5a2892cb5d0d5a259b081119bb8d355a94e2b2 DIST xblast-2.10.4.tar.gz 684965 BLAKE2B e9709f539705b9e14831fa036c540877d0d55ce8c975048c8eac0abbf2e391e36b37e4c119118d73f5bf5e888f3fbef4c1dba361b3ba1874909644f948c57613 SHA512 6b3be0d41d18cf8da721030fa87c00ffed81d29706a20dd254a07b9cc8af79bd09f63ebb7f575c1665b77b9f58f29bec74b84f27fd2106d704c2fe2d5513a835 EBUILD xblast-2.10.4-r1.ebuild 1502 BLAKE2B ac7176dc595c8ccf528d4f6f1081b3a93e8a62de501a6bfbbde057320808922457e089c3cf17bea6ceec4744f2ad17e445eb96b2f588bb5eec6b1f12de349669 SHA512 d9150e8a8f0d067cb77f9079f84b80f88f5854e48658c8381a52856f170fb0d28b9427a5ae8432b583a5646a35ea303ab811cccc6b0f4995fd08553994f42224 -EBUILD xblast-2.10.4.ebuild 1552 BLAKE2B 3538c8dd2a70712b022346ad02ef79342b0f6972115660e2254e6fb74a1510843e49adf61f59a634fd159b52dcfcc7ba0431b28eda75785cbb0f78036225cfa9 SHA512 3ca964219f81565865cd05f52279be3d3a17ef504c587088f4ac9f332f6db689c2b54c71df7b26053ba14db68152900214827592aa2fa970130fa89a687be95d MISC metadata.xml 329 BLAKE2B 66da783ba5a7a3e13a073e0de391ded501a39c26cf4e3cf47a13fec1f36fcc0305efe5a5524d8814bf23a0424d38358820fe554f5f78af50a72cdc125bb80712 SHA512 6afab2e751e3e0a5a2199915dc2ae3149af070ee43ca200c88514ad783b0801f0e22c1c7a4026079af36d3a9b3deb016f2f57e93867d8a8e989660e744f56744 diff --git a/games-action/xblast/xblast-2.10.4.ebuild b/games-action/xblast/xblast-2.10.4.ebuild deleted file mode 100644 index 9684e67bb75e..000000000000 --- a/games-action/xblast/xblast-2.10.4.ebuild +++ /dev/null @@ -1,69 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 -inherit autotools games - -# Change these as releases changes -IMAGES="images-2005-01-06" -LEVELS="levels-2005-01-06" -MODELS="models-2005-01-06" -MUSICS="musics-2005-01-06" -SOUNDS="sounds" - -DESCRIPTION="Bomberman clone w/network support for up to 6 players" -HOMEPAGE="http://xblast.sourceforge.net/" -SRC_URI="mirror://sourceforge/xblast/${P}.tar.gz - mirror://sourceforge/xblast/${IMAGES}.tar.gz - mirror://sourceforge/xblast/${LEVELS}.tar.gz - mirror://sourceforge/xblast/${MODELS}.tar.gz - mirror://sourceforge/xblast/${MUSICS}.tar.gz - mirror://sourceforge/xblast/${SOUNDS}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="" - -RDEPEND="x11-libs/libICE - x11-libs/libX11 - media-libs/libpng:0" -DEPEND="${RDEPEND} - x11-libs/libXt" - -src_prepare() { - eautoreconf #255857 -} - -src_configure() { - egamesconf \ - --with-otherdatadir="${GAMES_DATADIR}"/${PN} \ - --enable-sound -} - -src_install() { - local IMAGE_INSTALL_DIR="${GAMES_DATADIR}/${PN}/image" - - default - - # Images - dodir "${IMAGE_INSTALL_DIR}" - cp -pPR "${WORKDIR}/${IMAGES}"/* "${D}/${IMAGE_INSTALL_DIR}" || die - - # Levels - insinto "${GAMES_DATADIR}/xblast/level" - doins "${WORKDIR}/${LEVELS}"/* - - # Models - insinto "${GAMES_DATADIR}/xblast/image/sprite" - doins "${WORKDIR}/${MODELS}"/* - - # Music and sound - insinto "${GAMES_DATADIR}/xblast/sounds" - doins "${WORKDIR}/${MUSICS}"/* "${WORKDIR}/${SOUNDS}"/* - - # Cleanup - find "${D}" -name Imakefile -exec rm \{\} \; - - prepgamesdirs -} |