blob: 9cd1b57f987efa3571e6c8ca6393236abeb4a9ed (
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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-strategy/uqm/uqm-0.3-r1.ebuild,v 1.2 2004/06/24 23:30:02 agriffis Exp $
inherit games
DESCRIPTION="Port of Star Control 2"
HOMEPAGE="http://sc2.sourceforge.net/"
SRC_URI="mirror://sourceforge/sc2/${P}-3domusic.zip
mirror://sourceforge/sc2/${P}-content.zip
mirror://sourceforge/sc2/${P}-voice.zip
mirror://sourceforge/sc2/${P}-source.tgz"
KEYWORDS="x86 ~ppc"
LICENSE="GPL-2"
IUSE="opengl"
SLOT="0"
RDEPEND="virtual/glibc
virtual/x11
media-libs/libvorbis
media-libs/jpeg
media-libs/libpng
>=media-libs/libsdl-1.2.5
>=media-libs/sdl-image-1.2.3
media-libs/libogg
media-libs/libvorbis
sys-libs/zlib"
DEPEND="${RDEPEND}
>=sys-apps/sed-4
sys-apps/coreutils
app-arch/unzip"
src_unpack() {
local myopengl
unpack ${P}-source.tgz
cd ${S}
use opengl \
&& myopengl=opengl \
|| myopengl=pure
cat <<-EOF > config.state
CHOICE_debug_VALUE='nodebug'
CHOICE_graphics_VALUE='${myopengl}'
CHOICE_sound_VALUE='mixsdl'
INPUT_install_prefix_VALUE='${GAMES_PREFIX}'
INPUT_install_bindir_VALUE='\$prefix/bin'
INPUT_install_libdir_VALUE='\$prefix/lib'
EOF
# Take out the read so we can be non-interactive.
sed -i \
-e '/read CHOICE/d' build/unix/menu_functions || \
die "sed menu_functions failed"
# support the user's CFLAGS.
sed -i \
-e "s/-O3/${CFLAGS}/" build/unix/build.config || \
die "sed build.config failed"
cat > ${T}/uqm <<-EOF
#!/bin/sh
# Wrapper script for starting The Ur-Quan Masters
exec /usr/games/lib/uqm/uqm --contentdir="${GAMES_DATADIR}/${PN}/content" "\$@"
EOF
}
src_compile() {
./build.sh uqm || die
}
src_install() {
# Using the included install scripts seems quite painful.
# This manual install is totally fragile but maybe they'll
# use a sane build system.
dogamesbin "${T}/uqm" || die "dogamesbin failed"
exeinto "${GAMES_LIBDIR}/${PN}"
doexe uqm || die "doexe failed"
keepdir "${GAMES_DATADIR}/${PN}/content/packages/addons"
dodir "${GAMES_DATADIR}/${PN}/content/packages/content"
cp content/version "${D}${GAMES_DATADIR}/${PN}/content" || die "cp failed"
cp ${DISTDIR}/${P}-{3domusic,content,voice}.zip \
"${D}${GAMES_DATADIR}/${PN}/content/packages" \
|| die "cp media archives failed"
dodoc AUTHORS ChangeLog Contributing README TODO WhatsNew \
doc/users/manual.txt
docinto devel
dodoc doc/devel/*
prepgamesdirs
}
|