blob: e1cac5d56ad44f62a1046d20c351b2a2c9679e8b (
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
41
42
43
44
45
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-perl/sdl-perl/sdl-perl-2.1.3-r3.ebuild,v 1.10 2008/11/18 15:51:42 tove Exp $
MODULE_AUTHOR=DGOEHRIG
MY_P=SDL_Perl-${PV}
inherit perl-module eutils
DESCRIPTION="SDL binding for perl"
HOMEPAGE="http://sdl.perl.org/"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="alpha amd64 hppa ia64 ppc sparc x86"
IUSE="truetype mpeg"
# Only enable this if you are confirming a bug in this module. The testsrequire
# access to your /dev/{snd,sound} devices.
#SRC_TEST="do"
RDEPEND="virtual/opengl
>=media-libs/libsdl-1.2.6
>=media-libs/sdl-mixer-1.2.5
>=media-libs/sdl-image-1.2.2
>=media-libs/sdl-gfx-2.0.3
>=media-libs/sdl-net-1.2.4
mpeg? ( media-libs/smpeg )
truetype? ( >=media-libs/sdl-ttf-2.0.5 )
dev-lang/perl"
DEPEND="${RDEPEND}
virtual/perl-ExtUtils-CBuilder
>=virtual/perl-Module-Build-0.28"
S=${WORKDIR}/${MY_P}
PATCHES=("${FILESDIR}"/sdl-2.1.3.build.patch
"${FILESDIR}"/sdl-perl-2.1.3-gfxPie.patch )
src_install() {
perl-module_src_install
# The build doesnt properly abort when there is an error
if [[ -z $(find "${D}" -name SDL.pm) ]] ; then
die "failed to install properly"
fi
}
|