blob: 1af64bdff0bd62e94c2e08da8aa18f369428d4a4 (
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-games/clanlib/clanlib-0.7.5.ebuild,v 1.1 2003/10/25 09:13:51 vapier Exp $
inherit flag-o-matic
replace-flags -O? -O2
DESCRIPTION="multi-platform game development library"
HOMEPAGE="http://www.clanlib.org/"
SRC_URI="http://www.clanlib.org/~sphair/download/ClanLib-${PV}-1.tar.bz2"
LICENSE="LGPL-2"
SLOT="0.7"
KEYWORDS="x86"
IUSE="opengl X sdl oggvorbis doc mikmod clanVoice clanJavaScript ipv6"
DEPEND=">=media-libs/hermes-1.3.2
media-libs/libpng
media-libs/jpeg
opengl? ( virtual/opengl )
sdl? ( media-libs/libsdl )
X? ( virtual/x11 )
mikmod? ( >=media-libs/libmikmod-3.1.9 )
oggvorbis? ( media-libs/libvorbis )"
S=${WORKDIR}/ClanLib-${PV}
src_unpack() {
unpack ${A}
cd ${S}
epatch ${FILESDIR}/${PV}-gcc3.patch
}
src_compile() {
#clanSound only controls mikmod/vorbis so theres
# no need to pass --{en,dis}able-clanSound ...
#clanDisplay only controls X, SDL, OpenGL plugins
# so no need to pass --{en,dis}able-clanDisplay
# also same reason why we dont have to use clanGUI
[ `use doc` ] || sed -i '/^SUBDIRS/s:Documentation::' Makefile.in
econf \
--libdir=/usr/lib/${P} \
`use_enable x86 asm386` \
`use_enable doc docs` \
--enable-dyn \
`use_enable clanVoice` \
`use_enable clanJavaScript` \
--enable-clanNetwork \
`use_enable opengl clanGL` \
`use_enable sdl clanSDL` \
`use_enable oggvorbis clanVorbis` \
`use_enable mikmod clanMikMod` \
`use_enable ipv6 getaddr` \
|| die
emake || die
}
src_install() {
make DESTDIR=${D} install || die
dodir /usr/share/doc/${PF}/html
mv ${D}/usr/share/doc/clanlib/* ${D}/usr/share/doc/${PF}/html/
rm -rf ${D}/usr/share/doc/clanlib
mv ${D}/usr/include/{ClanLib-*/ClanLib,${P}}
rm -rf ${D}/usr/include/ClanLib-*
dobin ${FILESDIR}/clanlib-config
dodoc CODING_STYLE CREDITS NEWS PATCHES README* INSTALL.linux
}
pkg_postinst() {
clanlib-config ${PV}
}
|