blob: bedb9ea857e624bc549164876065d0b0e90ae080 (
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
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-puzzle/enigma/enigma-0.80_beta1.ebuild,v 1.1 2003/09/17 06:06:35 msterret Exp $
inherit games
S="${WORKDIR}/enigma-0.80-beta"
DESCRIPTION="puzzle game similar to Oxyd"
HOMEPAGE="http://www.freesoftware.fsf.org/enigma/"
SRC_URI="http://savannah.nongnu.org/download/enigma/enigma-0.80-beta.tar.gz"
LICENSE="GPL-2"
KEYWORDS="~x86"
SLOT="0"
DEPEND="virtual/glibc
>=media-libs/libsdl-1.2.0
media-libs/sdl-mixer
media-libs/sdl-image
>=dev-lang/lua-4.0"
src_unpack() {
unpack ${A}
cd ${S}
# Ugly, but since this is beta, I'm going to do it anyhow.
# I've notified upstream of the need for this patch so hopefully
# the next release will have it included in the distributed tarball.
epatch ${FILESDIR}/0.70-gcc3.patch
}
src_compile() {
egamesconf --enable-optimize || die
emake || die "emake failed"
}
src_install() {
make DESTDIR="${D}" install || die "make install failed"
dodoc NEWS README AUTHORS INSTALL ChangeLog
prepgamesdirs
}
|