diff options
Diffstat (limited to 'meta-oe/recipes-devtools/autoconf-2.13')
2 files changed, 0 insertions, 134 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 d0e0446eb8..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[md5sum] = "9de56d4a161a723228220b0f425dc711" | ||
20 | SRC_URI[sha256sum] = "f0611136bee505811e9ca11ca7ac188ef5323a8e2ef19cffd3edb3cf08fd791e" | ||
21 | |||
22 | inherit texinfo native | ||
23 | |||
24 | DEPENDS += "m4-native gnu-config-native" | ||
25 | RDEPENDS:${PN} = "m4-native gnu-config-native" | ||
26 | |||
27 | PERL = "${USRBINPATH}/perl" | ||
28 | |||
29 | CACHED_CONFIGUREVARS += "ac_cv_path_PERL='${PERL}'" | ||
30 | |||
31 | CONFIGUREOPTS = " \ | ||
32 | --build=${BUILD_SYS} \ | ||
33 | --host=${HOST_SYS} \ | ||
34 | --target=${TARGET_SYS} \ | ||
35 | --prefix=${prefix} \ | ||
36 | --exec_prefix=${exec_prefix} \ | ||
37 | --bindir=${bindir} \ | ||
38 | --sbindir=${sbindir} \ | ||
39 | --libexecdir=${libexecdir} \ | ||
40 | --datadir=${datadir} \ | ||
41 | --sysconfdir=${sysconfdir} \ | ||
42 | --sharedstatedir=${sharedstatedir} \ | ||
43 | --localstatedir=${localstatedir} \ | ||
44 | --libdir=${libdir} \ | ||
45 | --includedir=${includedir} \ | ||
46 | --oldincludedir=${includedir} \ | ||
47 | --infodir=${infodir} \ | ||
48 | --mandir=${mandir} \ | ||
49 | --disable-silent-rules \ | ||
50 | " | ||
51 | |||
52 | EXTRA_OECONF += "ac_cv_path_M4=m4 ac_cv_prog_TEST_EMACS=no" | ||
53 | |||
54 | do_configure() { | ||
55 | ./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 | } | ||
diff --git a/meta-oe/recipes-devtools/autoconf-2.13/autoconf-2.13/0001-Add-config.guess-config.sub-install-to-destdir.patch b/meta-oe/recipes-devtools/autoconf-2.13/autoconf-2.13/0001-Add-config.guess-config.sub-install-to-destdir.patch deleted file mode 100644 index f6e9ecb9a0..0000000000 --- a/meta-oe/recipes-devtools/autoconf-2.13/autoconf-2.13/0001-Add-config.guess-config.sub-install-to-destdir.patch +++ /dev/null | |||
@@ -1,67 +0,0 @@ | |||
1 | From 3d3e23f7b14e87849405a4e109a69b76696615fc Mon Sep 17 00:00:00 2001 | ||
2 | From: =?UTF-8?q?Andreas=20M=C3=BCller?= <schnitzeltony@gmail.com> | ||
3 | Date: Wed, 11 Dec 2019 23:18:19 +0100 | ||
4 | Subject: [PATCH] Add config.guess config.sub / install to destdir | ||
5 | MIME-Version: 1.0 | ||
6 | Content-Type: text/plain; charset=UTF-8 | ||
7 | Content-Transfer-Encoding: 8bit | ||
8 | |||
9 | Upstream-Status: Inappropriate [Configuration] | ||
10 | |||
11 | Signed-off-by: Andreas Müller <schnitzeltony@gmail.com> | ||
12 | --- | ||
13 | Makefile.in | 18 +++++++++--------- | ||
14 | 1 file changed, 9 insertions(+), 9 deletions(-) | ||
15 | |||
16 | diff --git a/Makefile.in b/Makefile.in | ||
17 | index a6c94d4..4b1b708 100644 | ||
18 | --- a/Makefile.in | ||
19 | +++ b/Makefile.in | ||
20 | @@ -137,23 +137,23 @@ installcheck: all install | ||
21 | cd testsuite && ${MAKE} AUTOCONF=${bindir}/autoconf $@ | ||
22 | |||
23 | installdirs: | ||
24 | - $(SHELL) ${srcdir}/mkinstalldirs $(bindir) $(infodir) $(acdatadir) | ||
25 | + $(SHELL) ${srcdir}/mkinstalldirs ${DESTDIR}$(bindir) ${DESTDIR}$(infodir) ${DESTDIR}$(acdatadir) | ||
26 | |||
27 | install: all $(M4FILES) acconfig.h installdirs install-info | ||
28 | for p in $(ASCRIPTS); do \ | ||
29 | - $(INSTALL_PROGRAM) $$p $(bindir)/`echo $$p|sed '$(transform)'`; \ | ||
30 | + $(INSTALL_PROGRAM) $$p ${DESTDIR}$(bindir)/`echo $$p|sed '$(transform)'`; \ | ||
31 | done | ||
32 | for i in $(M4FROZEN); do \ | ||
33 | - $(INSTALL_DATA) $$i $(acdatadir)/$$i; \ | ||
34 | + $(INSTALL_DATA) $$i ${DESTDIR}$(acdatadir)/$$i; \ | ||
35 | done | ||
36 | for i in $(M4FILES) acconfig.h; do \ | ||
37 | - $(INSTALL_DATA) $(srcdir)/$$i $(acdatadir)/$$i; \ | ||
38 | + $(INSTALL_DATA) $(srcdir)/$$i ${DESTDIR}$(acdatadir)/$$i; \ | ||
39 | done | ||
40 | -if test -f autoscan; then \ | ||
41 | - $(INSTALL_PROGRAM) autoscan $(bindir)/`echo autoscan|sed '$(transform)'`; \ | ||
42 | + $(INSTALL_PROGRAM) autoscan ${DESTDIR}$(bindir)/`echo autoscan|sed '$(transform)'`; \ | ||
43 | for i in acfunctions acheaders acidentifiers acprograms \ | ||
44 | - acmakevars; do \ | ||
45 | - $(INSTALL_DATA) $(srcdir)/$$i $(acdatadir)/$$i; \ | ||
46 | + acmakevars config.guess config.sub; do \ | ||
47 | + $(INSTALL_DATA) $(srcdir)/$$i ${DESTDIR}$(acdatadir)/$$i; \ | ||
48 | done; \ | ||
49 | else :; fi | ||
50 | |||
51 | @@ -161,11 +161,11 @@ install: all $(M4FILES) acconfig.h installdirs install-info | ||
52 | install-info: info installdirs | ||
53 | if test -f autoconf.info; then \ | ||
54 | for i in *.info*; do \ | ||
55 | - $(INSTALL_DATA) $$i $(infodir)/$$i; \ | ||
56 | + $(INSTALL_DATA) $$i ${DESTDIR}$(infodir)/$$i; \ | ||
57 | done; \ | ||
58 | else \ | ||
59 | for i in $(srcdir)/*.info*; do \ | ||
60 | - $(INSTALL_DATA) $$i $(infodir)/`echo $$i | sed 's|^$(srcdir)/||'`; \ | ||
61 | + $(INSTALL_DATA) $$i ${DESTDIR}$(infodir)/`echo $$i | sed 's|^$(srcdir)/||'`; \ | ||
62 | done; \ | ||
63 | fi | ||
64 | |||
65 | -- | ||
66 | 2.21.0 | ||
67 | |||