diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2015-12-18 04:26:51 -0500 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2015-12-18 04:26:51 -0500 |
commit | 16511ea714c6b0e9f38f5dd9bbda01fff65a6a4d (patch) | |
tree | b82ce16ddb4edd01db54c3293cc19f3400c66a4f /games-arcade | |
parent | add slot dep for media-libs/libpng (diff) | |
download | gentoo-16511ea714c6b0e9f38f5dd9bbda01fff65a6a4d.tar.gz gentoo-16511ea714c6b0e9f38f5dd9bbda01fff65a6a4d.tar.bz2 gentoo-16511ea714c6b0e9f38f5dd9bbda01fff65a6a4d.zip |
EAPI=5; minor tidying
Package-Manager: portage-2.2.24
Diffstat (limited to 'games-arcade')
-rw-r--r-- | games-arcade/abe/abe-1.1.ebuild | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/games-arcade/abe/abe-1.1.ebuild b/games-arcade/abe/abe-1.1.ebuild index cfb65f4db97c..42488fd499b2 100644 --- a/games-arcade/abe/abe-1.1.ebuild +++ b/games-arcade/abe/abe-1.1.ebuild @@ -2,7 +2,7 @@ # Distributed under the terms of the GNU General Public License v2 # $Id$ -EAPI=4 +EAPI=5 inherit eutils toolchain-funcs games DESCRIPTION="A scrolling, platform-jumping, key-collecting, ancient pyramid exploring game" @@ -14,10 +14,10 @@ SLOT="0" KEYWORDS="amd64 ppc x86 ~x86-fbsd" IUSE="" -DEPEND="media-libs/libsdl +DEPEND="media-libs/libsdl[sound,video] x11-libs/libXi media-libs/sdl-mixer[vorbis]" -RDEPEND="${DEPEND}" +RDEPEND=${DEPEND} src_unpack() { unpack ${A} @@ -29,8 +29,7 @@ src_prepare() { sed -i \ -e "/^TR_CFLAGS/d" \ -e "/^TR_CXXFLAGS/d" \ - configure \ - || die "sed failed" + configure || die epatch "${FILESDIR}"/${P}-settings.patch } |