blob: 1b653b7a61ac481e1d0c658da18d20f30a0651d6 (
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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-strategy/uqm/uqm-0.6.2.ebuild,v 1.2 2007/02/04 21:57:45 blubb Exp $
inherit eutils multilib games
DESCRIPTION="The Ur-Quan Masters: Port of Star Control 2"
HOMEPAGE="http://sc2.sourceforge.net/"
SRC_URI="mirror://sourceforge/sc2/${P}-source.tgz
mirror://sourceforge/sc2/${PN}-0.6.0-content.uqm
music? ( mirror://sourceforge/sc2/${PN}-0.6.0-3domusic.uqm )
voice? ( mirror://sourceforge/sc2/${PN}-0.6.0-voice.uqm )
remix? ( mirror://sourceforge/sc2/${PN}-remix-pack1.zip \
mirror://sourceforge/sc2/${PN}-remix-pack2.zip \
mirror://sourceforge/sc2/${PN}-remix-pack3.zip )"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ppc x86"
IUSE="music opengl remix voice"
RDEPEND="media-libs/libvorbis
media-libs/jpeg
media-libs/libpng
>=media-libs/libsdl-1.2.8
>=media-libs/sdl-image-1.2.4
media-libs/libogg
media-libs/libvorbis
sys-libs/zlib"
DEPEND="${RDEPEND}
app-arch/unzip"
src_unpack() {
local myopengl
unpack ${P}-source.tgz
cd "${S}"
# Because the new 0.6.* source archives have
# everything in a subdir called "sc2". This,
# I have found, is the simplest way to get
# around that problem. (That doesn't change
# the fact that the rest of this ebuild is
# very nasty. I was not able to clean it up.)
mv ./sc2/* ./
use opengl \
&& myopengl=opengl \
|| myopengl=pure
cat <<-EOF > config.state
CHOICE_debug_VALUE='nodebug'
CHOICE_graphics_VALUE='${myopengl}'
CHOICE_sound_VALUE='mixsdl'
CHOICE_accel_VALUE='plainc'
INPUT_install_prefix_VALUE='${GAMES_PREFIX}'
INPUT_install_bindir_VALUE='\$prefix/bin'
INPUT_install_libdir_VALUE='\$prefix/lib'
INPUT_install_sharedir_VALUE='${GAMES_DATADIR}/'
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"
}
src_compile() {
./build.sh uqm || die "build failed"
}
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 for the next release.
sed -i \
-e "s@/usr/games/lib/@${GAMES_LIBDIR}/@g" uqm-wrapper \
|| die "sed uqm-wrapper failed"
newgamesbin uqm-wrapper uqm || die "newgamesbin failed"
exeinto "${GAMES_LIBDIR}/${PN}"
echo "${GAMES_LIBDIR}/${PN}"
ls "${GAMES_LIBDIR}/${PN}"
doexe uqm || die "doexe failed"
insinto "${GAMES_DATADIR}/${PN}/content/packages"
doins "${DISTDIR}"/${PN}-0.6.0-content.uqm || die "doins failed"
echo ${P} > "${D}${GAMES_DATADIR}"/${PN}/content/version \
|| die "creating version file failed"
insinto "${GAMES_DATADIR}/${PN}/content/packages"
if use music; then
doins "${DISTDIR}"/${PN}-0.6.0-3domusic.uqm || die "doins failed"
fi
if use voice; then
doins "${DISTDIR}"/${PN}-0.6.0-voice.uqm || die "doins failed"
fi
if use remix; then
insinto "${GAMES_DATADIR}"/${PN}/content/packages/addons/uqmremix
doins "${DISTDIR}"/${PN}-remix-pack{1,2,3}.zip || die "doins failed"
fi
dodoc AUTHORS ChangeLog Contributing README WhatsNew doc/users/manual.txt
docinto devel
dodoc doc/devel/*
make_desktop_entry uqm "The Ur-Quan Masters"
prepgamesdirs
}
pkg_postinst() {
games_pkg_postinst
if use remix ; then
echo
einfo "To hear all the remixed music made by the The Ur-Quan Masters"
einfo "project's Precursors Team instead of the original ones,"
einfo "start the game with:"
einfo " --addon uqmremix"
echo
fi
}
|