summaryrefslogtreecommitdiff
path: root/games-action/lugaru
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2017-12-21 20:47:17 +0000
committerV3n3RiX <venerix@redcorelinux.org>2017-12-21 20:47:17 +0000
commit4ab6db5717ef23f29320d4c6fb9ebdb8dec1f193 (patch)
treef7640b8b96a04499f1ce44a2cad122d45a8373bd /games-action/lugaru
parent48bdeb0db9c7ffed22c6eb859ee40b55ba598b86 (diff)
gentoo resync : 21.12.2017
Diffstat (limited to 'games-action/lugaru')
-rw-r--r--games-action/lugaru/Manifest2
-rw-r--r--games-action/lugaru/lugaru-20151204.ebuild57
-rw-r--r--games-action/lugaru/lugaru-9999.ebuild63
3 files changed, 0 insertions, 122 deletions
diff --git a/games-action/lugaru/Manifest b/games-action/lugaru/Manifest
index 2d67217305f0..658710153c55 100644
--- a/games-action/lugaru/Manifest
+++ b/games-action/lugaru/Manifest
@@ -2,6 +2,4 @@ AUX lugaru-20151204-dir.patch 317 BLAKE2B 47b73dad97c8a853eb14d6718db18e05416077
AUX lugaru-9999-dir.patch 317 BLAKE2B 47b73dad97c8a853eb14d6718db18e0541607770419da6b95eb56791f5629a0ebcb1600506934aea30d3cb216c91d38fa8cf45735b0049435693a39a229c48aa SHA512 c0830385ca57dfda082596f65e7166ba71148fcb2b99e416a4a6ef8882c280a823e6308fce9fcfab62127667a10f0ed0ef49df60f1f39627615ff21c9ffd62e2
DIST lugaru-20151204.tar.bz2 88950866 BLAKE2B d1d42f8d06d20d8f06fbe52d95c925fefc0453cc577dc5a023189eb77508361737ab01298f2035c3071ac7f8a239ee47c13bb8bafa852dd3b5cdecc971e9b4ed SHA512 8e448b782847376ac10585996a91a571fd005ac51e0e510765a35bf44bfcbb09e566d9a9c3d87277e69511b0f8d74c04edcc4b59f467bed640d8ba7c74045e30
EBUILD lugaru-20151204-r1.ebuild 1158 BLAKE2B 6d8c1123f6d1340afaca28b10167a058c9b53d761b2cfa2ef51b98302686494a20dceb86e0e00f267d2f12ae038501486a9d3cdf1a0dce22fe0c526b16ec70cc SHA512 c71ed998364c6938154a298ed6ff6333ed93fc5c27eba047537823c2e1141671b313b51f0a3758def6e81418372119f2bbb81fc8678e632034c648af5d1e6cf1
-EBUILD lugaru-20151204.ebuild 1197 BLAKE2B 510c84020ed89c529f6c24d8d4272d97f8f1d227a873a2d7d35bb6c7ceb0562bf6fad4144b90bfdb1f7231da313052e94a7e4d4ab4f16e2d0c9a08ab9ff33a32 SHA512 e222cd5cbf9b21779bbfd18ba1aa70bb4dbd0f19f3fe9ede84a7c72d0c772044fb76a42c64db96c422559e3e37b2a0835d27e22c2e56853ea75373d09968025a
-EBUILD lugaru-9999.ebuild 1236 BLAKE2B 9ed69986fd4e983341b0ab75999c13051ff660879d470876891eb74e74af7895dd24d2958b02397cbc006c41a3e70b765d250ef0c2cfee3abf6131cc44221559 SHA512 7cc6f48522395dd75beb3b5ce5efd3bd8cd86ce19ff2f69715099f16e0ad6fe0cafe9f6963ba9b847199460fa9dfc2dbf0c9527de2d03912dd232f93a2dbfb11
MISC metadata.xml 337 BLAKE2B 5fa6d71103f9aad7af7d0766be33b63f5dcdcbba20c043a2d1183b18a23f4910d49d411defb7f1c604ef085437956af72a55fa366734be5827a3d736bc71f72f SHA512 10af1cda47d8d683fc8245f23c05243fb5809636399d75779081a3da09209829da31a8d5fa070687656e9c235e78c75f1571b5b4f1a686359a11d1232a543b5e
diff --git a/games-action/lugaru/lugaru-20151204.ebuild b/games-action/lugaru/lugaru-20151204.ebuild
deleted file mode 100644
index 9b7d86629c3d..000000000000
--- a/games-action/lugaru/lugaru-20151204.ebuild
+++ /dev/null
@@ -1,57 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-inherit eutils cmake-utils games
-
-DESCRIPTION="3D arcade with unique fighting system and anthropomorphic characters"
-HOMEPAGE="https://bitbucket.org/osslugaru/lugaru/wiki/Home"
-SRC_URI="mirror://gentoo/${P}.tar.bz2"
-
-LICENSE="GPL-2+ free-noncomm CC-BY-SA-3.0"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-RDEPEND="
- virtual/glu
- virtual/opengl
- media-libs/libsdl[opengl,video]
- media-libs/openal
- media-libs/libvorbis
- virtual/jpeg:0
- media-libs/libpng:0
- sys-libs/zlib"
-DEPEND="${RDEPEND}
- virtual/pkgconfig"
-
-PATCHES=( "${FILESDIR}/${P}-dir.patch" )
-
-src_prepare() {
- cmake-utils_src_prepare
-
- sed -i \
- -e "s:@GENTOO_DIR@:${GAMES_DATADIR}/${PN}:" \
- Source/OpenGL_Windows.cpp || die
-}
-
-src_configure() {
- mycmakeargs=(
- "-DCMAKE_VERBOSE_MAKEFILE=TRUE"
- "-DLUGARU_FORCE_INTERNAL_OPENGL=False"
- )
- cmake-utils_src_configure
-}
-
-src_compile() {
- cmake-utils_src_compile
-}
-
-src_install() {
- dogamesbin "${WORKDIR}/${P}_build/lugaru"
- insinto "${GAMES_DATADIR}/${PN}"
- doins -r Data/
- newicon Source/win-res/Lugaru.png ${PN}.png
- make_desktop_entry ${PN} Lugaru ${PN}
- prepgamesdirs
-}
diff --git a/games-action/lugaru/lugaru-9999.ebuild b/games-action/lugaru/lugaru-9999.ebuild
deleted file mode 100644
index 2e65288097ba..000000000000
--- a/games-action/lugaru/lugaru-9999.ebuild
+++ /dev/null
@@ -1,63 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-inherit eutils cmake-utils mercurial
-
-EHG_REPO_URI="https://bitbucket.org/osslugaru/lugaru/"
-DESCRIPTION="3D arcade with unique fighting system and anthropomorphic characters"
-HOMEPAGE="https://bitbucket.org/osslugaru/lugaru/wiki/Home"
-SRC_URI=""
-
-LICENSE="GPL-2+ free-noncomm CC-BY-SA-3.0"
-SLOT="0"
-KEYWORDS=""
-IUSE=""
-
-RDEPEND="
- media-libs/libsdl[opengl,video]
- media-libs/libpng:0
- media-libs/libvorbis
- media-libs/openal
- sys-libs/zlib
- virtual/glu
- virtual/jpeg:0
- virtual/opengl"
-DEPEND="${RDEPEND}
- virtual/pkgconfig"
-
-src_unpack() {
- mercurial_src_unpack
-}
-
-PATCHES=(
- "${FILESDIR}/${P}-dir.patch"
-)
-
-src_prepare() {
- cmake-utils_src_prepare
-
- sed -i \
- -e "s:@GENTOO_DIR@:/usr/share/${PN}:" \
- Source/OpenGL_Windows.cpp || die
-}
-
-src_configure() {
- mycmakeargs=(
- "-DCMAKE_VERBOSE_MAKEFILE=TRUE"
- "-DLUGARU_FORCE_INTERNAL_OPENGL=False"
- )
- cmake-utils_src_configure
-}
-
-src_compile() {
- cmake-utils_src_compile
-}
-
-src_install() {
- dobin "${WORKDIR}/${P}_build/lugaru"
- insinto /usr/share/${PN}
- doins -r Data/
- newicon Source/win-res/Lugaru.png ${PN}.png
- make_desktop_entry ${PN} Lugaru ${PN}
-}