* [meta-oe][PATCH 1/2] mesa-glut: Remove the recipe
@ 2016-05-11 19:41 Neena Busireddy
2016-05-11 19:41 ` [meta-oe][PATCH 2/2] freeglut: Add a recipe freeglut to replace mesa-glut Neena Busireddy
0 siblings, 1 reply; 6+ messages in thread
From: Neena Busireddy @ 2016-05-11 19:41 UTC (permalink / raw)
To: openembedded-devel
mesa-glut is dead upstream for almost three years now and it does
not generate library for GLUT.
mesa-glut is now replaced by freeGLUT which is a free-software/open-source
alternative to the OpenGL Utility Toolkit (GLUT) library.
Signed-off-by: Neena Busireddy <neenareddy.busireddy@nxp.com>
---
meta-oe/recipes-graphics/mesa/mesa-glut_8.0.1.bb | 16 ----------------
1 file changed, 16 deletions(-)
delete mode 100644 meta-oe/recipes-graphics/mesa/mesa-glut_8.0.1.bb
diff --git a/meta-oe/recipes-graphics/mesa/mesa-glut_8.0.1.bb b/meta-oe/recipes-graphics/mesa/mesa-glut_8.0.1.bb
deleted file mode 100644
index 404ee53..0000000
--- a/meta-oe/recipes-graphics/mesa/mesa-glut_8.0.1.bb
+++ /dev/null
@@ -1,16 +0,0 @@
-SUMMARY = "OpenGL Utility Toolkit"
-LICENSE = "Kilgard"
-LIC_FILES_CHKSUM = "file://include/GL/glut.h;md5=4aab626c830aed79d7b2e5a76dfa2dd6;startline=4;endline=8"
-
-SRC_URI = "git://anongit.freedesktop.org/mesa/glut"
-
-SRCREV = "ee89e9aeb49604b036e06f1df6478d32006b30cd"
-PV = "8.0.0+git${SRCPV}"
-
-S = "${WORKDIR}/git"
-
-inherit autotools-brokensep pkgconfig distro_features_check
-# depends on virtual/libx11
-REQUIRED_DISTRO_FEATURES = "x11"
-
-DEPENDS = "virtual/libx11 libxmu libxi virtual/libgl libglu"
--
1.9.1
^ permalink raw reply related [flat|nested] 6+ messages in thread* [meta-oe][PATCH 2/2] freeglut: Add a recipe freeglut to replace mesa-glut
2016-05-11 19:41 [meta-oe][PATCH 1/2] mesa-glut: Remove the recipe Neena Busireddy
@ 2016-05-11 19:41 ` Neena Busireddy
2016-05-11 19:47 ` Khem Raj
2016-05-18 19:27 ` Martin Jansa
0 siblings, 2 replies; 6+ messages in thread
From: Neena Busireddy @ 2016-05-11 19:41 UTC (permalink / raw)
To: openembedded-devel
FreeGLUT is a free-software/open-source alternative to the OpenGL
Utility Toolkit (GLUT) library.
More information about this library can be found in
http://freeglut.sourceforge.net/
Signed-off-by: Neena Busireddy <neenareddy.busireddy@nxp.com>
---
meta-oe/recipes-graphics/freeglut/freeglut_3.0.0.bb | 17 +++++++++++++++++
1 file changed, 17 insertions(+)
create mode 100644 meta-oe/recipes-graphics/freeglut/freeglut_3.0.0.bb
diff --git a/meta-oe/recipes-graphics/freeglut/freeglut_3.0.0.bb b/meta-oe/recipes-graphics/freeglut/freeglut_3.0.0.bb
new file mode 100644
index 0000000..7671e75
--- /dev/null
+++ b/meta-oe/recipes-graphics/freeglut/freeglut_3.0.0.bb
@@ -0,0 +1,17 @@
+DESCRIPTION = "FreeGLUT is a free-software/open-source alternative to the OpenGL \
+ Utility Toolkit (GLUT) library"
+LICENSE = "X-Consortium"
+LIC_FILES_CHKSUM = "file://COPYING;md5=89c0b58a3e01ce3d8254c9f59e78adfb"
+
+SRC_URI = "https://sourceforge.net/projects/${BPN}/files/${BPN}/${PV}/${BPN}-${PV}.tar.gz"
+SRC_URI[md5sum] = "90c3ca4dd9d51cf32276bc5344ec9754"
+SRC_URI[sha256sum] = "2a43be8515b01ea82bcfa17d29ae0d40bd128342f0930cd1f375f1ff999f76a2"
+
+inherit cmake
+
+# depends on virtual/libx11
+REQUIRED_DISTRO_FEATURES = "x11"
+
+PROVIDES += "mesa-glut"
+
+DEPENDS = "virtual/libx11 libxmu libxi virtual/libgl libglu libxrandr"
--
1.9.1
^ permalink raw reply related [flat|nested] 6+ messages in thread* Re: [meta-oe][PATCH 2/2] freeglut: Add a recipe freeglut to replace mesa-glut
2016-05-11 19:41 ` [meta-oe][PATCH 2/2] freeglut: Add a recipe freeglut to replace mesa-glut Neena Busireddy
@ 2016-05-11 19:47 ` Khem Raj
2016-05-11 20:19 ` Neena Busireddy
2016-05-18 19:27 ` Martin Jansa
1 sibling, 1 reply; 6+ messages in thread
From: Khem Raj @ 2016-05-11 19:47 UTC (permalink / raw)
To: openembedded-devel
[-- Attachment #1: Type: text/plain, Size: 1831 bytes --]
> On May 11, 2016, at 12:41 PM, Neena Busireddy <neenareddy.busireddy@nxp.com> wrote:
>
> FreeGLUT is a free-software/open-source alternative to the OpenGL
> Utility Toolkit (GLUT) library.
> More information about this library can be found in
> http://freeglut.sourceforge.net/
>
> Signed-off-by: Neena Busireddy <neenareddy.busireddy@nxp.com>
> ---
> meta-oe/recipes-graphics/freeglut/freeglut_3.0.0.bb | 17 +++++++++++++++++
> 1 file changed, 17 insertions(+)
> create mode 100644 meta-oe/recipes-graphics/freeglut/freeglut_3.0.0.bb
>
> diff --git a/meta-oe/recipes-graphics/freeglut/freeglut_3.0.0.bb b/meta-oe/recipes-graphics/freeglut/freeglut_3.0.0.bb
> new file mode 100644
> index 0000000..7671e75
> --- /dev/null
> +++ b/meta-oe/recipes-graphics/freeglut/freeglut_3.0.0.bb
> @@ -0,0 +1,17 @@
> +DESCRIPTION = "FreeGLUT is a free-software/open-source alternative to the OpenGL \
> + Utility Toolkit (GLUT) library"
> +LICENSE = "X-Consortium”
This seems a new license type. Can you point to the text for this ?
> +LIC_FILES_CHKSUM = "file://COPYING;md5=89c0b58a3e01ce3d8254c9f59e78adfb"
> +
> +SRC_URI = "https://sourceforge.net/projects/${BPN}/files/${BPN}/${PV}/${BPN}-${PV}.tar.gz"
> +SRC_URI[md5sum] = "90c3ca4dd9d51cf32276bc5344ec9754"
> +SRC_URI[sha256sum] = "2a43be8515b01ea82bcfa17d29ae0d40bd128342f0930cd1f375f1ff999f76a2"
> +
> +inherit cmake
> +
> +# depends on virtual/libx11
> +REQUIRED_DISTRO_FEATURES = "x11"
> +
> +PROVIDES += "mesa-glut"
> +
> +DEPENDS = "virtual/libx11 libxmu libxi virtual/libgl libglu libxrandr"
> --
> 1.9.1
>
> --
> _______________________________________________
> Openembedded-devel mailing list
> Openembedded-devel@lists.openembedded.org
> http://lists.openembedded.org/mailman/listinfo/openembedded-devel
[-- Attachment #2: Message signed with OpenPGP using GPGMail --]
[-- Type: application/pgp-signature, Size: 211 bytes --]
^ permalink raw reply [flat|nested] 6+ messages in thread* Re: [meta-oe][PATCH 2/2] freeglut: Add a recipe freeglut to replace mesa-glut
2016-05-11 19:47 ` Khem Raj
@ 2016-05-11 20:19 ` Neena Busireddy
0 siblings, 0 replies; 6+ messages in thread
From: Neena Busireddy @ 2016-05-11 20:19 UTC (permalink / raw)
To: openembedded-devel@lists.openembedded.org, Khem Raj
Hi Khem,
> On May 11, 2016, at 12:41 PM, Neena Busireddy <neenareddy.busireddy@nxp.com> wrote:
>
> FreeGLUT is a free-software/open-source alternative to the OpenGL
> Utility Toolkit (GLUT) library.
> More information about this library can be found in
> http://freeglut.sourceforge.net/
>
> Signed-off-by: Neena Busireddy <neenareddy.busireddy@nxp.com>
> ---
> meta-oe/recipes-graphics/freeglut/freeglut_3.0.0.bb | 17
> +++++++++++++++++
> 1 file changed, 17 insertions(+)
> create mode 100644 meta-oe/recipes-graphics/freeglut/freeglut_3.0.0.bb
>
> diff --git a/meta-oe/recipes-graphics/freeglut/freeglut_3.0.0.bb
> b/meta-oe/recipes-graphics/freeglut/freeglut_3.0.0.bb
> new file mode 100644
> index 0000000..7671e75
> --- /dev/null
> +++ b/meta-oe/recipes-graphics/freeglut/freeglut_3.0.0.bb
> @@ -0,0 +1,17 @@
> +DESCRIPTION = "FreeGLUT is a free-software/open-source alternative to the OpenGL \
> + Utility Toolkit (GLUT) library"
> +LICENSE = "X-Consortium”
This seems a new license type. Can you point to the text for this ?
[Neena Busireddy] We can use MIT instead of X-Consortium, since it is an MIT variant.
> +LIC_FILES_CHKSUM = "file://COPYING;md5=89c0b58a3e01ce3d8254c9f59e78adfb"
> +
> +SRC_URI = "https://sourceforge.net/projects/${BPN}/files/${BPN}/${PV}/${BPN}-${PV}.tar.gz"
> +SRC_URI[md5sum] = "90c3ca4dd9d51cf32276bc5344ec9754"
> +SRC_URI[sha256sum] = "2a43be8515b01ea82bcfa17d29ae0d40bd128342f0930cd1f375f1ff999f76a2"
> +
> +inherit cmake
> +
> +# depends on virtual/libx11
> +REQUIRED_DISTRO_FEATURES = "x11"
> +
> +PROVIDES += "mesa-glut"
> +
> +DEPENDS = "virtual/libx11 libxmu libxi virtual/libgl libglu libxrandr"
> --
> 1.9.1
>
> --
> _______________________________________________
> Openembedded-devel mailing list
> Openembedded-devel@lists.openembedded.org
> http://lists.openembedded.org/mailman/listinfo/openembedded-devel
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [meta-oe][PATCH 2/2] freeglut: Add a recipe freeglut to replace mesa-glut
2016-05-11 19:41 ` [meta-oe][PATCH 2/2] freeglut: Add a recipe freeglut to replace mesa-glut Neena Busireddy
2016-05-11 19:47 ` Khem Raj
@ 2016-05-18 19:27 ` Martin Jansa
2016-05-18 21:11 ` Neena Busireddy
1 sibling, 1 reply; 6+ messages in thread
From: Martin Jansa @ 2016-05-18 19:27 UTC (permalink / raw)
To: openembedded-devel
[-- Attachment #1: Type: text/plain, Size: 1877 bytes --]
On Wed, May 11, 2016 at 02:41:49PM -0500, Neena Busireddy wrote:
> FreeGLUT is a free-software/open-source alternative to the OpenGL
> Utility Toolkit (GLUT) library.
> More information about this library can be found in
> http://freeglut.sourceforge.net/
>
> Signed-off-by: Neena Busireddy <neenareddy.busireddy@nxp.com>
> ---
> meta-oe/recipes-graphics/freeglut/freeglut_3.0.0.bb | 17 +++++++++++++++++
> 1 file changed, 17 insertions(+)
> create mode 100644 meta-oe/recipes-graphics/freeglut/freeglut_3.0.0.bb
>
> diff --git a/meta-oe/recipes-graphics/freeglut/freeglut_3.0.0.bb b/meta-oe/recipes-graphics/freeglut/freeglut_3.0.0.bb
> new file mode 100644
> index 0000000..7671e75
> --- /dev/null
> +++ b/meta-oe/recipes-graphics/freeglut/freeglut_3.0.0.bb
> @@ -0,0 +1,17 @@
> +DESCRIPTION = "FreeGLUT is a free-software/open-source alternative to the OpenGL \
> + Utility Toolkit (GLUT) library"
> +LICENSE = "X-Consortium"
> +LIC_FILES_CHKSUM = "file://COPYING;md5=89c0b58a3e01ce3d8254c9f59e78adfb"
> +
> +SRC_URI = "https://sourceforge.net/projects/${BPN}/files/${BPN}/${PV}/${BPN}-${PV}.tar.gz"
> +SRC_URI[md5sum] = "90c3ca4dd9d51cf32276bc5344ec9754"
> +SRC_URI[sha256sum] = "2a43be8515b01ea82bcfa17d29ae0d40bd128342f0930cd1f375f1ff999f76a2"
> +
> +inherit cmake
you're missing distro_features_check here, so the check bellow doesn't
work
> +
> +# depends on virtual/libx11
> +REQUIRED_DISTRO_FEATURES = "x11"
> +
> +PROVIDES += "mesa-glut"
> +
> +DEPENDS = "virtual/libx11 libxmu libxi virtual/libgl libglu libxrandr"
> --
> 1.9.1
>
> --
> _______________________________________________
> Openembedded-devel mailing list
> Openembedded-devel@lists.openembedded.org
> http://lists.openembedded.org/mailman/listinfo/openembedded-devel
--
Martin 'JaMa' Jansa jabber: Martin.Jansa@gmail.com
[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 188 bytes --]
^ permalink raw reply [flat|nested] 6+ messages in thread* Re: [meta-oe][PATCH 2/2] freeglut: Add a recipe freeglut to replace mesa-glut
2016-05-18 19:27 ` Martin Jansa
@ 2016-05-18 21:11 ` Neena Busireddy
0 siblings, 0 replies; 6+ messages in thread
From: Neena Busireddy @ 2016-05-18 21:11 UTC (permalink / raw)
To: openembedded-devel@lists.openembedded.org
Hi Martin,
On Wed, May 11, 2016 at 02:41:49PM -0500, Neena Busireddy wrote:
> FreeGLUT is a free-software/open-source alternative to the OpenGL
> Utility Toolkit (GLUT) library.
> More information about this library can be found in
> http://freeglut.sourceforge.net/
>
> Signed-off-by: Neena Busireddy <neenareddy.busireddy@nxp.com>
> ---
> meta-oe/recipes-graphics/freeglut/freeglut_3.0.0.bb | 17
> +++++++++++++++++
> 1 file changed, 17 insertions(+)
> create mode 100644
> meta-oe/recipes-graphics/freeglut/freeglut_3.0.0.bb
>
> diff --git a/meta-oe/recipes-graphics/freeglut/freeglut_3.0.0.bb
> b/meta-oe/recipes-graphics/freeglut/freeglut_3.0.0.bb
> new file mode 100644
> index 0000000..7671e75
> --- /dev/null
> +++ b/meta-oe/recipes-graphics/freeglut/freeglut_3.0.0.bb
> @@ -0,0 +1,17 @@
> +DESCRIPTION = "FreeGLUT is a free-software/open-source alternative to the OpenGL \
> + Utility Toolkit (GLUT) library"
> +LICENSE = "X-Consortium"
> +LIC_FILES_CHKSUM = "file://COPYING;md5=89c0b58a3e01ce3d8254c9f59e78adfb"
> +
> +SRC_URI = "https://sourceforge.net/projects/${BPN}/files/${BPN}/${PV}/${BPN}-${PV}.tar.gz"
> +SRC_URI[md5sum] = "90c3ca4dd9d51cf32276bc5344ec9754"
> +SRC_URI[sha256sum] = "2a43be8515b01ea82bcfa17d29ae0d40bd128342f0930cd1f375f1ff999f76a2"
> +
> +inherit cmake
you're missing distro_features_check here, so the check bellow doesn't work
[Neena Busireddy] Oops..Thanks for catching it. I will send another version.
> +
> +# depends on virtual/libx11
> +REQUIRED_DISTRO_FEATURES = "x11"
> +
> +PROVIDES += "mesa-glut"
> +
> +DEPENDS = "virtual/libx11 libxmu libxi virtual/libgl libglu libxrandr"
> --
> 1.9.1
>
> --
> _______________________________________________
> Openembedded-devel mailing list
> Openembedded-devel@lists.openembedded.org
> http://lists.openembedded.org/mailman/listinfo/openembedded-devel
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2016-05-18 21:11 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-05-11 19:41 [meta-oe][PATCH 1/2] mesa-glut: Remove the recipe Neena Busireddy
2016-05-11 19:41 ` [meta-oe][PATCH 2/2] freeglut: Add a recipe freeglut to replace mesa-glut Neena Busireddy
2016-05-11 19:47 ` Khem Raj
2016-05-11 20:19 ` Neena Busireddy
2016-05-18 19:27 ` Martin Jansa
2016-05-18 21:11 ` Neena Busireddy
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.