summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPacho Ramos <pacho@gentoo.org>2020-08-17 19:18:23 +0200
committerPacho Ramos <pacho@gentoo.org>2020-08-17 19:18:23 +0200
commit709c71a9ffa487f9ca1386845db934136642d7c3 (patch)
tree3dcad9480ea9120428ffffd41502af4bb166de12
parentgames-puzzle/pingus: Use python3 scons (diff)
downloadgentoo-709c71a9ffa487f9ca1386845db934136642d7c3.tar.gz
gentoo-709c71a9ffa487f9ca1386845db934136642d7c3.tar.bz2
gentoo-709c71a9ffa487f9ca1386845db934136642d7c3.zip
games-puzzle/pingus: Drop old
Package-Manager: Portage-3.0.2, Repoman-2.3.23 Signed-off-by: Pacho Ramos <pacho@gentoo.org>
-rw-r--r--games-puzzle/pingus/pingus-0.7.6-r2.ebuild63
1 files changed, 0 insertions, 63 deletions
diff --git a/games-puzzle/pingus/pingus-0.7.6-r2.ebuild b/games-puzzle/pingus/pingus-0.7.6-r2.ebuild
deleted file mode 100644
index 7a222f34d4f2..000000000000
--- a/games-puzzle/pingus/pingus-0.7.6-r2.ebuild
+++ /dev/null
@@ -1,63 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-inherit scons-utils toolchain-funcs flag-o-matic xdg-utils
-
-DESCRIPTION="free Lemmings clone"
-HOMEPAGE="https://pingus.seul.org"
-SRC_URI="https://pingus.googlecode.com/files/${P}.tar.bz2"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="opengl music"
-
-RDEPEND="media-libs/libsdl[joystick,opengl?,video]
- media-libs/sdl-image[png]
- media-libs/sdl-mixer
- music? ( media-libs/sdl-mixer[mod] )
- opengl? ( virtual/opengl )
- media-libs/libpng:0=
- dev-libs/boost:="
-DEPEND="${RDEPEND}
- virtual/pkgconfig"
-
-PATCHES=(
- "${FILESDIR}"/${P}-noopengl.patch
- "${FILESDIR}"/${P}-gcc47.patch
- "${FILESDIR}"/${P}-echo-e.patch
- "${FILESDIR}"/${P}-gcc7.patch
- "${FILESDIR}"/${P}-boost_signals2.patch
-)
-
-src_prepare() {
- default
- strip-flags
-}
-
-src_compile() {
- escons \
- CXX="$(tc-getCXX)" \
- CCFLAGS="${CXXFLAGS}" \
- LINKFLAGS="${LDFLAGS}" \
- with_opengl=$(usex opengl 1 0)
-}
-
-src_install() {
- emake install-exec install-data \
- DESTDIR="${D}" \
- PREFIX="/usr"
- doman doc/man/pingus.6
- doicon data/images/icons/pingus.svg
- make_desktop_entry ${PN} Pingus
- dodoc AUTHORS NEWS README TODO
-}
-
-pkg_postinst() {
- xdg_desktop_database_update
-}
-
-pkg_postrm() {
- xdg_desktop_database_update
-}