blob: 4226e1477fd4328d5e0eca6bd6be4528e26f72d3 (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-misc/yadex/yadex-1.7.0.ebuild,v 1.4 2005/06/10 14:09:18 dholm Exp $
inherit games
DESCRIPTION="A Doom level (wad) editor"
HOMEPAGE="http://www.teaser.fr/~amajorel/yadex/"
SRC_URI="http://www.teaser.fr/~amajorel/yadex/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~ppc x86"
IUSE=""
DEPEND="virtual/x11"
src_unpack() {
unpack ${A}
sed -i \
-e '/iwad/s/local\///' \
${S}/yadex.cfg \
|| die "sed yadex.cfg failed"
}
src_compile() {
# not an autoconf script
./configure --prefix="/usr" || die "configure failed"
emake CFLAGS="${CFLAGS}" CXXFLAGS="${CXXFLAGS}" || die "emake failed"
}
src_install() {
dogamesbin obj/0/yadex || die "dogamesbin failed"
insinto "${GAMES_DATADIR}/${PN}/${PV}/"
doins ygd/* || die "doins failed (data)"
doman doc/yadex.6
dodoc CHANGES FAQ README TODO VERSION
dohtml doc/*
insinto /etc/yadex/${PV}/
doins yadex.cfg || die "doins failed (cfg)"
prepgamesdirs
}
|