blob: 33c6cd538349e556311d9c0353077530d406be4f (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-libs/sdl-gui/sdl-gui-0.10.3.ebuild,v 1.3 2004/06/24 23:21:21 agriffis Exp $
MY_P="SDL_gui-${PV}"
DESCRIPTION="Graphical User Interface library that utilizes SDL"
HOMEPAGE="http://www.newimage.com/~rhk/SDL_gui/"
SRC_URI="http://www.newimage.com/~rhk/SDL_gui/${MY_P}.tar.gz"
LICENSE="LGPL-2"
SLOT="0"
KEYWORDS="~x86"
IUSE=""
DEPEND=">=media-libs/libsdl-1.1.4
>=media-libs/sdl-image-1.0.9
>=media-libs/sdl-ttf-1.2.1"
S="${WORKDIR}/${MY_P}"
src_install() {
make DESTDIR="${D}" install || die "make install failed"
dodoc README TODO
}
|