libglu: new package

This package is needed for OpenGL support in xbmc:
https://github.com/xbmc/xbmc/blob/Gotham/configure.in#L1070

Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
This commit is contained in:
Bernd Kuhls 2014-07-17 07:42:58 +02:00 committed by Thomas Petazzoni
parent 7ef750f4a4
commit 28c11b6e7e
3 changed files with 28 additions and 0 deletions

View File

@ -618,6 +618,7 @@ menu "Graphics"
source "package/libgail/Config.in"
source "package/libgeotiff/Config.in"
source "package/libglade/Config.in"
source "package/libglu/Config.in"
source "package/libgtk2/Config.in"
source "package/libpng/Config.in"
source "package/libqrencode/Config.in"

10
package/libglu/Config.in Normal file
View File

@ -0,0 +1,10 @@
config BR2_PACKAGE_LIBGLU
bool "libglu"
depends on BR2_PACKAGE_HAS_LIBGL
help
Mesa OpenGL Utility library
http://cgit.freedesktop.org/mesa/glu/
comment "libglu needs an OpenGL backend"
depends on !BR2_PACKAGE_HAS_LIBGL

17
package/libglu/libglu.mk Normal file
View File

@ -0,0 +1,17 @@
################################################################################
#
# libglu
#
################################################################################
LIBGLU_VERSION = 9.0.0
LIBGLU_SITE = http://cgit.freedesktop.org/mesa/glu/snapshot
LIBGLU_SOURCE = glu-$(LIBGLU_VERSION).tar.gz
LIBGLU_LICENSE = SGI-B-2.0
LIBGLU_LICENSE_FILES = include/GL/glu.h
LIBGLU_INSTALL_STAGING = YES
# upstream does not distribute a autoconf´ed configure script
LIBGLU_AUTORECONF = YES
LIBGLU_DEPENDENCIES = libgl
$(eval $(autotools-package))