All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] libQGLViewer: New program
@ 2010-11-27  0:13 Jayen Ashar
  2010-11-27 10:18 ` Koen Kooi
  0 siblings, 1 reply; 4+ messages in thread
From: Jayen Ashar @ 2010-11-27  0:13 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Jayen Ashar

* Starting with libQGLViewer 2.3.8
* libqglviewer (also known as libQGLViewer) is a free C++ library based on
*  Qt that enables the quick creation of OpenGL 3D viewers. It features a
*  powerful camera trackball and simple applications simply require an
*  implementation of the draw() function. It is a tool of choice for OpenGL
*  beginners and assignements. It provides screenshot saving, mouse
*  manipulated frames, stereo display, interpolated keyFrames, object
*  selection, and much more. It is fully customizable and easy to extend to
*  create complex applications, with a possible Qt GUI.

Signed-off-by: Jayen Ashar <jayen@cse.unsw.edu.au>
---
 recipes/libqglviewer/libqglviewer.inc      |   21 +++++++++++++++++++++
 recipes/libqglviewer/libqglviewer_2.3.8.bb |    3 +++
 2 files changed, 24 insertions(+), 0 deletions(-)
 create mode 100644 recipes/libqglviewer/libqglviewer.inc
 create mode 100644 recipes/libqglviewer/libqglviewer_2.3.8.bb

diff --git a/recipes/libqglviewer/libqglviewer.inc b/recipes/libqglviewer/libqglviewer.inc
new file mode 100644
index 0000000..4d19276
--- /dev/null
+++ b/recipes/libqglviewer/libqglviewer.inc
@@ -0,0 +1,21 @@
+DESCRIPTION = "an OpenGL 3D viewer library based on Qt4 - development files\
+libqglviewer (also known as libQGLViewer) is a free C++ library based on Qt that enables the quick creation of OpenGL 3D viewers. It features a powerful camera trackball and simple applications simply require an implementation of the draw() function. It is a tool of choice for OpenGL beginners and assignements. It provides screenshot saving, mouse manipulated frames, stereo display, interpolated keyFrames, object selection, and much more. It is fully customizable and easy to extend to create complex applications, with a possible Qt GUI."
+HOMEPAGE = "http://www.libqglviewer.com/"
+SECTION = "libdevel"
+PRIORITY = "optional"
+LICENSE = "GPL"
+DEPENDS = ""
+
+INC_PR = "r0"
+
+SRC_URI = "http://www.libqglviewer.com/src/libQGLViewer-${PV}.tar.gz"
+
+S = "${WORKDIR}/libQGLViewer-${PV}/QGLViewer/"
+
+inherit qt4x11
+
+do_install() {
+    oe_runmake install INSTALL_ROOT=${D}
+}
+
+FILES_${PN}-dev += " ${libdir}/libQGLViewer.prl"
diff --git a/recipes/libqglviewer/libqglviewer_2.3.8.bb b/recipes/libqglviewer/libqglviewer_2.3.8.bb
new file mode 100644
index 0000000..813f1a6
--- /dev/null
+++ b/recipes/libqglviewer/libqglviewer_2.3.8.bb
@@ -0,0 +1,3 @@
+require libqglviewer.inc
+
+PR = "${INC_PR}.0"
-- 
1.7.0.4




^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [PATCH] libQGLViewer: New program
  2010-11-27  0:13 [PATCH] libQGLViewer: New program Jayen Ashar
@ 2010-11-27 10:18 ` Koen Kooi
  2010-11-28  2:33   ` [PATCH v2] " Jayen Ashar
  0 siblings, 1 reply; 4+ messages in thread
From: Koen Kooi @ 2010-11-27 10:18 UTC (permalink / raw)
  To: openembedded-devel

-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

On 27-11-10 01:13, Jayen Ashar wrote:
> * Starting with libQGLViewer 2.3.8
> * libqglviewer (also known as libQGLViewer) is a free C++ library based on
> *  Qt that enables the quick creation of OpenGL 3D viewers. It features a
> *  powerful camera trackball and simple applications simply require an
> *  implementation of the draw() function. It is a tool of choice for OpenGL
> *  beginners and assignements. It provides screenshot saving, mouse
> *  manipulated frames, stereo display, interpolated keyFrames, object
> *  selection, and much more. It is fully customizable and easy to extend to
> *  create complex applications, with a possible Qt GUI.
> 
> Signed-off-by: Jayen Ashar <jayen@cse.unsw.edu.au>


> +SECTION = "libdevel"

AFAIK that's not an existing section

> +PRIORITY = "optional"

Default, remove

> +LICENSE = "GPL"

Which gpl version?

> +DEPENDS = ""

Default, remove.

Apart from the minor things above, it looks pretty good.

regards,

Koen
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.5 (Darwin)

iD8DBQFM8NrdMkyGM64RGpERAlGCAKCSjoqdcyTfH9aB9ntt2V0ysnW4dACgn2kB
VAngXLW0dukxNtecFZ0oFeY=
=oivl
-----END PGP SIGNATURE-----




^ permalink raw reply	[flat|nested] 4+ messages in thread

* [PATCH v2] libQGLViewer: New program
  2010-11-27 10:18 ` Koen Kooi
@ 2010-11-28  2:33   ` Jayen Ashar
  2010-12-11  9:22     ` Khem Raj
  0 siblings, 1 reply; 4+ messages in thread
From: Jayen Ashar @ 2010-11-28  2:33 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Jayen Ashar

* Starting with libQGLViewer 2.3.8
* libqglviewer (also known as libQGLViewer) is a free C++ library based on
*  Qt that enables the quick creation of OpenGL 3D viewers. It features a
*  powerful camera trackball and simple applications simply require an
*  implementation of the draw() function. It is a tool of choice for OpenGL
*  beginners and assignements. It provides screenshot saving, mouse
*  manipulated frames, stereo display, interpolated keyFrames, object
*  selection, and much more. It is fully customizable and easy to extend to
*  create complex applications, with a possible Qt GUI.

Signed-off-by: Jayen Ashar <jayen@cse.unsw.edu.au>
---
 recipes/libqglviewer/libqglviewer.inc      |   20 ++++++++++++++++++++
 recipes/libqglviewer/libqglviewer_2.3.8.bb |    3 +++
 2 files changed, 23 insertions(+), 0 deletions(-)
 create mode 100644 recipes/libqglviewer/libqglviewer.inc
 create mode 100644 recipes/libqglviewer/libqglviewer_2.3.8.bb

diff --git a/recipes/libqglviewer/libqglviewer.inc b/recipes/libqglviewer/libqglviewer.inc
new file mode 100644
index 0000000..48ea5bc
--- /dev/null
+++ b/recipes/libqglviewer/libqglviewer.inc
@@ -0,0 +1,20 @@
+DESCRIPTION = "an OpenGL 3D viewer library based on Qt4 - development files\
+libqglviewer (also known as libQGLViewer) is a free C++ library based on Qt that enables the quick creation of OpenGL 3D viewers. It features a powerful camera trackball and simple applications simply require an implementation of the draw() function. It is a tool of choice for OpenGL beginners and assignements. It provides screenshot saving, mouse manipulated frames, stereo display, interpolated keyFrames, object selection, and much more. It is fully customizable and easy to extend to create complex applications, with a possible Qt GUI."
+HOMEPAGE = "http://www.libqglviewer.com/"
+SECTION = "devel/libs" #seems to have more recipes than libs/devel
+LICENSE = "GPL" #You may use, distribute and copy the QGLViewer library under the terms of GNU General Public License version 2 or version 3, both of which are included in the LICENSE file.
+#DEPENDS = "" #requires qt4-x11-free with QT_CONFIG_FLAGS without -no-opengl
+
+INC_PR = "r0"
+
+SRC_URI = "http://www.libqglviewer.com/src/libQGLViewer-${PV}.tar.gz"
+
+S = "${WORKDIR}/libQGLViewer-${PV}/QGLViewer/"
+
+inherit qt4x11
+
+do_install() {
+    oe_runmake install INSTALL_ROOT=${D}
+}
+
+FILES_${PN}-dev += " ${libdir}/libQGLViewer.prl"
diff --git a/recipes/libqglviewer/libqglviewer_2.3.8.bb b/recipes/libqglviewer/libqglviewer_2.3.8.bb
new file mode 100644
index 0000000..813f1a6
--- /dev/null
+++ b/recipes/libqglviewer/libqglviewer_2.3.8.bb
@@ -0,0 +1,3 @@
+require libqglviewer.inc
+
+PR = "${INC_PR}.0"
-- 
1.7.0.4




^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [PATCH v2] libQGLViewer: New program
  2010-11-28  2:33   ` [PATCH v2] " Jayen Ashar
@ 2010-12-11  9:22     ` Khem Raj
  0 siblings, 0 replies; 4+ messages in thread
From: Khem Raj @ 2010-12-11  9:22 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Jayen Ashar

On (28/11/10 13:33), Jayen Ashar wrote:
> * Starting with libQGLViewer 2.3.8
> * libqglviewer (also known as libQGLViewer) is a free C++ library based on
> *  Qt that enables the quick creation of OpenGL 3D viewers. It features a
> *  powerful camera trackball and simple applications simply require an
> *  implementation of the draw() function. It is a tool of choice for OpenGL
> *  beginners and assignements. It provides screenshot saving, mouse
> *  manipulated frames, stereo display, interpolated keyFrames, object
> *  selection, and much more. It is fully customizable and easy to extend to
> *  create complex applications, with a possible Qt GUI.
> 
> Signed-off-by: Jayen Ashar <jayen@cse.unsw.edu.au>

thanks applied.

> ---
>  recipes/libqglviewer/libqglviewer.inc      |   20 ++++++++++++++++++++
>  recipes/libqglviewer/libqglviewer_2.3.8.bb |    3 +++
>  2 files changed, 23 insertions(+), 0 deletions(-)
>  create mode 100644 recipes/libqglviewer/libqglviewer.inc
>  create mode 100644 recipes/libqglviewer/libqglviewer_2.3.8.bb
> 
> diff --git a/recipes/libqglviewer/libqglviewer.inc b/recipes/libqglviewer/libqglviewer.inc
> new file mode 100644
> index 0000000..48ea5bc
> --- /dev/null
> +++ b/recipes/libqglviewer/libqglviewer.inc
> @@ -0,0 +1,20 @@
> +DESCRIPTION = "an OpenGL 3D viewer library based on Qt4 - development files\
> +libqglviewer (also known as libQGLViewer) is a free C++ library based on Qt that enables the quick creation of OpenGL 3D viewers. It features a powerful camera trackball and simple applications simply require an implementation of the draw() function. It is a tool of choice for OpenGL beginners and assignements. It provides screenshot saving, mouse manipulated frames, stereo display, interpolated keyFrames, object selection, and much more. It is fully customizable and easy to extend to create complex applications, with a possible Qt GUI."
> +HOMEPAGE = "http://www.libqglviewer.com/"
> +SECTION = "devel/libs" #seems to have more recipes than libs/devel
> +LICENSE = "GPL" #You may use, distribute and copy the QGLViewer library under the terms of GNU General Public License version 2 or version 3, both of which are included in the LICENSE file.
> +#DEPENDS = "" #requires qt4-x11-free with QT_CONFIG_FLAGS without -no-opengl
> +
> +INC_PR = "r0"
> +
> +SRC_URI = "http://www.libqglviewer.com/src/libQGLViewer-${PV}.tar.gz"
> +
> +S = "${WORKDIR}/libQGLViewer-${PV}/QGLViewer/"
> +
> +inherit qt4x11
> +
> +do_install() {
> +    oe_runmake install INSTALL_ROOT=${D}
> +}
> +
> +FILES_${PN}-dev += " ${libdir}/libQGLViewer.prl"
> diff --git a/recipes/libqglviewer/libqglviewer_2.3.8.bb b/recipes/libqglviewer/libqglviewer_2.3.8.bb
> new file mode 100644
> index 0000000..813f1a6
> --- /dev/null
> +++ b/recipes/libqglviewer/libqglviewer_2.3.8.bb
> @@ -0,0 +1,3 @@
> +require libqglviewer.inc
> +
> +PR = "${INC_PR}.0"
> -- 
> 1.7.0.4
> 
> 
> _______________________________________________
> Openembedded-devel mailing list
> Openembedded-devel@lists.openembedded.org
> http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel



^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2010-12-11  9:23 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2010-11-27  0:13 [PATCH] libQGLViewer: New program Jayen Ashar
2010-11-27 10:18 ` Koen Kooi
2010-11-28  2:33   ` [PATCH v2] " Jayen Ashar
2010-12-11  9:22     ` Khem Raj

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.