50 lines
1.3 KiB
Bash
50 lines
1.3 KiB
Bash
# Copyright 1999-2013 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Header: /var/cvsroot/gentoo-x86/media-libs/freeglut/freeglut-2.8.1.ebuild,v 1.10 2013/10/08 05:02:03 ago Exp $
|
|
|
|
EAPI=5
|
|
inherit eutils libtool
|
|
|
|
DESCRIPTION="A completely OpenSourced alternative to the OpenGL Utility Toolkit (GLUT) library"
|
|
HOMEPAGE="http://freeglut.sourceforge.net/"
|
|
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
|
|
|
|
LICENSE="MIT"
|
|
SLOT="0"
|
|
KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
|
|
IUSE="debug static-libs"
|
|
|
|
RDEPEND="virtual/glu
|
|
virtual/opengl
|
|
x11-libs/libX11
|
|
x11-libs/libXext
|
|
>=x11-libs/libXi-1.3
|
|
x11-libs/libXrandr
|
|
x11-libs/libXxf86vm"
|
|
DEPEND="${RDEPEND}
|
|
x11-proto/inputproto
|
|
x11-proto/xproto"
|
|
|
|
DOCS="AUTHORS ChangeLog NEWS README TODO"
|
|
|
|
src_prepare() {
|
|
# Please read the comments in the patch before thinking about dropping it
|
|
# yet again...
|
|
epatch "${FILESDIR}"/${PN}-2.4.0-bsd-usb-joystick.patch
|
|
|
|
# Needed for sane .so versionning on bsd, please don't drop
|
|
elibtoolize
|
|
}
|
|
|
|
src_configure() {
|
|
econf \
|
|
$(use_enable static-libs static) \
|
|
--enable-replace-glut \
|
|
$(use_enable debug)
|
|
}
|
|
|
|
src_install() {
|
|
default
|
|
dohtml -r doc
|
|
find "${ED}" -name '*.la' -exec rm -f {} +
|
|
}
|