diff options
author | Matt Jolly <Matt.Jolly@footclan.ninja> | 2022-11-28 23:01:14 +1100 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2023-01-28 03:18:16 +0000 |
commit | 1c6ac69c3f3c291ed24b1bbf47075c421911f55d (patch) | |
tree | 355f67020b5a562303d04ac6cb6559dc041ba294 /games-fps | |
parent | games-fps/alephone: add 20221126; update live (diff) | |
download | gentoo-1c6ac69c3f3c291ed24b1bbf47075c421911f55d.tar.gz gentoo-1c6ac69c3f3c291ed24b1bbf47075c421911f55d.tar.bz2 gentoo-1c6ac69c3f3c291ed24b1bbf47075c421911f55d.zip |
games-fps/alephone: drop 20220115-r1
Signed-off-by: Matt Jolly <Matt.Jolly@footclan.ninja>
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'games-fps')
-rw-r--r-- | games-fps/alephone/Manifest | 1 | ||||
-rw-r--r-- | games-fps/alephone/alephone-20220115-r1.ebuild | 98 |
2 files changed, 0 insertions, 99 deletions
diff --git a/games-fps/alephone/Manifest b/games-fps/alephone/Manifest index a68446d434e0..e0f3565ec87f 100644 --- a/games-fps/alephone/Manifest +++ b/games-fps/alephone/Manifest @@ -1,2 +1 @@ -DIST release-20220115.tar.gz 6487243 BLAKE2B 7c304d28e826e2b3b32427661d3e85ff5ec41e6200d98468edeb5ea11a751fbbd333b72e3efe0937bc496088e36560351f810a6471d92cb684b0bf6adceabf68 SHA512 53d9c602af58f56b5236ca9a539ffac47abe8350b3d228345348e63648a5ef343335be9b0a3366a201807b3e3aa013dc360a38c3e7b47f4a6da2a696ec6ea646 DIST release-20221126.tar.gz 6968670 BLAKE2B d4437f845fd9cc1c6f99620e3ff5b2e5e3fabda82622343589246999ee8c654f4762a0a2e13fc9e595ec34d1d1db7a114b4f8436967da559737af8ca86bfd559 SHA512 ca6acc4de03b65c27829c57bfabd7f6e49e78111c94aac29cf03aeb8606c9c6d8e56a477ebfbbd0b6079b2d8ed0946717883de27855532917ac4758ab43d108d diff --git a/games-fps/alephone/alephone-20220115-r1.ebuild b/games-fps/alephone/alephone-20220115-r1.ebuild deleted file mode 100644 index 3fc299106b8f..000000000000 --- a/games-fps/alephone/alephone-20220115-r1.ebuild +++ /dev/null @@ -1,98 +0,0 @@ -# Copyright 1999-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -inherit autotools optfeature prefix toolchain-funcs xdg - -DESCRIPTION="An enhanced version of the game engine from the classic Mac game, Marathon" -HOMEPAGE="http://source.bungie.org/" -if [[ ${PV} = 9999* ]]; then - inherit git-r3 - EGIT_REPO_URI="https://github.com/Aleph-One-Marathon/alephone/" - EGIT_SUBMODULES=() # Upstream includes game data as submodules, we only want the engine -else - SRC_URI="https://github.com/Aleph-One-Marathon/alephone/archive/refs/tags/release-${PV}.tar.gz" - S="${WORKDIR}/${PN}-release-${PV}" - KEYWORDS="~amd64" -fi - -LICENSE="GPL-3+ BitstreamVera OFL-1.1" -SLOT="0" - -IUSE="alsa curl speex upnp" - -# ffmpeg covers most audio/video use cases and the package doesn't configure with alternatives enabled (media-libs/smpeg) -# When resolved upstream, !ffmpeg ( media-libs/libmad media-libs/libsndfile media-libs/libvorbis media-libs/smpeg ) -# with an appropriate REQUIRED_USE may be added. -# See https://github.com/Aleph-One-Marathon/alephone/issues/85 -RDEPEND=" - dev-libs/boost:= - dev-libs/zziplib:= - media-libs/libpng - media-libs/libsdl2 - media-libs/sdl2-image[png] - media-libs/sdl2-net - media-libs/sdl2-ttf - media-video/ffmpeg:=[mp3,vorbis] - sys-libs/zlib - virtual/opengl - virtual/glu - alsa? ( media-libs/alsa-lib ) - curl? ( net-misc/curl ) - speex? ( - media-libs/speex - media-libs/speexdsp - ) - upnp? ( net-libs/miniupnpc ) -" - -DEPEND=" - ${RDEPEND} -" - -BDEPEND=" - virtual/pkgconfig -" - -src_prepare() { - default - eautoreconf -} - -src_configure() { - econf \ - --enable-lua \ - --enable-opengl \ - --with-ffmpeg \ - --without-mad \ - --without-smpeg \ - --without-sndfile \ - --without-vorbis \ - $(use_with alsa) \ - $(use_with curl) \ - $(use_with speex) \ - $(use_with upnp miniupnpc) -} - -src_compile() { - tc-export AR - default -} - -src_install() { - default - prefixify_ro "${FILESDIR}"/${PN}.sh - dobin "${T}"/${PN}.sh - doman docs/${PN}.6 - docinto html/ - dodoc docs/*.html -} - -pkg_postinst() { - xdg_pkg_postinst - optfeature_header "Install game data:" - optfeature "Marathon data files" games-fps/alephone-marathon - optfeature "Marathon 2 Durandal data files" games-fps/alephone-durandal - optfeature "Marathon: Infinity data files" games-fps/alephone-infinity -} |