* [Buildroot] [PATCH v3] gpu-viv-bin-mx6q: add pkgconfig files for EGL, OpenGLESv2 and OpenVG
@ 2013-09-18 11:41 Fatih Aşıcı
2013-09-18 16:53 ` Thomas Petazzoni
2013-09-18 22:21 ` Peter Korsgaard
0 siblings, 2 replies; 3+ messages in thread
From: Fatih Aşıcı @ 2013-09-18 11:41 UTC (permalink / raw)
To: buildroot
Signed-off-by: Fatih A??c? <fatih.asici@gmail.com>
---
Changes v2 -> v3:
- Define EGL_API_FB if GPU_VIV_BIN_MX6Q_LIB_TARGET == fb (suggested by
J?r?me Pouiller)
Changes v1 -> v2:
- Add .pc files to package dir instead of patching (suggested by
Arnout Vandecappelle)
- EGL library needs requires -lGAL, too (suggested by Arnout
Vandecappelle)
- Added .pc file for OpenVG (suggested by Arnout Vandecappelle)
---
package/freescale-imx/gpu-viv-bin-mx6q/egl.pc | 10 ++++++++++
package/freescale-imx/gpu-viv-bin-mx6q/glesv2.pc | 10 ++++++++++
package/freescale-imx/gpu-viv-bin-mx6q/gpu-viv-bin-mx6q.mk | 9 +++++++++
package/freescale-imx/gpu-viv-bin-mx6q/vg.pc | 10 ++++++++++
4 files changed, 39 insertions(+)
create mode 100644 package/freescale-imx/gpu-viv-bin-mx6q/egl.pc
create mode 100644 package/freescale-imx/gpu-viv-bin-mx6q/glesv2.pc
create mode 100644 package/freescale-imx/gpu-viv-bin-mx6q/vg.pc
diff --git a/package/freescale-imx/gpu-viv-bin-mx6q/egl.pc b/package/freescale-imx/gpu-viv-bin-mx6q/egl.pc
new file mode 100644
index 0000000..c984247
--- /dev/null
+++ b/package/freescale-imx/gpu-viv-bin-mx6q/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} -lGAL -lEGL
+Cflags: -I${includedir}/ -DEGL_API_FB=1
diff --git a/package/freescale-imx/gpu-viv-bin-mx6q/glesv2.pc b/package/freescale-imx/gpu-viv-bin-mx6q/glesv2.pc
new file mode 100644
index 0000000..7cfb5e7
--- /dev/null
+++ b/package/freescale-imx/gpu-viv-bin-mx6q/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
diff --git a/package/freescale-imx/gpu-viv-bin-mx6q/gpu-viv-bin-mx6q.mk b/package/freescale-imx/gpu-viv-bin-mx6q/gpu-viv-bin-mx6q.mk
index 0338e13..1b9684a 100644
--- a/package/freescale-imx/gpu-viv-bin-mx6q/gpu-viv-bin-mx6q.mk
+++ b/package/freescale-imx/gpu-viv-bin-mx6q/gpu-viv-bin-mx6q.mk
@@ -51,6 +51,15 @@ endef
define GPU_VIV_BIN_MX6Q_INSTALL_STAGING_CMDS
cp -r $(@D)/usr/* $(STAGING_DIR)/usr
+ for lib in egl glesv2 vg; do \
+ $(INSTALL) -m 0644 -D \
+ package/freescale-imx/gpu-viv-bin-mx6q/$${lib}.pc \
+ $(STAGING_DIR)/usr/lib/pkgconfig/$${lib}.pc; \
+ if [ "$(GPU_VIV_BIN_MX6Q_LIB_TARGET)" != "fb" ]; then \
+ $(SED) "s/-DEGL_API_FB=1//" \
+ $(STAGING_DIR)/usr/lib/pkgconfig/$${lib}.pc; \
+ fi; \
+ done
endef
ifeq ($(BR2_PACKAGE_GPU_VIV_BIN_MX6Q_EXAMPLES),y)
diff --git a/package/freescale-imx/gpu-viv-bin-mx6q/vg.pc b/package/freescale-imx/gpu-viv-bin-mx6q/vg.pc
new file mode 100644
index 0000000..fb14005
--- /dev/null
+++ b/package/freescale-imx/gpu-viv-bin-mx6q/vg.pc
@@ -0,0 +1,10 @@
+prefix=/usr
+exec_prefix=${prefix}
+libdir=${exec_prefix}/lib
+includedir=${prefix}/include
+
+Name: vg
+Description: Freescale gpu-viv-bin-mx6q implementation of OpenVG
+Version: 1.1
+Libs: -L${libdir} -lGAL -lEGL -lOpenVG
+Cflags: -I${includedir}/ -DEGL_API_FB=1
--
1.7.10.4
^ permalink raw reply related [flat|nested] 3+ messages in thread* [Buildroot] [PATCH v3] gpu-viv-bin-mx6q: add pkgconfig files for EGL, OpenGLESv2 and OpenVG
2013-09-18 11:41 [Buildroot] [PATCH v3] gpu-viv-bin-mx6q: add pkgconfig files for EGL, OpenGLESv2 and OpenVG Fatih Aşıcı
@ 2013-09-18 16:53 ` Thomas Petazzoni
2013-09-18 22:21 ` Peter Korsgaard
1 sibling, 0 replies; 3+ messages in thread
From: Thomas Petazzoni @ 2013-09-18 16:53 UTC (permalink / raw)
To: buildroot
Dear Fatih A??c?,
On Wed, 18 Sep 2013 14:41:33 +0300, Fatih A??c? wrote:
> Signed-off-by: Fatih A??c? <fatih.asici@gmail.com>
Acked-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
--
Thomas Petazzoni, Free Electrons
Kernel, drivers, real-time and embedded Linux
development, consulting, training and support.
http://free-electrons.com
^ permalink raw reply [flat|nested] 3+ messages in thread
* [Buildroot] [PATCH v3] gpu-viv-bin-mx6q: add pkgconfig files for EGL, OpenGLESv2 and OpenVG
2013-09-18 11:41 [Buildroot] [PATCH v3] gpu-viv-bin-mx6q: add pkgconfig files for EGL, OpenGLESv2 and OpenVG Fatih Aşıcı
2013-09-18 16:53 ` Thomas Petazzoni
@ 2013-09-18 22:21 ` Peter Korsgaard
1 sibling, 0 replies; 3+ messages in thread
From: Peter Korsgaard @ 2013-09-18 22:21 UTC (permalink / raw)
To: buildroot
>>>>> "Fatih" == Fatih A??c? <fatih.asici@gmail.com> writes:
Fatih> Signed-off-by: Fatih A??c? <fatih.asici@gmail.com>
Fatih> ---
Fatih> Changes v2 -> v3:
Fatih> - Define EGL_API_FB if GPU_VIV_BIN_MX6Q_LIB_TARGET == fb (suggested by
Fatih> J?r?me Pouiller)
Committed, thanks.
--
Bye, Peter Korsgaard
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2013-09-18 22:21 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-09-18 11:41 [Buildroot] [PATCH v3] gpu-viv-bin-mx6q: add pkgconfig files for EGL, OpenGLESv2 and OpenVG Fatih Aşıcı
2013-09-18 16:53 ` Thomas Petazzoni
2013-09-18 22:21 ` Peter Korsgaard
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox