blob: 5a7ec508daf2af1c0b4eb328476a3575189f0840 (
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
|
# Copyright 1999-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-arcade/sdl-sopwith/sdl-sopwith-1.7.1.ebuild,v 1.9 2004/06/19 16:46:09 jhuebel Exp $
inherit games
MY_P="${P/-/_}"
S="${WORKDIR}/${MY_P}"
DESCRIPTION="Port of the classic Sopwith game using LibSDL"
HOMEPAGE="http://sdl-sopwith.sourceforge.net/"
SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86 ppc ~amd64"
IUSE=""
RDEPEND=">=media-libs/freetype-2
>=media-libs/libsdl-1.1.3
dev-libs/atk
x11-libs/pango
>=x11-libs/gtk+-2
>=dev-libs/glib-2"
DEPEND="${RDEPEND}
dev-util/pkgconfig"
src_install() {
make DESTDIR="${D}" install || die "make install failed"
dodoc AUTHORS ChangeLog FAQ NEWS README TODO doc/*txt
rm -rf "${D}/usr/games/share/"
prepgamesdirs
}
|