diff options
author | Bogdan Marinescu <bogdan.a.marinescu@intel.com> | 2013-05-27 15:14:48 +0300 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-05-29 22:07:54 +0100 |
commit | 493556b4dfb1e16d117dfd71209a7cde106cbddf (patch) | |
tree | 9290c3914e7ae2a740cf2b5a129a4636c9d5504a /meta/recipes-devtools/autogen/autogen-native_5.17.4.bb | |
parent | 5fa3649113b178266bc59a3a58d961ab4a6b41ad (diff) | |
download | poky-493556b4dfb1e16d117dfd71209a7cde106cbddf.tar.gz |
autogen-native: upgraded to 5.17.4
(From OE-Core rev: 849d98a45b3f21f55bfecdd9daf494a632d53a48)
Signed-off-by: Bogdan Marinescu <bogdan.a.marinescu@intel.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/autogen/autogen-native_5.17.4.bb')
-rw-r--r-- | meta/recipes-devtools/autogen/autogen-native_5.17.4.bb | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/meta/recipes-devtools/autogen/autogen-native_5.17.4.bb b/meta/recipes-devtools/autogen/autogen-native_5.17.4.bb new file mode 100644 index 0000000000..e5234c2909 --- /dev/null +++ b/meta/recipes-devtools/autogen/autogen-native_5.17.4.bb | |||
@@ -0,0 +1,34 @@ | |||
1 | SUMMARY = "AutoGen is a tool to manage programs that contain large amounts of repetitious text." | ||
2 | DESCRIPTION = "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." | ||
6 | HOMEPAGE = "http://www.gnu.org/software/autogen/" | ||
7 | SECTION = "devel" | ||
8 | LICENSE = "GPLv3" | ||
9 | LIC_FILES_CHKSUM = "file://COPYING;md5=d32239bcb673463ab874e80d47fae504" | ||
10 | |||
11 | SRC_URI = "${GNU_MIRROR}/autogen/rel${PV}/autogen-${PV}.tar.gz \ | ||
12 | file://guile.patch" | ||
13 | |||
14 | SRC_URI[md5sum] = "09f074cba57610bf4ef1147e01c8ae90" | ||
15 | SRC_URI[sha256sum] = "cd2585f4794d0e9d7f2cb0b9af4f2bd429946e718473edf1cf8c49f081ca71ed" | ||
16 | |||
17 | DEPENDS = "guile-native libtool-native libxml2-native" | ||
18 | RDEPENDS = "automake pkgconfig" | ||
19 | |||
20 | inherit autotools native | ||
21 | |||
22 | # Following line will be needed for the non-native target recipe. | ||
23 | #CFLAGS += "-L${STAGING_LIBDIR} -lguile-2.0 -lgc -pthread -I${STAGING_INCDIR}/guile/2.0 -I${STAGING_INCDIR}" | ||
24 | |||
25 | # autogen-native links against libguile which may have been relocated with sstate | ||
26 | # these environment variables ensure there isn't a relocation issue | ||
27 | export GUILE_LOAD_PATH = "${STAGING_DATADIR_NATIVE}/guile/2.0" | ||
28 | export GUILE_LOAD_COMPILED_PATH = "${STAGING_LIBDIR_NATIVE}/guile/2.0/ccache" | ||
29 | |||
30 | do_install_append () { | ||
31 | create_wrapper ${D}/${bindir}/autogen \ | ||
32 | GUILE_LOAD_PATH=${STAGING_DATADIR_NATIVE}/guile/2.0 \ | ||
33 | GUILE_LOAD_COMPILED_PATH=${STAGING_LIBDIR_NATIVE}/guile/2.0/ccache | ||
34 | } | ||