* [Buildroot] [PATCH] gpu-viv-bin-mx6q: add pkgconfig files for EGL and OpenGLESv2
@ 2013-09-17 11:20 Fatih Aşıcı
2013-09-18 7:09 ` Arnout Vandecappelle
0 siblings, 1 reply; 3+ messages in thread
From: Fatih Aşıcı @ 2013-09-17 11:20 UTC (permalink / raw)
To: buildroot
Signed-off-by: Fatih A??c? <fatih.asici@gmail.com>
---
.../gpu-viv-bin-mx6q-add-pkgconfig-files.patch | 30 ++++++++++++++++++++
1 file changed, 30 insertions(+)
create mode 100644 package/freescale-imx/gpu-viv-bin-mx6q/gpu-viv-bin-mx6q-add-pkgconfig-files.patch
diff --git a/package/freescale-imx/gpu-viv-bin-mx6q/gpu-viv-bin-mx6q-add-pkgconfig-files.patch b/package/freescale-imx/gpu-viv-bin-mx6q/gpu-viv-bin-mx6q-add-pkgconfig-files.patch
new file mode 100644
index 0000000..8ed4ffe
--- /dev/null
+++ b/package/freescale-imx/gpu-viv-bin-mx6q/gpu-viv-bin-mx6q-add-pkgconfig-files.patch
@@ -0,0 +1,30 @@
+Add .pc files for the OpenGLESv2 and EGL libraries
+
+Signed-off-by: Fatih A??c? <fatih.asici@gmail.com>
+
+--- /dev/null
++++ b/usr/lib/pkgconfig/egl.pc
+@@ -0,0 +1,10 @@
++prefix=/usr
++exec_prefix=${prefix}
++libdir=${exec_prefix}/lib
++includedir=${prefix}/include
++
++Name: egl
++Description: Freescale gpu-viv-bin-mx6q implementation of EGL
++Version: 1.0
++Libs: -L${libdir} -lEGL
++Cflags: -I${includedir}/ -DEGL_API_FB=1
+--- /dev/null
++++ b/usr/lib/pkgconfig/glesv2.pc
+@@ -0,0 +1,10 @@
++prefix=/usr
++exec_prefix=${prefix}
++libdir=${exec_prefix}/lib
++includedir=${prefix}/include
++
++Name: glesv2
++Description: Freescale gpu-viv-bin-mx6q implementation of OpenGL ESv2
++Version: 2.0
++Libs: -L${libdir} -lGAL -lEGL -lGLESv2
++Cflags: -I${includedir}/ -DEGL_API_FB=1
--
1.7.10.4
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [Buildroot] [PATCH] gpu-viv-bin-mx6q: add pkgconfig files for EGL and OpenGLESv2
2013-09-17 11:20 [Buildroot] [PATCH] gpu-viv-bin-mx6q: add pkgconfig files for EGL and OpenGLESv2 Fatih Aşıcı
@ 2013-09-18 7:09 ` Arnout Vandecappelle
2013-09-18 8:36 ` Fatih Aşıcı
0 siblings, 1 reply; 3+ messages in thread
From: Arnout Vandecappelle @ 2013-09-18 7:09 UTC (permalink / raw)
To: buildroot
On 17/09/13 13:20, Fatih A??c? wrote:
> Signed-off-by: Fatih A??c? <fatih.asici@gmail.com>
> ---
> .../gpu-viv-bin-mx6q-add-pkgconfig-files.patch | 30 ++++++++++++++++++++
> 1 file changed, 30 insertions(+)
> create mode 100644 package/freescale-imx/gpu-viv-bin-mx6q/gpu-viv-bin-mx6q-add-pkgconfig-files.patch
>
> diff --git a/package/freescale-imx/gpu-viv-bin-mx6q/gpu-viv-bin-mx6q-add-pkgconfig-files.patch b/package/freescale-imx/gpu-viv-bin-mx6q/gpu-viv-bin-mx6q-add-pkgconfig-files.patch
> new file mode 100644
> index 0000000..8ed4ffe
> --- /dev/null
> +++ b/package/freescale-imx/gpu-viv-bin-mx6q/gpu-viv-bin-mx6q-add-pkgconfig-files.patch
Personally, I would prefer to have these as plain files in the package
directory and copy them to staging in the INSTALL_STAGING_CMDS. But I
guess that's a matter of taste.
If you do keep it as a patch, make sure it gets a number.
> @@ -0,0 +1,30 @@
> +Add .pc files for the OpenGLESv2 and EGL libraries
> +
> +Signed-off-by: Fatih A??c? <fatih.asici@gmail.com>
> +
> +--- /dev/null
> ++++ b/usr/lib/pkgconfig/egl.pc
> +@@ -0,0 +1,10 @@
> ++prefix=/usr
> ++exec_prefix=${prefix}
> ++libdir=${exec_prefix}/lib
> ++includedir=${prefix}/include
> ++
> ++Name: egl
> ++Description: Freescale gpu-viv-bin-mx6q implementation of EGL
> ++Version: 1.0
> ++Libs: -L${libdir} -lEGL
I haven't double-checked, but I think that -lEGL requires -lGAL as well.
> ++Cflags: -I${includedir}/ -DEGL_API_FB=1
> +--- /dev/null
> ++++ b/usr/lib/pkgconfig/glesv2.pc
> +@@ -0,0 +1,10 @@
> ++prefix=/usr
> ++exec_prefix=${prefix}
> ++libdir=${exec_prefix}/lib
> ++includedir=${prefix}/include
> ++
> ++Name: glesv2
> ++Description: Freescale gpu-viv-bin-mx6q implementation of OpenGL ESv2
> ++Version: 2.0
> ++Libs: -L${libdir} -lGAL -lEGL -lGLESv2
> ++Cflags: -I${includedir}/ -DEGL_API_FB=1
>
What about OpenVG?
Regards,
Arnout
--
Arnout Vandecappelle arnout at mind be
Senior Embedded Software Architect +32-16-286500
Essensium/Mind http://www.mind.be
G.Geenslaan 9, 3001 Leuven, Belgium BE 872 984 063 RPR Leuven
LinkedIn profile: http://www.linkedin.com/in/arnoutvandecappelle
GPG fingerprint: 7CB5 E4CC 6C2E EFD4 6E3D A754 F963 ECAB 2450 2F1F
^ permalink raw reply [flat|nested] 3+ messages in thread
* [Buildroot] [PATCH] gpu-viv-bin-mx6q: add pkgconfig files for EGL and OpenGLESv2
2013-09-18 7:09 ` Arnout Vandecappelle
@ 2013-09-18 8:36 ` Fatih Aşıcı
0 siblings, 0 replies; 3+ messages in thread
From: Fatih Aşıcı @ 2013-09-18 8:36 UTC (permalink / raw)
To: buildroot
On Wed, 2013-09-18 at 09:09 +0200, Arnout Vandecappelle wrote:
> On 17/09/13 13:20, Fatih A??c? wrote:
> > Signed-off-by: Fatih A??c? <fatih.asici@gmail.com>
> > ---
> > .../gpu-viv-bin-mx6q-add-pkgconfig-files.patch | 30 ++++++++++++++++++++
> > 1 file changed, 30 insertions(+)
> > create mode 100644 package/freescale-imx/gpu-viv-bin-mx6q/gpu-viv-bin-mx6q-add-pkgconfig-files.patch
> >
> > diff --git a/package/freescale-imx/gpu-viv-bin-mx6q/gpu-viv-bin-mx6q-add-pkgconfig-files.patch b/package/freescale-imx/gpu-viv-bin-mx6q/gpu-viv-bin-mx6q-add-pkgconfig-files.patch
> > new file mode 100644
> > index 0000000..8ed4ffe
> > --- /dev/null
> > +++ b/package/freescale-imx/gpu-viv-bin-mx6q/gpu-viv-bin-mx6q-add-pkgconfig-files.patch
>
> Personally, I would prefer to have these as plain files in the package
> directory and copy them to staging in the INSTALL_STAGING_CMDS. But I
> guess that's a matter of taste.
>
OK. It will be easier with plain files.
> If you do keep it as a patch, make sure it gets a number.
>
> > @@ -0,0 +1,30 @@
> > +Add .pc files for the OpenGLESv2 and EGL libraries
> > +
> > +Signed-off-by: Fatih A??c? <fatih.asici@gmail.com>
> > +
> > +--- /dev/null
> > ++++ b/usr/lib/pkgconfig/egl.pc
> > +@@ -0,0 +1,10 @@
> > ++prefix=/usr
> > ++exec_prefix=${prefix}
> > ++libdir=${exec_prefix}/lib
> > ++includedir=${prefix}/include
> > ++
> > ++Name: egl
> > ++Description: Freescale gpu-viv-bin-mx6q implementation of EGL
> > ++Version: 1.0
> > ++Libs: -L${libdir} -lEGL
>
> I haven't double-checked, but I think that -lEGL requires -lGAL as well.
You are right.
> > ++Cflags: -I${includedir}/ -DEGL_API_FB=1
> > +--- /dev/null
> > ++++ b/usr/lib/pkgconfig/glesv2.pc
> > +@@ -0,0 +1,10 @@
> > ++prefix=/usr
> > ++exec_prefix=${prefix}
> > ++libdir=${exec_prefix}/lib
> > ++includedir=${prefix}/include
> > ++
> > ++Name: glesv2
> > ++Description: Freescale gpu-viv-bin-mx6q implementation of OpenGL ESv2
> > ++Version: 2.0
> > ++Libs: -L${libdir} -lGAL -lEGL -lGLESv2
> > ++Cflags: -I${includedir}/ -DEGL_API_FB=1
> >
>
> What about OpenVG?
I will add vg.pc within the next version of patch.
> Regards,
> Arnout
Thanks,
Fatih
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2013-09-18 8:36 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-09-17 11:20 [Buildroot] [PATCH] gpu-viv-bin-mx6q: add pkgconfig files for EGL and OpenGLESv2 Fatih Aşıcı
2013-09-18 7:09 ` Arnout Vandecappelle
2013-09-18 8:36 ` Fatih Aşıcı
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox