blob: 93cee7045b09ac5da7527d769ad5e091003f20b1 (
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-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rudl/rudl-0.7.ebuild,v 1.3 2003/07/12 13:03:10 aliz Exp $
DESCRIPTION="Rubyesque Directmedia Layer - Ruby/SDL bindings"
HOMEPAGE="http://froukepc.dhs.org/rudl/"
SRC_URI="http://froukepc.dhs.org/rudl/download/source/${P}-source.tgz"
LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="x86"
IUSE=""
DEPEND=">=libsdl-1.2.4.20020601
>=sdl-gfx-2.0.3
>=sdl-image-1.2.2
>=sdl-mixer-1.2.4
>=sdl-ttf-2.0.5
>=ruby-1.6.7"
S="${WORKDIR}/rudl"
src_compile() {
cd ${S}
ruby extconf.rb
emake || die
#make || die
}
src_install() {
# AFAIK this package's makefile does not make use of DESTDIR
# and it contains neither man nor info pages.
# make DESTDIR=${D} install || die
make prefix=${D}/usr install || die
}
|