public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Azamat H. Hackimov" <winterheart@gentoo.ru>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] proj/gamerlay:master commit in: games-arcade/aquaria/
Date: Fri,  5 Feb 2021 19:26:40 +0000 (UTC)	[thread overview]
Message-ID: <1612553158.e375b49fd96d9e7fbf9e1a58f4f350f9d4c3e402.winterheart@gentoo> (raw)

commit:     e375b49fd96d9e7fbf9e1a58f4f350f9d4c3e402
Author:     Azamat H. Hackimov <azamat.hackimov <AT> gmail <DOT> com>
AuthorDate: Fri Feb  5 18:02:26 2021 +0000
Commit:     Azamat H. Hackimov <winterheart <AT> gentoo <DOT> ru>
CommitDate: Fri Feb  5 19:25:58 2021 +0000
URL:        https://gitweb.gentoo.org/proj/gamerlay.git/commit/?id=e375b49f

games-arcade/aquaria: remove package

Unmaintained, failed to compile.
Signed-off-by: Azamat H. Hackimov <azamat.hackimov <AT> gmail.com>

 games-arcade/aquaria/aquaria-9999.ebuild | 109 -------------------------------
 games-arcade/aquaria/metadata.xml        |   8 ---
 2 files changed, 117 deletions(-)

diff --git a/games-arcade/aquaria/aquaria-9999.ebuild b/games-arcade/aquaria/aquaria-9999.ebuild
deleted file mode 100644
index 3b1583b..0000000
--- a/games-arcade/aquaria/aquaria-9999.ebuild
+++ /dev/null
@@ -1,109 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-EHG_REPO_URI="http://hg.icculus.org/icculus/aquaria"
-
-inherit eutils flag-o-matic cmake-utils mercurial
-
-DESCRIPTION="A 2D scroller set in a massive ocean world"
-HOMEPAGE="http://www.bit-blot.com/aquaria/"
-SRC_URI="aquaria-lnx-humble-bundle.mojo.run"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS=""
-IUSE="luajit"
-RESTRICT="fetch"
-
-RDEPEND="
-	luajit? (
-		dev-lang/luajit:2
-	)
-	!luajit? (
-		|| (
-			dev-lang/lua:5.1
-			dev-lang/lua:0
-		)
-	)
-	>=dev-libs/tinyxml-2.6.1-r1[stl]
-	games-engines/bbge
-	media-libs/glpng
-	media-libs/libsdl
-"
-
-DEPEND="${RDEPEND}
-	app-arch/unzip"
-
-S="${WORKDIR}/${PN}"
-
-pkg_nofetch() {
-	echo
-	ewarn "Despite game code is open source, it still need artwork from original humblebundle package."
-	ewarn "Please, download ${A} from ${HOMEPAGE} (or from your humble bundle library) and place it in ${DISTDIR}"
-	echo
-}
-
-src_unpack() {
-	# self unpacking zip archive; unzip warns about the exe stuff
-	local a="${DISTDIR}/${A}"
-	echo ">>> Unpacking ${a} to ${PWD}"
-	unzip -q "${a}"
-	[ $? -gt 1 ] && die "unpacking failed"
-
-	mercurial_src_unpack
-}
-
-src_prepare() {
-	local lua=lua
-	use luajit && lua=luajit-5.1
-	has_version 'dev-lang/lua:5.1' && lua=lua5.1
-
-	# Fix include paths.
-	sed -i \
-		-e "s:\.\./ExternalLibs/glpng:GL/glpng:" \
-		-e "s:\.\./ExternalLibs/::" \
-		-e "s:\.\./BBGE/:BBGE/:" \
-		Aquaria/*.{cpp,h} || die "Fix include patch failed"
-
-	# Only build game sources.
-	rm -r BBGE/ ExternalLibs/ || die "dropping bbge && ExternalLibs faled"
-	sed -i "/ADD_EXECUTABLE[(]/,/[)]/d" CMakeLists.txt || die "dropping bbge && ExternalLibs faled"
-	echo 'ADD_EXECUTABLE(aquaria ${AQUARIA_SRCS})' >> CMakeLists.txt || die "dropping bbge && ExternalLibs faled"
-
-	# Redefine libraries to link against.
-	sed -i "/TARGET_LINK_LIBRARIES/d" CMakeLists.txt || die
-	echo "TARGET_LINK_LIBRARIES(aquaria BBGE glpng ${lua} pthread SDL tinyxml)" >> CMakeLists.txt || die
-
-	default
-}
-
-src_configure() {
-	local lua=lua
-
-	use luajit && (
-		local ljpk="$(best_version dev-lang/luajit:2)"
-		local ljv="$(get_version_component_range 1-2 ${ljpk/*luajit-/})"
-		append-cppflags -I/usr/include/luajit"${ljv}"
-	)
-
-	has_version 'dev-lang/lua:5.1' && append-cppflags -I/usr/include/lua5.1
-
-	append-cppflags -I/usr/include/BBGE -I/usr/include/freetype2
-	cmake-utils_src_configure
-}
-
-src_install() {
-	cmake-utils_src_install
-
-	cd ../data
-	insinto /usr/share/Aquaria
-	doins -r *.xml */
-	doins -r "${S}"/game_scripts/*
-
-	dodoc README-linux.txt
-	dodoc -r docs/*
-
-	doicon "${PN}.png"
-	make_desktop_entry "${PN}" "Aquaria"
-}

diff --git a/games-arcade/aquaria/metadata.xml b/games-arcade/aquaria/metadata.xml
deleted file mode 100644
index d3009e1..0000000
--- a/games-arcade/aquaria/metadata.xml
+++ /dev/null
@@ -1,8 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
-	<maintainer type="person">
-		<email>wizzleby@gmail.com</email>
-		<name>Locke Shinseiko</name>
-	</maintainer>
-</pkgmetadata>


             reply	other threads:[~2021-02-05 19:26 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-02-05 19:26 Azamat H. Hackimov [this message]
  -- strict thread matches above, loose matches on Subject: below --
2020-02-29  1:15 [gentoo-commits] proj/gamerlay:master commit in: games-arcade/aquaria/ Azamat H. Hackimov
2011-05-02 20:49 Locke Shinseiko

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1612553158.e375b49fd96d9e7fbf9e1a58f4f350f9d4c3e402.winterheart@gentoo \
    --to=winterheart@gentoo.ru \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox