diff options
author | Alexey Sokolov <sokolov@google.com> | 2020-09-20 22:33:52 +0100 |
---|---|---|
committer | James Le Cuirot <chewi@gentoo.org> | 2020-09-21 22:14:16 +0100 |
commit | efead96e62e48296ba4941834aa29d7aca279ce5 (patch) | |
tree | fabf9a3e9543991a30a2bf10e0ef07e55f3fdada /games-arcade/pacmanarena | |
parent | games-arcade/pacmanarena: fix build on gcc 10 (diff) | |
download | gentoo-efead96e62e48296ba4941834aa29d7aca279ce5.tar.gz gentoo-efead96e62e48296ba4941834aa29d7aca279ce5.tar.bz2 gentoo-efead96e62e48296ba4941834aa29d7aca279ce5.zip |
games-arcade/pacmanarena: drop old 0.15-r1
Package-Manager: Portage-3.0.4, Repoman-3.0.1
Signed-off-by: Alexey Sokolov <alexey+gentoo@asokolov.org>
Closes: https://github.com/gentoo/gentoo/pull/17532
Signed-off-by: James Le Cuirot <chewi@gentoo.org>
Diffstat (limited to 'games-arcade/pacmanarena')
-rw-r--r-- | games-arcade/pacmanarena/pacmanarena-0.15-r1.ebuild | 56 |
1 files changed, 0 insertions, 56 deletions
diff --git a/games-arcade/pacmanarena/pacmanarena-0.15-r1.ebuild b/games-arcade/pacmanarena/pacmanarena-0.15-r1.ebuild deleted file mode 100644 index e803d7748359..000000000000 --- a/games-arcade/pacmanarena/pacmanarena-0.15-r1.ebuild +++ /dev/null @@ -1,56 +0,0 @@ -# Copyright 1999-2018 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 -inherit autotools desktop - -DESCRIPTION="3D Pacman clone with a few surprises. Rockets, bombs and explosions abound" -HOMEPAGE="http://pacmanarena.sourceforge.net/" -SRC_URI="mirror://sourceforge/${PN}/pacman-arena-${PV}.tar.bz2 - mirror://sourceforge/${PN}/pacman-data-0.0.zip" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~alpha ~amd64 ~x86" -IUSE="" - -RDEPEND=" - virtual/opengl - virtual/glu - media-libs/libsdl[sound] - media-libs/sdl-mixer[vorbis] - media-libs/sdl-net -" -DEPEND="${RDEPEND} - app-arch/unzip -" - -S="${WORKDIR}/pacman" - -src_unpack() { - unpack pacman-arena-${PV}.tar.bz2 - cd "${S}" - unpack pacman-data-0.0.zip -} - -src_prepare() { - default - sed -i \ - -e "/^CFLAGS/ s:pacman:${PN}:" \ - -e '1i CC=@CC@' \ - Makefile.in || die - sed -i \ - -e '/CFLAGS/s:-g::' \ - configure || die - eapply "${FILESDIR}"/${P}-underlink.patch - eautoreconf -} - -src_install() { - newbin pacman ${PN} - insinto /usr/share/${PN} - doins -r gfx sfx - newicon gfx/pacman_arena1.tga ${PN}.tga - make_desktop_entry ${PN} "Pacman Arena" /usr/share/pixmaps/${PN}.tga - einstalldocs -} |