summaryrefslogtreecommitdiffstats
path: root/meta-oe
diff options
context:
space:
mode:
Diffstat (limited to 'meta-oe')
-rw-r--r--meta-oe/recipes-graphics/gphoto2/gphoto2-2.5.8/0001-configure.ac-remove-AM_PO_SUBDIRS.patch26
-rw-r--r--meta-oe/recipes-graphics/gphoto2/gphoto2-2.5.8/0002-Look-for-popt-with-GP_CHECK_LIBRARY-function.patch32
-rw-r--r--meta-oe/recipes-graphics/gphoto2/gphoto2_2.5.8.bb22
3 files changed, 80 insertions, 0 deletions
diff --git a/meta-oe/recipes-graphics/gphoto2/gphoto2-2.5.8/0001-configure.ac-remove-AM_PO_SUBDIRS.patch b/meta-oe/recipes-graphics/gphoto2/gphoto2-2.5.8/0001-configure.ac-remove-AM_PO_SUBDIRS.patch
new file mode 100644
index 000000000..7800fdd57
--- /dev/null
+++ b/meta-oe/recipes-graphics/gphoto2/gphoto2-2.5.8/0001-configure.ac-remove-AM_PO_SUBDIRS.patch
@@ -0,0 +1,26 @@
1From 60b6d5c95ca3632e02031ac04fb5486dd209011c Mon Sep 17 00:00:00 2001
2From: Andreas Baak <andreas.baak@gmail.com>
3Date: Sun, 12 Jul 2015 01:02:15 -0700
4Subject: [PATCH] configure.ac remove AM_PO_SUBDIRS
5
6This is done twice together with oe autotools.bbclass.
7
8---
9 configure.ac | 1 -
10 1 file changed, 1 deletion(-)
11
12diff --git a/configure.ac b/configure.ac
13index bb5b795..93fbaf2 100644
14--- a/configure.ac
15+++ b/configure.ac
16@@ -64,7 +64,6 @@ GP_GETTEXT_HACK([],[Lutz Müller and others],[${MAIL_GPHOTO_TRANSLATION}])
17 ALL_LINGUAS="az cs da de en_GB es eu fi fr hu id is it ja nl pa pl pt_BR ro ru rw sk sr sv uk vi zh_CN zh_TW"
18 AM_GNU_GETTEXT_VERSION([0.14.1])
19 AM_GNU_GETTEXT([external])
20-AM_PO_SUBDIRS()
21 AM_ICONV()
22 GP_GETTEXT_FLAGS()
23
24--
251.9.1
26
diff --git a/meta-oe/recipes-graphics/gphoto2/gphoto2-2.5.8/0002-Look-for-popt-with-GP_CHECK_LIBRARY-function.patch b/meta-oe/recipes-graphics/gphoto2/gphoto2-2.5.8/0002-Look-for-popt-with-GP_CHECK_LIBRARY-function.patch
new file mode 100644
index 000000000..e6c7dd667
--- /dev/null
+++ b/meta-oe/recipes-graphics/gphoto2/gphoto2-2.5.8/0002-Look-for-popt-with-GP_CHECK_LIBRARY-function.patch
@@ -0,0 +1,32 @@
1From 884d4c9bbd2dc147d614a5fabc25dbea7a71cd48 Mon Sep 17 00:00:00 2001
2From: Andreas Baak <andreas.baak@gmail.com>
3Date: Sun, 12 Jul 2015 02:13:58 -0700
4Subject: [PATCH] Look for popt with GP_CHECK_LIBRARY function
5
6The previously used proprietary function GP_CHECK_POPT
7defined in /.m4m/gp-check-opt.m4 is not ready for cross
8compilation since it looks for the library and headers
9in the host system. Yocto reports the following error:
10"QA Issue: gphoto2: The compile log indicates that host
11include and/or library paths were used."
12Using the GP_CHECK_LIBRARY function fixes this problem
13---
14 configure.ac | 2 +-
15 1 file changed, 1 insertion(+), 1 deletion(-)
16
17diff --git a/configure.ac b/configure.ac
18index 93fbaf2..6d661f0 100644
19--- a/configure.ac
20+++ b/configure.ac
21@@ -285,7 +285,7 @@ GP_CONFIG_MSG([Text preview support],[$aa_msg])
22 dnl ---------------------------------------------------------------------------
23 dnl popt.h: Simplifies handling of command-line options enormously.
24 dnl ---------------------------------------------------------------------------
25-GP_CHECK_POPT([mandatory])
26+GP_CHECK_LIBRARY([POPT], [popt], [], [popt.h], [], [], [mandatory])
27
28
29 dnl ---------------------------------------------------------------------------
30--
311.9.1
32
diff --git a/meta-oe/recipes-graphics/gphoto2/gphoto2_2.5.8.bb b/meta-oe/recipes-graphics/gphoto2/gphoto2_2.5.8.bb
new file mode 100644
index 000000000..62d283b88
--- /dev/null
+++ b/meta-oe/recipes-graphics/gphoto2/gphoto2_2.5.8.bb
@@ -0,0 +1,22 @@
1SUMMARY = "gphoto2 - a command-line frontend to libgphoto2"
2HOMEPAGE = "http://www.gphoto.com/"
3LICENSE = "GPLv2"
4LIC_FILES_CHKSUM = "file://COPYING;md5=59530bdf33659b29e73d4adb9f9f6552"
5
6DEPENDS = "libgphoto2 popt readline"
7RDEPENDS_gphoto2 = "libgphoto2"
8
9SRC_URI = "${SOURCEFORGE_MIRROR}/gphoto/gphoto2-${PV}.tar.bz2;name=gphoto2 \
10 file://0001-configure.ac-remove-AM_PO_SUBDIRS.patch \
11 file://0002-Look-for-popt-with-GP_CHECK_LIBRARY-function.patch \
12"
13
14SRC_URI[gphoto2.md5sum] = "bae369aee6881e590c5c91bdbb11a5f8"
15SRC_URI[gphoto2.sha256sum] = "a9abcd15d95f205318d17e3ac12af7ce523d2bc4943709d50b0a12c30cc5ee4d"
16
17inherit autotools pkgconfig gettext
18
19EXTRA_OECONF += "--with-jpeg-prefix=${STAGING_INCDIR} \
20 --without-cdk \
21"
22