summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Seifert <soap@gentoo.org>2017-12-20 22:30:26 +0100
committerDavid Seifert <soap@gentoo.org>2017-12-21 02:49:17 +0100
commitea9ea920176d6f94d813abd3405f2b818b29f9a1 (patch)
tree8873e447c82df15352c06a93d5389bbb1a5ef775 /games-rpg/daimonin-client
parentgames-rpg/adonthell: Remove old (diff)
downloadgentoo-ea9ea920176d6f94d813abd3405f2b818b29f9a1.tar.gz
gentoo-ea9ea920176d6f94d813abd3405f2b818b29f9a1.tar.bz2
gentoo-ea9ea920176d6f94d813abd3405f2b818b29f9a1.zip
games-rpg/daimonin-client: Remove old
Package-Manager: Portage-2.3.16, Repoman-2.3.6
Diffstat (limited to 'games-rpg/daimonin-client')
-rw-r--r--games-rpg/daimonin-client/Manifest2
-rw-r--r--games-rpg/daimonin-client/daimonin-client-0.10.5-r1.ebuild70
-rw-r--r--games-rpg/daimonin-client/daimonin-client-0.10.5.ebuild65
3 files changed, 0 insertions, 137 deletions
diff --git a/games-rpg/daimonin-client/Manifest b/games-rpg/daimonin-client/Manifest
index fe753f5c8db3..ce131c6dfd56 100644
--- a/games-rpg/daimonin-client/Manifest
+++ b/games-rpg/daimonin-client/Manifest
@@ -1,4 +1,2 @@
-DIST daimonin-client-0.10.5.tar.gz 15554328 BLAKE2B 11024e4a4fd59276ebc96155bf1aab074efbe03a8f75a3f05a71fc1b623cab2bc2a5d77962383088b4ab1a850a28ffa52811b382db6950dea4c8d3b2d06f5c19 SHA512 7f961105f368d7b4279c03e90028581a0efe998311f334f87d4ca6ff22df1a62f9b5911adf20822a282d7ed3796d8cb0643ab458cc51fb46cf3b90815164ac04
DIST daimonin-client-0.10.8.zip 51894462 BLAKE2B 9803b0e597134fa605ffc4e38b2f6f58cd76d45141bb0d5c5387e9b507c4b80b4a566d266b622df7ea38b3e9eb00e839981bcb999ac2d14e59a8cff37340f6fa SHA512 f4f5891697f96a60a8ee79973b0172b544cbae25b2d8787e0a4e9113d95be3b41b8c29c80ba5cbaf7548055e4c847456fa364346489f4d6ad165b984cfd64531
-DIST daimonin-client-AllMusic-20100827.zip 86844919 BLAKE2B b0f22b585e66961a744d59f98b4f14206fbdd126fa9d6d72bbc35280892b31fd3127d6098316b8cfacc2bee0e932ab246c5acaa2a9b703db077e7a40039298a0 SHA512 50ec9524bd934a715271ddef1ea2cec855e93607e5befd1b18b74493400c9e1b2e6e5d829f3b21088b28c67635c0d1479eec53e1626c680f1d34081292607c9f
DIST daimoninMusicLQ20100827.zip 24293301 BLAKE2B 35ee421c0db8f0ff29768b58af8fbc1d804d24534b8558631c97cf36b624999d0e5f422cd32e4a13bc09765b183bfd52270b33f2614023202211399e3d5da484 SHA512 f24bba24c0e9a79469511315c608c464568f3ee0dc05b3d83c791512fa51eae07669dc175e7672cc8b31764a7bdff5c975ac2b13e2d7b0e5287717e188f1d439
diff --git a/games-rpg/daimonin-client/daimonin-client-0.10.5-r1.ebuild b/games-rpg/daimonin-client/daimonin-client-0.10.5-r1.ebuild
deleted file mode 100644
index 048a72617b0b..000000000000
--- a/games-rpg/daimonin-client/daimonin-client-0.10.5-r1.ebuild
+++ /dev/null
@@ -1,70 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-inherit eutils autotools
-
-MY_P=${PN}-${PV}
-DESCRIPTION="a graphical 2D tile-based MMORPG"
-HOMEPAGE="http://daimonin.sourceforge.net/"
-SRC_URI="http://daimonin.svn.sourceforge.net/viewvc/daimonin/main/client/?view=tar&pathrev=6021
- -> daimonin-client-0.10.5.tar.gz
- music? ( mirror://sourceforge/daimonin/Addon%20packs/Music/AllMusic.zip
- -> daimonin-client-AllMusic-20100827.zip )"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="debug music"
-
-RDEPEND="
- dev-games/physfs
- media-libs/libsdl[sound,video]
- media-libs/sdl-image[png]
- media-libs/sdl-mixer[vorbis]
- net-misc/curl"
-DEPEND="${RDEPEND}
- music? ( app-arch/unzip )"
-
-S=${WORKDIR}/client/make/linux
-
-PATCHES=(
- "${FILESDIR}"/${P}-nozlib.patch
-)
-
-src_unpack() {
- unpack ${MY_P}.tar.gz
- if use music ; then
- cd client/media || die
- rm -f * || die
- unpack ${PN}-AllMusic-20100827.zip
- fi
-}
-
-src_prepare() {
- default
- rm ../../src/include/z{lib,conf}.h || die
- sed -i \
- -e 's:$(d_datadir):$(DESTDIR)$(d_datadir):' \
- -e '/PROGRAMS/s:daimonin-updater::' \
- Makefile.am \
- || die "sed failed"
- eautoreconf
- cd ../../src || die
- # Not relative to $S, so can't be applied via $PATCHES[@]
- eapply "${FILESDIR}"/${P}-datadir.patch
-}
-
-src_configure() {
- econf \
- --disable-simplelayout \
- $(use_enable debug)
-}
-
-src_install() {
- default
- cd ../.. || die
- dodoc README*
- newicon bitmaps/pentagram.png ${PN}.png
- make_desktop_entry daimonin Daimonin
-}
diff --git a/games-rpg/daimonin-client/daimonin-client-0.10.5.ebuild b/games-rpg/daimonin-client/daimonin-client-0.10.5.ebuild
deleted file mode 100644
index 484da8219d56..000000000000
--- a/games-rpg/daimonin-client/daimonin-client-0.10.5.ebuild
+++ /dev/null
@@ -1,65 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-inherit eutils autotools games
-
-MY_P=${PN}-${PV}
-DESCRIPTION="a graphical 2D tile-based MMORPG"
-HOMEPAGE="http://daimonin.sourceforge.net/"
-SRC_URI="http://daimonin.svn.sourceforge.net/viewvc/daimonin/main/client/?view=tar&pathrev=6021
- -> daimonin-client-0.10.5.tar.gz
- music? ( mirror://sourceforge/daimonin/Addon%20packs/Music/AllMusic.zip
- -> daimonin-client-AllMusic-20100827.zip )"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="music debug"
-
-RDEPEND="media-libs/libsdl[sound,video]
- media-libs/sdl-mixer[vorbis]
- media-libs/sdl-image[png]
- dev-games/physfs
- net-misc/curl"
-DEPEND="${RDEPEND}
- music? ( app-arch/unzip )"
-
-S=${WORKDIR}/client/make/linux
-
-src_unpack() {
- unpack ${MY_P}.tar.gz
- if use music ; then
- cd client/media
- rm -f *
- unpack ${PN}-AllMusic-20100827.zip
- fi
-}
-
-src_prepare() {
- epatch "${FILESDIR}"/${P}-nozlib.patch
- rm ../../src/include/z{lib,conf}.h
- sed -i \
- -e 's:$(d_datadir):$(DESTDIR)$(d_datadir):' \
- -e '/PROGRAMS/s:daimonin-updater::' \
- Makefile.am \
- || die "sed failed"
- eautoreconf
- cd ../../src
- epatch "${FILESDIR}"/${P}-datadir.patch
-}
-
-src_configure() {
- egamesconf \
- --disable-simplelayout \
- $(use_enable debug)
-}
-
-src_install() {
- default
- cd ../..
- dodoc README*
- newicon bitmaps/pentagram.png ${PN}.png
- make_desktop_entry daimonin Daimonin
- prepgamesdirs
-}