blob: e85eb7ee686c09110f7c53b004cea649cde5a0db (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
|
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-engines/scummvm-tools/scummvm-tools-1.7.0.ebuild,v 1.1 2014/07/23 04:55:59 mr_bones_ Exp $
EAPI=5
WX_GTK_VER=2.8
inherit wxwidgets eutils flag-o-matic games
DESCRIPTION="utilities for the SCUMM game engine"
HOMEPAGE="http://scummvm.sourceforge.net/"
SRC_URI="mirror://sourceforge/scummvm/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~x86-fbsd"
IUSE="flac iconv mad png vorbis"
RESTRICT="test" # some tests require external files
RDEPEND="png? ( media-libs/libpng:0 )
mad? ( media-libs/libmad )
flac? ( media-libs/flac )
vorbis? ( media-libs/libvorbis )
iconv? ( virtual/libiconv media-libs/freetype:2 )
sys-libs/zlib
>=dev-libs/boost-1.32
x11-libs/wxGTK:2.8"
DEPEND="${RDEPEND}
virtual/pkgconfig"
src_prepare() {
rm -rf *.bat dists/win32
sed -ri \
-e '/^(CC|CXX)\b/d' \
Makefile || die
local boost_ver=$(best_version ">=dev-libs/boost-1.32")
boost_ver=${boost_ver/*boost-/}
boost_ver=${boost_ver%.*}
boost_ver=${boost_ver/./_}
einfo "Using boost version ${boost_ver}"
append-cxxflags \
-I/usr/include/boost-${boost_ver}
append-ldflags \
-L/usr/$(get_libdir)/boost-${boost_ver}
export BOOST_INCLUDEDIR="/usr/include/boost-${boost_ver}"
export BOOST_LIBRARYDIR="/usr/$(get_libdir)/boost-${boost_ver}"
}
src_configure() {
# Not an autoconf script
./configure \
--enable-verbose-build \
--mandir=/usr/share/man \
--prefix="${GAMES_PREFIX}" \
--libdir="${GAMES_PREFIX}/lib" \
$(use_enable flac) \
$(use_enable iconv) \
$(use_enable iconv freetype) \
$(use_enable mad) \
$(use_enable png) \
$(use_enable vorbis) \
|| die
}
src_install() {
local f
for f in $(find . -type f -perm +1 -print); do
newgamesbin $f ${PN}-${f##*/} || die
done
dodoc README TODO
prepgamesdirs
}
|