summaryrefslogtreecommitdiffstats
path: root/meta-oe/recipes-devtools/geany
diff options
context:
space:
mode:
authorTudor Florea <tudor.florea@enea.com>2014-10-10 03:20:04 +0200
committerTudor Florea <tudor.florea@enea.com>2014-10-10 03:20:04 +0200
commit1b8dfe266937a37a4c642f96ceb2347bf4c00a17 (patch)
tree0c6aab146bb3c82efd9c7846a9a4e70dcb0ec84f /meta-oe/recipes-devtools/geany
downloadmeta-openembedded-daisy-140929.tar.gz
initial commit for Enea Linux 4.0-140929daisy-140929
Migrated from the internal git server on the daisy-enea-point-release branch Signed-off-by: Tudor Florea <tudor.florea@enea.com>
Diffstat (limited to 'meta-oe/recipes-devtools/geany')
-rw-r--r--meta-oe/recipes-devtools/geany/geany/0001-configure.ac-remove-additional-c-test.patch47
-rw-r--r--meta-oe/recipes-devtools/geany/geany_1.23.bb16
2 files changed, 63 insertions, 0 deletions
diff --git a/meta-oe/recipes-devtools/geany/geany/0001-configure.ac-remove-additional-c-test.patch b/meta-oe/recipes-devtools/geany/geany/0001-configure.ac-remove-additional-c-test.patch
new file mode 100644
index 0000000000..5166fece09
--- /dev/null
+++ b/meta-oe/recipes-devtools/geany/geany/0001-configure.ac-remove-additional-c-test.patch
@@ -0,0 +1,47 @@
1From e62d5b59262ec7ffe07931790712c7e247377795 Mon Sep 17 00:00:00 2001
2From: =?UTF-8?q?Andreas=20M=C3=BCller?= <schnitzeltony@googlemail.com>
3Date: Thu, 21 Feb 2013 09:31:31 +0100
4Subject: [PATCH] configure.ac remove additional c++ test
5MIME-Version: 1.0
6Content-Type: text/plain; charset=UTF-8
7Content-Transfer-Encoding: 8bit
8
9For openembedded cross-builds CXX can contain something like:
10
11arm-oe-linux-gnueabi-g++ -march=armv5te -marm -mthumb-interwork --sysroot=/home/jenkins/oe/shr-core-branches/shr-core/tmp-eglibc/sysroots/qemuarm
12
13This ends up in
14
15configure:5582: error: No C++ compiler found. Please install a C++ compiler.
16
17Anyway if [1] is still valid, the combination of AC_PROG_CC and AC_PROG_CXX
18should thow an error message.
19
20[1] http://lists.gnu.org/archive/html/bug-autoconf/2010-05/msg00001.html
21
22Upstream-Status: Inappropriate [configuration]
23
24Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com>
25---
26 configure.ac | 5 -----
27 1 files changed, 0 insertions(+), 5 deletions(-)
28
29diff --git a/configure.ac b/configure.ac
30index c37312a..742bf35 100644
31--- a/configure.ac
32+++ b/configure.ac
33@@ -26,11 +26,6 @@ AC_USE_SYSTEM_EXTENSIONS
34 AC_PROG_CC
35
36 AC_PROG_CXX
37-# check for C++ compiler explicitly and fail if none is found, do this check
38-# after AC_PROG_CXX has set the CXX environment variable
39-if ! which $CXX >/dev/null 2>&1; then
40- AC_MSG_ERROR([No C++ compiler found. Please install a C++ compiler.])
41-fi
42
43 AC_PROG_INSTALL
44 AC_PROG_LN_S
45--
461.7.6.5
47
diff --git a/meta-oe/recipes-devtools/geany/geany_1.23.bb b/meta-oe/recipes-devtools/geany/geany_1.23.bb
new file mode 100644
index 0000000000..4e0d4bf8c6
--- /dev/null
+++ b/meta-oe/recipes-devtools/geany/geany_1.23.bb
@@ -0,0 +1,16 @@
1SUMMARY = "A fast and lightweight IDE"
2HOMEPAGE = "http://www.geany.org/"
3LICENSE = "GPLv2"
4LIC_FILES_CHKSUM = "file://COPYING;md5=bd7b2c994af21d318bd2cd3b3f80c2d5"
5DEPENDS = "gtk+"
6
7inherit autotools pkgconfig perlnative
8
9SRC_URI = " \
10 http://download.geany.org/${PN}-${PV}.tar.bz2 \
11 file://0001-configure.ac-remove-additional-c-test.patch \
12"
13SRC_URI[md5sum] = "4290e8c32305e916f57bb0f0233bbec2"
14SRC_URI[sha256sum] = "cdd4a772694803c837ae59e56f7bdc2faba174509317211f522e7d25dfcbe8b0"
15
16FILES_${PN} += "${datadir}/icons"