d9ddebe13c
Upstream tarball now contains more pre-generated files, therefore we can remove dependencies to host-python and host-gettext, quote from http://lists.freedesktop.org/archives/mesa-announce/2015-April/000150.html: "xmlpool: don't forget to ship the MOS configure.ac: error out if python/mako is not found when required" Fixes python3-related build error http://autobuild.buildroot.net/results/7a5/7a5e53861bce6854265867e6e8525aabffb1d473/ http://autobuild.buildroot.net/results/ce4/ce45f986c3943b8ced3b15a0ebd1dc03fc7b7dcc/ http://autobuild.buildroot.net/results/1ce/1ce2509c8abb7483397c7d0f21c299095e94a254/ Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
80 lines
2.2 KiB
Makefile
80 lines
2.2 KiB
Makefile
################################################################################
|
|
#
|
|
# mesa3d-headers
|
|
#
|
|
################################################################################
|
|
|
|
# mesa3d-headers is inherently incompatible with mesa3d, so error out
|
|
# if both are enabled.
|
|
ifeq ($(BR2_PACKAGE_MESA3D)$(BR2_PACKAGE_MESA3D_HEADERS),yy)
|
|
$(error mesa3d-headers enabled, but mesa3d enabled too)
|
|
endif
|
|
|
|
# Not possible to directly refer to mesa3d variables, because of
|
|
# first/second expansion trickery...
|
|
MESA3D_HEADERS_VERSION = 10.5.3
|
|
MESA3D_HEADERS_SOURCE = mesa-$(MESA3D_HEADERS_VERSION).tar.xz
|
|
MESA3D_HEADERS_SITE = ftp://ftp.freedesktop.org/pub/mesa/$(MESA3D_HEADERS_VERSION)
|
|
MESA3D_HEADERS_LICENSE = MIT, SGI, Khronos
|
|
MESA3D_HEADERS_LICENSE_FILES = docs/license.html
|
|
|
|
# Only installs header files
|
|
MESA3D_HEADERS_INSTALL_STAGING = YES
|
|
MESA3D_HEADERS_INSTALL_TARGET = NO
|
|
|
|
MESA3D_HEADERS_DIRS = KHR
|
|
|
|
ifeq ($(BR2_PACKAGE_HAS_LIBGL),y)
|
|
|
|
MESA3D_HEADERS_DIRS += GL
|
|
|
|
ifeq ($(BR2_PACKAGE_XORG7),y)
|
|
|
|
# Not using $(SED) because we do not want to work in-place, and $(SED)
|
|
# contains -i.
|
|
define MESA3D_HEADERS_BUILD_DRI_PC
|
|
sed -e 's:@\(exec_\)\?prefix@:/usr:' \
|
|
-e 's:@libdir@:${exec_prefix}/lib:' \
|
|
-e 's:@includedir@:${prefix}/include:' \
|
|
-e 's:@DRI_DRIVER_INSTALL_DIR@:${libdir}/dri:' \
|
|
-e 's:@VERSION@:$(MESA3D_HEADERS_VERSION):' \
|
|
-e 's:@DRI_PC_REQ_PRIV@::' \
|
|
$(@D)/src/mesa/drivers/dri/dri.pc.in \
|
|
>$(@D)/src/mesa/drivers/dri/dri.pc
|
|
endef
|
|
|
|
define MESA3D_HEADERS_INSTALL_DRI_PC
|
|
$(INSTALL) -D -m 0644 $(@D)/include/GL/internal/dri_interface.h \
|
|
$(STAGING_DIR)/usr/include/GL/internal/dri_interface.h
|
|
$(INSTALL) -D -m 0644 $(@D)/src/mesa/drivers/dri/dri.pc \
|
|
$(STAGING_DIR)/usr/lib/pkg-config/dri.pc
|
|
endef
|
|
|
|
endif # Xorg
|
|
|
|
endif # OpenGL
|
|
|
|
ifeq ($(BR2_PACKAGE_HAS_LIBEGL),y)
|
|
MESA3D_HEADERS_DIRS += EGL
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_HAS_LIBGLES),y)
|
|
MESA3D_HEADERS_DIRS += GLES GLES2
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_HAS_LIBOPENVG),y)
|
|
MESA3D_HEADERS_DIRS += VG
|
|
endif
|
|
|
|
define MESA3D_HEADERS_BUILD_CMDS
|
|
$(MESA3D_HEADERS_BUILD_DRI_PC)
|
|
endef
|
|
|
|
define MESA3D_HEADERS_INSTALL_STAGING_CMDS
|
|
$(foreach d,$(MESA3D_HEADERS_DIRS),\
|
|
cp -dpfr $(@D)/include/$(d) $(STAGING_DIR)/usr/include/ || exit 1$(sep))
|
|
$(MESA3D_HEADERS_INSTALL_DRI_PC)
|
|
endef
|
|
|
|
$(eval $(generic-package))
|