diff options
author | 2004-11-15 19:25:20 +0000 | |
---|---|---|
committer | 2004-11-15 19:25:20 +0000 | |
commit | 9c96d7e4f0cbc89fdd802e35ba96b5ca3eeb5512 (patch) | |
tree | 22c07aa727343ed0c224371c3cb17d8dfde0a3d5 /games-emulation/darcnes/darcnes-0401-r2.ebuild | |
parent | add media-gfx/sfftobmp in RDEPEND. See #71187 (Manifest recommit) (diff) | |
download | gentoo-2-9c96d7e4f0cbc89fdd802e35ba96b5ca3eeb5512.tar.gz gentoo-2-9c96d7e4f0cbc89fdd802e35ba96b5ca3eeb5512.tar.bz2 gentoo-2-9c96d7e4f0cbc89fdd802e35ba96b5ca3eeb5512.zip |
call games_pkg_setup in pkg_setup
Diffstat (limited to 'games-emulation/darcnes/darcnes-0401-r2.ebuild')
-rw-r--r-- | games-emulation/darcnes/darcnes-0401-r2.ebuild | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/games-emulation/darcnes/darcnes-0401-r2.ebuild b/games-emulation/darcnes/darcnes-0401-r2.ebuild index b8d8ceec9292..e6277c81d17b 100644 --- a/games-emulation/darcnes/darcnes-0401-r2.ebuild +++ b/games-emulation/darcnes/darcnes-0401-r2.ebuild @@ -1,8 +1,8 @@ # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/games-emulation/darcnes/darcnes-0401-r2.ebuild,v 1.6 2004/09/03 23:50:46 swegener Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-emulation/darcnes/darcnes-0401-r2.ebuild,v 1.7 2004/11/15 19:25:20 mr_bones_ Exp $ -inherit games eutils +inherit eutils games DESCRIPTION="A multi-system emulator" HOMEPAGE="http://www.dridus.com/~nyef/darcnes/" @@ -23,15 +23,16 @@ DEPEND="svga? ( >=media-libs/svgalib-1.4.2 ) S="${WORKDIR}/${PN}" pkg_setup() { - export build_X=true + build_X=true use svga && build_X=false use gtk && build_X=false use X && build_X=true + games_pkg_setup } src_unpack() { unpack ${A} - cd ${S} + cd "${S}" epatch ${FILESDIR}/${P}-gcc34.patch } |