mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-06-03 14:19:52 +00:00
autoconf-2.13-native: remove recipe
The autoconf-2.13-native recipe was introduced for building mozjs-78[1]. But mozjs-78 has been removed for a long time[1] and the current mozjs doesn't require it anymore. Considering that autoconf 2.13 was released in 1999 and no recipes require it anymore, we can safely remove it. [1] https://git.openembedded.org/meta-openembedded/commit/?id=fe1607060ac2dd42ae8c5115b8cbc4993b467a87 [2] https://git.openembedded.org/meta-openembedded/commit/?id=7432c1a2ef9d75b078da31d268ffd016e8dcf583 Signed-off-by: Yi Zhao <yi.zhao@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
This commit is contained in:
@@ -1,67 +0,0 @@
|
|||||||
SUMMARY = "A GNU tool that produce shell scripts to automatically configure software"
|
|
||||||
DESCRIPTION = "Autoconf is an extensible package of M4 macros that produce shell scripts to automatically \
|
|
||||||
configure software source code packages. Autoconf creates a configuration script for a package from a template \
|
|
||||||
file that lists the operating system features that the package can use, in the form of M4 macro calls."
|
|
||||||
SECTION = "devel"
|
|
||||||
|
|
||||||
HOMEPAGE = "http://www.gnu.org/software/autoconf/"
|
|
||||||
|
|
||||||
LICENSE = "GPL-3.0-only"
|
|
||||||
LICENSE = "GPL-2.0-only & GPL-3.0-only"
|
|
||||||
LIC_FILES_CHKSUM = "file://COPYING;md5=361b6b837cad26c6900a926b62aada5f"
|
|
||||||
|
|
||||||
SRC_URI = " \
|
|
||||||
${GNU_MIRROR}/autoconf/autoconf-${PV}.tar.gz \
|
|
||||||
file://0001-Add-config.guess-config.sub-install-to-destdir.patch \
|
|
||||||
"
|
|
||||||
|
|
||||||
S = "${WORKDIR}/${BPN}"
|
|
||||||
SRC_URI[sha256sum] = "f0611136bee505811e9ca11ca7ac188ef5323a8e2ef19cffd3edb3cf08fd791e"
|
|
||||||
|
|
||||||
inherit texinfo native
|
|
||||||
|
|
||||||
DEPENDS += "m4-native gnu-config-native"
|
|
||||||
RDEPENDS:${PN} = "m4-native gnu-config-native"
|
|
||||||
|
|
||||||
PERL = "${USRBINPATH}/perl"
|
|
||||||
PERL:class-native = "/usr/bin/env perl"
|
|
||||||
|
|
||||||
CACHED_CONFIGUREVARS += "ac_cv_path_PERL='${PERL}' \
|
|
||||||
ac_cv_path_M4=m4 \
|
|
||||||
"
|
|
||||||
|
|
||||||
CONFIGUREOPTS = " \
|
|
||||||
--build=${BUILD_SYS} \
|
|
||||||
--host=${HOST_SYS} \
|
|
||||||
--target=${TARGET_SYS} \
|
|
||||||
--prefix=${prefix} \
|
|
||||||
--exec_prefix=${exec_prefix} \
|
|
||||||
--bindir=${bindir} \
|
|
||||||
--sbindir=${sbindir} \
|
|
||||||
--libexecdir=${libexecdir} \
|
|
||||||
--datadir=${datadir} \
|
|
||||||
--sysconfdir=${sysconfdir} \
|
|
||||||
--sharedstatedir=${sharedstatedir} \
|
|
||||||
--localstatedir=${localstatedir} \
|
|
||||||
--libdir=${libdir} \
|
|
||||||
--includedir=${includedir} \
|
|
||||||
--oldincludedir=${includedir} \
|
|
||||||
--infodir=${infodir} \
|
|
||||||
--mandir=${mandir} \
|
|
||||||
--disable-silent-rules \
|
|
||||||
"
|
|
||||||
|
|
||||||
do_configure() {
|
|
||||||
${CACHED_CONFIGUREVARS} ./configure ${CONFIGUREOPTS}
|
|
||||||
}
|
|
||||||
|
|
||||||
do_install() {
|
|
||||||
oe_runmake 'DESTDIR=${D}' install
|
|
||||||
|
|
||||||
# avoid conflicts with standard autotools
|
|
||||||
ver="213"
|
|
||||||
for file in `find ${D}${bindir} -type f`; do
|
|
||||||
mv $file $file$ver
|
|
||||||
done
|
|
||||||
mv ${D}${datadir}/autoconf ${D}${datadir}/autoconf213
|
|
||||||
}
|
|
||||||
-67
@@ -1,67 +0,0 @@
|
|||||||
From 3d3e23f7b14e87849405a4e109a69b76696615fc Mon Sep 17 00:00:00 2001
|
|
||||||
From: =?UTF-8?q?Andreas=20M=C3=BCller?= <schnitzeltony@gmail.com>
|
|
||||||
Date: Wed, 11 Dec 2019 23:18:19 +0100
|
|
||||||
Subject: [PATCH] Add config.guess config.sub / install to destdir
|
|
||||||
MIME-Version: 1.0
|
|
||||||
Content-Type: text/plain; charset=UTF-8
|
|
||||||
Content-Transfer-Encoding: 8bit
|
|
||||||
|
|
||||||
Upstream-Status: Inappropriate [Configuration]
|
|
||||||
|
|
||||||
Signed-off-by: Andreas Müller <schnitzeltony@gmail.com>
|
|
||||||
---
|
|
||||||
Makefile.in | 18 +++++++++---------
|
|
||||||
1 file changed, 9 insertions(+), 9 deletions(-)
|
|
||||||
|
|
||||||
diff --git a/Makefile.in b/Makefile.in
|
|
||||||
index a6c94d4..4b1b708 100644
|
|
||||||
--- a/Makefile.in
|
|
||||||
+++ b/Makefile.in
|
|
||||||
@@ -137,23 +137,23 @@ installcheck: all install
|
|
||||||
cd testsuite && ${MAKE} AUTOCONF=${bindir}/autoconf $@
|
|
||||||
|
|
||||||
installdirs:
|
|
||||||
- $(SHELL) ${srcdir}/mkinstalldirs $(bindir) $(infodir) $(acdatadir)
|
|
||||||
+ $(SHELL) ${srcdir}/mkinstalldirs ${DESTDIR}$(bindir) ${DESTDIR}$(infodir) ${DESTDIR}$(acdatadir)
|
|
||||||
|
|
||||||
install: all $(M4FILES) acconfig.h installdirs install-info
|
|
||||||
for p in $(ASCRIPTS); do \
|
|
||||||
- $(INSTALL_PROGRAM) $$p $(bindir)/`echo $$p|sed '$(transform)'`; \
|
|
||||||
+ $(INSTALL_PROGRAM) $$p ${DESTDIR}$(bindir)/`echo $$p|sed '$(transform)'`; \
|
|
||||||
done
|
|
||||||
for i in $(M4FROZEN); do \
|
|
||||||
- $(INSTALL_DATA) $$i $(acdatadir)/$$i; \
|
|
||||||
+ $(INSTALL_DATA) $$i ${DESTDIR}$(acdatadir)/$$i; \
|
|
||||||
done
|
|
||||||
for i in $(M4FILES) acconfig.h; do \
|
|
||||||
- $(INSTALL_DATA) $(srcdir)/$$i $(acdatadir)/$$i; \
|
|
||||||
+ $(INSTALL_DATA) $(srcdir)/$$i ${DESTDIR}$(acdatadir)/$$i; \
|
|
||||||
done
|
|
||||||
-if test -f autoscan; then \
|
|
||||||
- $(INSTALL_PROGRAM) autoscan $(bindir)/`echo autoscan|sed '$(transform)'`; \
|
|
||||||
+ $(INSTALL_PROGRAM) autoscan ${DESTDIR}$(bindir)/`echo autoscan|sed '$(transform)'`; \
|
|
||||||
for i in acfunctions acheaders acidentifiers acprograms \
|
|
||||||
- acmakevars; do \
|
|
||||||
- $(INSTALL_DATA) $(srcdir)/$$i $(acdatadir)/$$i; \
|
|
||||||
+ acmakevars config.guess config.sub; do \
|
|
||||||
+ $(INSTALL_DATA) $(srcdir)/$$i ${DESTDIR}$(acdatadir)/$$i; \
|
|
||||||
done; \
|
|
||||||
else :; fi
|
|
||||||
|
|
||||||
@@ -161,11 +161,11 @@ install: all $(M4FILES) acconfig.h installdirs install-info
|
|
||||||
install-info: info installdirs
|
|
||||||
if test -f autoconf.info; then \
|
|
||||||
for i in *.info*; do \
|
|
||||||
- $(INSTALL_DATA) $$i $(infodir)/$$i; \
|
|
||||||
+ $(INSTALL_DATA) $$i ${DESTDIR}$(infodir)/$$i; \
|
|
||||||
done; \
|
|
||||||
else \
|
|
||||||
for i in $(srcdir)/*.info*; do \
|
|
||||||
- $(INSTALL_DATA) $$i $(infodir)/`echo $$i | sed 's|^$(srcdir)/||'`; \
|
|
||||||
+ $(INSTALL_DATA) $$i ${DESTDIR}$(infodir)/`echo $$i | sed 's|^$(srcdir)/||'`; \
|
|
||||||
done; \
|
|
||||||
fi
|
|
||||||
|
|
||||||
--
|
|
||||||
2.21.0
|
|
||||||
|
|
||||||
Reference in New Issue
Block a user