# Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/media-libs/lib3ds/lib3ds-1.2.0-r1.ebuild,v 1.1 2007/03/31 03:20:54 vapier Exp $ inherit eutils DESCRIPTION="overall software library for managing 3D-Studio Release 3 and 4 .3DS files" HOMEPAGE="http://lib3ds.sourceforge.net/" SRC_URI="mirror://sourceforge/lib3ds/${P}.tar.gz" LICENSE="LGPL-2.1" SLOT="0" KEYWORDS="~amd64 ~ia64 ~ppc ~sparc ~x86" IUSE="" DEPEND="virtual/glut virtual/opengl" src_unpack() { unpack ${A} cd "${S}" epatch "${FILESDIR}"/${P}-fix-aliasing.patch #172421 epatch "${FILESDIR}"/${P}-m4-underquoted.patch # Add -fPIC only to the .so sed -i -e "s/@CFLAGS@/@CFLAGS@ -fPIC/" lib3ds/Makefile.in || die "sed lib3ds/Makefile.in failed" } src_install() { emake DESTDIR="${D}" install || die dobin examples/3ds2rib || die newbin examples/player 3dsplayer || die dodoc README AUTHORS }