Andrew Geissler | 82c905d | 2020-04-13 13:39:40 -0500 | [diff] [blame] | 1 | DESCRIPTION = "FreeGLUT is a free-software/open-source alternative to the OpenGL \ |
| 2 | Utility Toolkit (GLUT) library" |
| 3 | LICENSE = "MIT" |
| 4 | LIC_FILES_CHKSUM = "file://COPYING;md5=89c0b58a3e01ce3d8254c9f59e78adfb" |
| 5 | |
| 6 | SRC_URI = "https://sourceforge.net/projects/${BPN}/files/${BPN}/${PV}/${BPN}-${PV}.tar.gz" |
Patrick Williams | 2194f50 | 2022-10-16 14:26:09 -0500 | [diff] [blame] | 7 | SRC_URI[sha256sum] = "3c0bcb915d9b180a97edaebd011b7a1de54583a838644dcd42bb0ea0c6f3eaec" |
Andrew Geissler | 82c905d | 2020-04-13 13:39:40 -0500 | [diff] [blame] | 8 | |
| 9 | inherit cmake features_check |
| 10 | |
| 11 | # depends on virtual/libx11, virtual/libgl |
| 12 | REQUIRED_DISTRO_FEATURES = "x11 opengl" |
| 13 | |
Andrew Geissler | bffdb3e | 2020-08-21 16:13:29 -0500 | [diff] [blame] | 14 | # Do not use -fno-common, check back when upgrading to new version it might not be needed |
| 15 | CFLAGS += "-fcommon" |
| 16 | |
Andrew Geissler | 82c905d | 2020-04-13 13:39:40 -0500 | [diff] [blame] | 17 | PROVIDES += "mesa-glut" |
| 18 | |
| 19 | DEPENDS = "virtual/libx11 libxmu libxi virtual/libgl libglu libxrandr" |