blob: 61d33169a80cc45b7cb55e5dfc76e0cc8b3a9fe2 (
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
|
# Copyright 1999-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-fps/wmquake/wmquake-1.1.ebuild,v 1.1 2004/03/13 19:45:14 wolf31o2 Exp $
inherit games
DESCRIPTION="Quake1 in a dockapp window"
SRC_URI="http://www.ne.jp/asahi/linux/timecop/software/${P}.tar.bz2"
HOMEPAGE="http://www.ne.jp/asahi/linux/timecop/"
KEYWORDS="~x86"
LICENSE="GPL-2"
SLOT="0"
DEPEND="virtual/x11"
src_unpack() {
unpack ${A}
cd ${S}
sed -i "s:CFLAGS = .*:CFLAGS = ${CFLAGS}:" Makefile
}
src_compile() {
emake || die "emake failed"
}
src_install() {
exeinto ${GAMES_LIBDIR}/wmquake
doexe wmquake
games_make_wrapper wmquake ${GAMES_LIBDIR}/wmquake/wmquake ${GAMES_DATADIR}/quake-data/
dodoc README*
prepgamesdirs
}
pkg_postinst() {
games_pkg_postinst
echo
einfo "Before you can play, you must make sure"
einfo "wmquake can find your Quake .pak files"
echo
einfo "You have 2 choices to do this"
einfo "1 Copy pak*.pak files to ${GAMES_DATADIR}/quake-data/id1"
einfo "2 Symlink pak*.pak files in ${GAMES_DATADIR}/quake-data/id1"
echo
einfo "Example:"
einfo "my pak*.pak files are in /mnt/secondary/Games/Quake/Id1/"
einfo "ln -s /mnt/secondary/Games/Quake/Id1/pak0.pak ${GAMES_DATADIR}/quake-data/id1/pak0.pak"
echo
einfo "You only need pak0.pak to play the demo version,"
einfo "the others are needed for registered version"
}
|