diff options
Diffstat (limited to 'meta/recipes-devtools/autoconf/autoconf_2.69.bb')
-rw-r--r-- | meta/recipes-devtools/autoconf/autoconf_2.69.bb | 57 |
1 files changed, 55 insertions, 2 deletions
diff --git a/meta/recipes-devtools/autoconf/autoconf_2.69.bb b/meta/recipes-devtools/autoconf/autoconf_2.69.bb index 2e1b9bdc90..e30536a221 100644 --- a/meta/recipes-devtools/autoconf/autoconf_2.69.bb +++ b/meta/recipes-devtools/autoconf/autoconf_2.69.bb | |||
@@ -1,8 +1,14 @@ | |||
1 | require autoconf.inc | 1 | SUMMARY = "A GNU tool that produce shell scripts to automatically configure software" |
2 | DESCRIPTION = "Autoconf is an extensible package of M4 macros that produce shell scripts to automatically \ | ||
3 | configure software source code packages. Autoconf creates a configuration script for a package from a template \ | ||
4 | file that lists the operating system features that the package can use, in the form of M4 macro calls." | ||
5 | LICENSE = "GPLv3+" | ||
6 | HOMEPAGE = "http://www.gnu.org/software/autoconf/" | ||
7 | SECTION = "devel" | ||
8 | DEPENDS = "m4-native gnu-config-native" | ||
2 | 9 | ||
3 | PR = "r11" | 10 | PR = "r11" |
4 | 11 | ||
5 | LICENSE = "GPLv2 & GPLv3" | ||
6 | LIC_FILES_CHKSUM = "file://COPYING;md5=751419260aa954499f7abaabaa882bbe \ | 12 | LIC_FILES_CHKSUM = "file://COPYING;md5=751419260aa954499f7abaabaa882bbe \ |
7 | file://COPYINGv3;md5=d32239bcb673463ab874e80d47fae504" | 13 | file://COPYINGv3;md5=d32239bcb673463ab874e80d47fae504" |
8 | 14 | ||
@@ -26,6 +32,53 @@ SRC_URI[sha256sum] = "954bd69b391edc12d6a4a51a2dd1476543da5c6bbf05a95b59dc0dd6fd | |||
26 | 32 | ||
27 | SRC_URI_append_class-native = " file://fix_path_xtra.patch" | 33 | SRC_URI_append_class-native = " file://fix_path_xtra.patch" |
28 | 34 | ||
35 | RDEPENDS_${PN} = "m4 gnu-config \ | ||
36 | perl \ | ||
37 | perl-module-bytes \ | ||
38 | perl-module-carp \ | ||
39 | perl-module-constant \ | ||
40 | perl-module-data-dumper \ | ||
41 | perl-module-errno \ | ||
42 | perl-module-exporter \ | ||
43 | perl-module-file-basename \ | ||
44 | perl-module-file-compare \ | ||
45 | perl-module-file-copy \ | ||
46 | perl-module-file-find \ | ||
47 | perl-module-file-glob \ | ||
48 | perl-module-file-path \ | ||
49 | perl-module-file-spec \ | ||
50 | perl-module-file-spec-unix \ | ||
51 | perl-module-file-stat \ | ||
52 | perl-module-getopt-long \ | ||
53 | perl-module-io-file \ | ||
54 | perl-module-overloading \ | ||
55 | perl-module-posix \ | ||
56 | perl-module-symbol \ | ||
57 | perl-module-thread-queue \ | ||
58 | perl-module-threads \ | ||
59 | " | ||
60 | RDEPENDS_${PN}_class-native = "m4-native gnu-config-native hostperl-runtime-native" | ||
61 | |||
62 | inherit autotools texinfo | ||
63 | |||
64 | PERL = "${USRBINPATH}/perl" | ||
65 | PERL_class-native = "/usr/bin/env perl" | ||
66 | PERL_class-nativesdk = "/usr/bin/env perl" | ||
67 | |||
68 | CACHED_CONFIGUREVARS += "ac_cv_path_PERL='${PERL}'" | ||
69 | |||
29 | EXTRA_OECONF += "ac_cv_path_M4=m4 ac_cv_prog_TEST_EMACS=no" | 70 | EXTRA_OECONF += "ac_cv_path_M4=m4 ac_cv_prog_TEST_EMACS=no" |
30 | 71 | ||
72 | do_configure() { | ||
73 | # manually install a newer config.guess/.sub | ||
74 | install -m 0755 ${STAGING_DATADIR_NATIVE}/gnu-config/config.guess ${S}/build-aux | ||
75 | install -m 0755 ${STAGING_DATADIR_NATIVE}/gnu-config/config.sub ${S}/build-aux | ||
76 | |||
77 | oe_runconf | ||
78 | } | ||
79 | |||
80 | do_install_append() { | ||
81 | rm -rf ${D}${datadir}/emacs | ||
82 | } | ||
83 | |||
31 | BBCLASSEXTEND = "native nativesdk" | 84 | BBCLASSEXTEND = "native nativesdk" |