blob: 5577b41817e99c4b2ce0008ae055f86d91db57c9 (
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
|
# Copyright 1999-2000 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# Author Achim Gottinger <achim@gentoo.org>
# $Header: /var/cvsroot/gentoo-x86/media-libs/sdl-net/sdl-net-1.2.2.ebuild,v 1.1 2001/08/05 23:38:28 lordjoe Exp $
A=SDL_net-${PV}.tar.gz
S=${WORKDIR}/SDL_net-${PV}
DESCRIPTION="Simple Direct Media Layer Network Support Library"
SRC_URI="http://www.libsdl.org/projects/SDL_net/release/${A}"
HOMEPAGE="http://www.libsdl.org/projects/SDL_net/index.html"
DEPEND="virtual/glibc
>=media-libs/libsdl-1.2.0"
src_compile() {
try ./configure --host=${CHOST} --prefix=/usr --mandir=/usr/share/man
try make
}
src_install() {
cd ${S}
try make DESTDIR=${D} install
preplib /usr
dodoc CHANGES COPYING README
}
|