# Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: $ inherit flag-o-matic eutils DESCRIPTION="multi-platform game development library" HOMEPAGE="http://www.clanlib.org/" SRC_URI="http://clanlib.org/download/releases-0.8/ClanLib-${PV}.tgz" LICENSE="LGPL-2" SLOT="0.8" KEYWORDS="~amd64 x86" IUSE="opengl sdl vorbis ogg doc mikmod ipv6" RDEPEND="media-libs/libpng media-libs/jpeg virtual/opengl virtual/glu sdl? ( media-libs/libsdl media-libs/sdl-gfx ) || ( ( x11-libs/libXmu x11-libs/libXxf86vm ) virtual/x11 ) mikmod? ( >=media-libs/libmikmod-3.1.9 ) vorbis? ( media-libs/libvorbis ) ogg? ( media-libs/libogg )" DEPEND="${RDEPEND} || ( ( x11-libs/libXt x11-proto/xf86vidmodeproto ) virtual/x11 )" S="${WORKDIR}/ClanLib-${PV}" src_unpack() { unpack ${A} cd ${S} epatch "${FILESDIR}"/${P}-port.patch } src_compile() { # apps compiled about clanlib like pingus don't like these flags filter-flags -fvisibility-inlines-hidden filter-flags -fvisibility=hidden #clanSound only controls mikmod/vorbis so there's # 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 don't have to use clanGUI econf \ --enable-dyn \ --enable-clanNetwork \ --disable-dependency-tracking \ $(use_enable x86 asm386) \ $(use_enable doc docs) \ $(use_enable opengl clanGL) \ $(use_enable sdl clanSDL) \ $(use_enable vorbis clanVorbis) \ $(use_enable mikmod clanMikMod) \ $(use_enable ipv6 getaddr) \ || die emake || die "emake failed" } src_install() { make DESTDIR="${D}" install || die "make install failed" if use doc ; then 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" cp -r Examples "${D}/usr/share/doc/${PF}/" fi dodoc CODING_STYLE CREDITS NEWS PATCHES README* INSTALL.linux }