diff options
author | Tristan Heaven <nyhm@gentoo.org> | 2008-09-25 19:07:11 +0000 |
---|---|---|
committer | Tristan Heaven <nyhm@gentoo.org> | 2008-09-25 19:07:11 +0000 |
commit | 2508b817087ca3f3029c2f3bb17f34aa7c7db1c8 (patch) | |
tree | 77e85fa10ad6ebc819e198d392b4b1cbd9cce5ba /games-engines | |
parent | Drop further hppa keywords (bug #218794 comment #26). (diff) | |
download | gentoo-2-2508b817087ca3f3029c2f3bb17f34aa7c7db1c8.tar.gz gentoo-2-2508b817087ca3f3029c2f3bb17f34aa7c7db1c8.tar.bz2 gentoo-2-2508b817087ca3f3029c2f3bb17f34aa7c7db1c8.zip |
Use wxwidgets eclass; add missing deps
(Portage version: 2.2_rc9/cvs/Linux 2.6.26.5 x86_64)
Diffstat (limited to 'games-engines')
-rw-r--r-- | games-engines/scummvm-tools/ChangeLog | 5 | ||||
-rw-r--r-- | games-engines/scummvm-tools/scummvm-tools-0.12.0.ebuild | 18 |
2 files changed, 15 insertions, 8 deletions
diff --git a/games-engines/scummvm-tools/ChangeLog b/games-engines/scummvm-tools/ChangeLog index 7f9a0edbd99f..278add8f103c 100644 --- a/games-engines/scummvm-tools/ChangeLog +++ b/games-engines/scummvm-tools/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for games-engines/scummvm-tools # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-engines/scummvm-tools/ChangeLog,v 1.17 2008/09/01 19:01:12 mr_bones_ Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-engines/scummvm-tools/ChangeLog,v 1.18 2008/09/25 19:07:11 nyhm Exp $ + + 25 Sep 2008; Tristan Heaven <nyhm@gentoo.org> scummvm-tools-0.12.0.ebuild: + Use wxwidgets eclass; add missing deps *scummvm-tools-0.12.0 (01 Sep 2008) diff --git a/games-engines/scummvm-tools/scummvm-tools-0.12.0.ebuild b/games-engines/scummvm-tools/scummvm-tools-0.12.0.ebuild index c49e57051dc0..8bdb57309937 100644 --- a/games-engines/scummvm-tools/scummvm-tools-0.12.0.ebuild +++ b/games-engines/scummvm-tools/scummvm-tools-0.12.0.ebuild @@ -1,8 +1,9 @@ # Copyright 1999-2008 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/games-engines/scummvm-tools/scummvm-tools-0.12.0.ebuild,v 1.1 2008/09/01 19:01:12 mr_bones_ Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-engines/scummvm-tools/scummvm-tools-0.12.0.ebuild,v 1.2 2008/09/25 19:07:11 nyhm Exp $ -inherit toolchain-funcs games +WX_GTK_VER=2.8 +inherit wxwidgets games DESCRIPTION="utilities for the SCUMM game engine" HOMEPAGE="http://scummvm.sourceforge.net/" @@ -14,7 +15,9 @@ KEYWORDS="~amd64 ~ppc ~x86 ~x86-fbsd" IUSE="" DEPEND="media-libs/libpng - x11-libs/wxGTK" + media-libs/flac + media-libs/libvorbis + =x11-libs/wxGTK-2.8*" src_unpack() { unpack ${A} @@ -24,10 +27,11 @@ src_unpack() { src_compile() { emake \ - CC=$(tc-getCC) \ - CXX=$(tc-getCXX) \ - CFLAGS="${CFLAGS} -DUNIX" \ - || die "emake failed" + CC="$(tc-getCC)" \ + CXX="$(tc-getCXX)" \ + CFLAGS="${CFLAGS} -DUNIX" \ + LDFLAGS="${LDFLAGS}" \ + || die "emake failed" } src_install() { |