diff options
author | Pacho Ramos <pacho@gentoo.org> | 2018-04-15 10:25:56 +0200 |
---|---|---|
committer | Pacho Ramos <pacho@gentoo.org> | 2018-04-15 11:11:09 +0200 |
commit | 6dc125c2ae1f5c17673d877c740b6818386ecc4e (patch) | |
tree | a38eb14af1997fc8128a782aca1cb31a8a3955a9 /games-arcade/abe/abe-1.1-r1.ebuild | |
parent | profiles: Cleanup calligra features (diff) | |
download | gentoo-6dc125c2ae1f5c17673d877c740b6818386ecc4e.tar.gz gentoo-6dc125c2ae1f5c17673d877c740b6818386ecc4e.tar.bz2 gentoo-6dc125c2ae1f5c17673d877c740b6818386ecc4e.zip |
games-arcade/abe: Apply Fedora fixes and drop games.eclass usage
Package-Manager: Portage-2.3.28, Repoman-2.3.9
Diffstat (limited to 'games-arcade/abe/abe-1.1-r1.ebuild')
-rw-r--r-- | games-arcade/abe/abe-1.1-r1.ebuild | 64 |
1 files changed, 64 insertions, 0 deletions
diff --git a/games-arcade/abe/abe-1.1-r1.ebuild b/games-arcade/abe/abe-1.1-r1.ebuild new file mode 100644 index 000000000000..25fb312e3b54 --- /dev/null +++ b/games-arcade/abe/abe-1.1-r1.ebuild @@ -0,0 +1,64 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 +inherit desktop toolchain-funcs + +DESCRIPTION="A scrolling, platform-jumping, key-collecting, ancient pyramid exploring game" +HOMEPAGE="http://abe.sourceforge.net/" +SRC_URI="mirror://sourceforge/abe/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86 ~x86-fbsd" +IUSE="" + +DEPEND="media-libs/libsdl[sound,video] + x11-libs/libXi + media-libs/sdl-mixer[vorbis]" +RDEPEND=${DEPEND} + +src_unpack() { + unpack ${A} + cd "${S}" + unpack ./images/images.tar +} + +PATCHES=( + # From Fedora: + # Enable changing the video settings. Sent upstream 2 Apr 2006: + # https://sourceforge.net/tracker/?func=detail&aid=1463202&group_id=70141&atid=526743 + "${FILESDIR}"/${P}-settings.patch + + # Fix a double free() bug. Sent upstream 15 Mar 2011: + # https://sourceforge.net/tracker/?func=detail&aid=3214269&group_id=70141&atid=526745 + "${FILESDIR}"/${P}-doublefree.patch + + # Fix an incorrect printf format specifier. Sent upstream 15 Mar 2011: + # https://sourceforge.net/tracker/?func=detail&aid=3214270&group_id=70141&atid=526745 + "${FILESDIR}"/${P}-format.patch + + # Fix build failure with -Werror=format-security + "${FILESDIR}"/${P}-format-security.patch +) + +src_prepare() { + default + sed -i \ + -e "/^TR_CFLAGS/d" \ + -e "/^TR_CXXFLAGS/d" \ + configure || die +} + +src_configure() { + econf --with-data-dir=/usr/share/${PN} +} + +src_install() { + dobin src/abe + insinto /usr/share/${PN} + doins -r images sounds maps + newicon tom1.bmp abe.bmp + make_desktop_entry abe "Abe's Amazing Adventure" /usr/share/pixmaps/abe.bmp + einstalldocs +} |