diff options
Diffstat (limited to 'meta-oe/recipes-devtools/autoconf-2.13/autoconf-2.13-native_2.13.bb')
| -rw-r--r-- | meta-oe/recipes-devtools/autoconf-2.13/autoconf-2.13-native_2.13.bb | 67 |
1 files changed, 0 insertions, 67 deletions
diff --git a/meta-oe/recipes-devtools/autoconf-2.13/autoconf-2.13-native_2.13.bb b/meta-oe/recipes-devtools/autoconf-2.13/autoconf-2.13-native_2.13.bb deleted file mode 100644 index 6b4c55ed4a..0000000000 --- a/meta-oe/recipes-devtools/autoconf-2.13/autoconf-2.13-native_2.13.bb +++ /dev/null | |||
| @@ -1,67 +0,0 @@ | |||
| 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 | SECTION = "devel" | ||
| 6 | |||
| 7 | HOMEPAGE = "http://www.gnu.org/software/autoconf/" | ||
| 8 | |||
| 9 | LICENSE = "GPL-3.0-only" | ||
| 10 | LICENSE = "GPL-2.0-only & GPL-3.0-only" | ||
| 11 | LIC_FILES_CHKSUM = "file://COPYING;md5=361b6b837cad26c6900a926b62aada5f" | ||
| 12 | |||
| 13 | SRC_URI = " \ | ||
| 14 | ${GNU_MIRROR}/autoconf/autoconf-${PV}.tar.gz \ | ||
| 15 | file://0001-Add-config.guess-config.sub-install-to-destdir.patch \ | ||
| 16 | " | ||
| 17 | |||
| 18 | S = "${WORKDIR}/${BPN}" | ||
| 19 | SRC_URI[sha256sum] = "f0611136bee505811e9ca11ca7ac188ef5323a8e2ef19cffd3edb3cf08fd791e" | ||
| 20 | |||
| 21 | inherit texinfo native | ||
| 22 | |||
| 23 | DEPENDS += "m4-native gnu-config-native" | ||
| 24 | RDEPENDS:${PN} = "m4-native gnu-config-native" | ||
| 25 | |||
| 26 | PERL = "${USRBINPATH}/perl" | ||
| 27 | PERL:class-native = "/usr/bin/env perl" | ||
| 28 | |||
| 29 | CACHED_CONFIGUREVARS += "ac_cv_path_PERL='${PERL}' \ | ||
| 30 | ac_cv_path_M4=m4 \ | ||
| 31 | " | ||
| 32 | |||
| 33 | CONFIGUREOPTS = " \ | ||
| 34 | --build=${BUILD_SYS} \ | ||
| 35 | --host=${HOST_SYS} \ | ||
| 36 | --target=${TARGET_SYS} \ | ||
| 37 | --prefix=${prefix} \ | ||
| 38 | --exec_prefix=${exec_prefix} \ | ||
| 39 | --bindir=${bindir} \ | ||
| 40 | --sbindir=${sbindir} \ | ||
| 41 | --libexecdir=${libexecdir} \ | ||
| 42 | --datadir=${datadir} \ | ||
| 43 | --sysconfdir=${sysconfdir} \ | ||
| 44 | --sharedstatedir=${sharedstatedir} \ | ||
| 45 | --localstatedir=${localstatedir} \ | ||
| 46 | --libdir=${libdir} \ | ||
| 47 | --includedir=${includedir} \ | ||
| 48 | --oldincludedir=${includedir} \ | ||
| 49 | --infodir=${infodir} \ | ||
| 50 | --mandir=${mandir} \ | ||
| 51 | --disable-silent-rules \ | ||
| 52 | " | ||
| 53 | |||
| 54 | do_configure() { | ||
| 55 | ${CACHED_CONFIGUREVARS} ./configure ${CONFIGUREOPTS} | ||
| 56 | } | ||
| 57 | |||
| 58 | do_install() { | ||
| 59 | oe_runmake 'DESTDIR=${D}' install | ||
| 60 | |||
| 61 | # avoid conflicts with standard autotools | ||
| 62 | ver="213" | ||
| 63 | for file in `find ${D}${bindir} -type f`; do | ||
| 64 | mv $file $file$ver | ||
| 65 | done | ||
| 66 | mv ${D}${datadir}/autoconf ${D}${datadir}/autoconf213 | ||
| 67 | } | ||
