summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/autogen/autogen-native_5.18.2.bb
diff options
context:
space:
mode:
authorChen Qi <Qi.Chen@windriver.com>2014-06-06 16:22:28 +0800
committerRichard Purdie <richard.purdie@linuxfoundation.org>2014-06-06 10:24:07 +0100
commit22f422fb9b4db611d09335837489c0a01947ad0e (patch)
tree444fc0666c5de80a19ce697d58ecd1e7cf64f485 /meta/recipes-devtools/autogen/autogen-native_5.18.2.bb
parent7c127aad2804b80169825cd17d18e3e494a6e5a2 (diff)
downloadpoky-22f422fb9b4db611d09335837489c0a01947ad0e.tar.gz
autogen-native: upgrade from 2.18.2 to 2.18.3
Upgrade autogen-native from 2.18.2 to 2.18.3. A patch is made to fix the compilation error. (From OE-Core rev: 84052c30c7e4b845543c9704945170a55734343e) Signed-off-by: Chen Qi <Qi.Chen@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/autogen/autogen-native_5.18.2.bb')
-rw-r--r--meta/recipes-devtools/autogen/autogen-native_5.18.2.bb31
1 files changed, 0 insertions, 31 deletions
diff --git a/meta/recipes-devtools/autogen/autogen-native_5.18.2.bb b/meta/recipes-devtools/autogen/autogen-native_5.18.2.bb
deleted file mode 100644
index 92e7099f20..0000000000
--- a/meta/recipes-devtools/autogen/autogen-native_5.18.2.bb
+++ /dev/null
@@ -1,31 +0,0 @@
1SUMMARY = "Automated text and program generation tool"
2DESCRIPTION = "AutoGen is a tool designed to simplify the creation and\
3 maintenance of programs that contain large amounts of repetitious text.\
4 It is especially valuable in programs that have several blocks of text\
5 that must be kept synchronized."
6HOMEPAGE = "http://www.gnu.org/software/autogen/"
7SECTION = "devel"
8LICENSE = "GPLv3"
9LIC_FILES_CHKSUM = "file://COPYING;md5=d32239bcb673463ab874e80d47fae504"
10
11SRC_URI = "${GNU_MIRROR}/autogen/rel${PV}/autogen-${PV}.tar.gz \
12 file://guile.patch \
13 file://increase-timeout-limit.patch"
14
15SRC_URI[md5sum] = "117c4bc5613c57e1b97d760a5d1910a4"
16SRC_URI[sha256sum] = "cc2702dec21ba5b01144865163f6d1a54268d2b72aafc5520ad0e0cb57104068"
17
18DEPENDS = "guile-native libtool-native libxml2-native"
19
20inherit autotools texinfo native
21
22# autogen-native links against libguile which may have been relocated with sstate
23# these environment variables ensure there isn't a relocation issue
24export GUILE_LOAD_PATH = "${STAGING_DATADIR_NATIVE}/guile/2.0"
25export GUILE_LOAD_COMPILED_PATH = "${STAGING_LIBDIR_NATIVE}/guile/2.0/ccache"
26
27do_install_append () {
28 create_wrapper ${D}/${bindir}/autogen \
29 GUILE_LOAD_PATH=${STAGING_DATADIR_NATIVE}/guile/2.0 \
30 GUILE_LOAD_COMPILED_PATH=${STAGING_LIBDIR_NATIVE}/guile/2.0/ccache
31}