mirror of
https://github.com/fosslinux/live-bootstrap.git
synced 2026-03-07 20:05:24 +01:00
Switch to unversioned automake.
This commit is contained in:
parent
5209078684
commit
7e95cbbefb
38 changed files with 54 additions and 48 deletions
|
|
@ -7,7 +7,7 @@ urls="http://mirrors.kernel.org/gnu/autoconf/autoconf-2.69.tar.xz"
|
|||
|
||||
src_prepare() {
|
||||
rm doc/standards.info man/*.1
|
||||
autoreconf-2.64 -f
|
||||
AUTOMAKE=automake-1.11 ACLOCAL=aclocal-1.11 autoreconf-2.64 -f
|
||||
|
||||
# Install autoconf data files into versioned directory
|
||||
for file in */*/Makefile.in */Makefile.in Makefile.in; do
|
||||
|
|
|
|||
|
|
@ -5,7 +5,7 @@
|
|||
urls="http://mirrors.kernel.org/gnu/autoconf-archive/autoconf-archive-2021.02.19.tar.xz"
|
||||
|
||||
src_prepare() {
|
||||
autoreconf-2.69 -fi
|
||||
AUTOMAKE=automake-1.15 ACLOCAL=aclocal-1.15 autoreconf-2.69 -fi
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
# SPDX-FileCopyrightText: 2021 Andrius Štikonas <andrius@stikonas.eu>
|
||||
# SPDX-FileCopyrightText: 2022 Andrius Štikonas <andrius@stikonas.eu>
|
||||
# SPDX-FileCopyrightText: 2022 fosslinux <fosslinux@aussies.space>
|
||||
#
|
||||
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||
|
|
@ -23,5 +23,6 @@ src_compile() {
|
|||
|
||||
src_install() {
|
||||
make install MAKEINFO=true DESTDIR="${DESTDIR}"
|
||||
rm "${DESTDIR}/usr/bin/automake" "${DESTDIR}/usr/bin/aclocal"
|
||||
rm "${DESTDIR}${PREFIX}/share/doc/automake/amhello-1.0.tar.gz"
|
||||
}
|
||||
|
|
|
|||
|
|
@ -27,5 +27,6 @@ src_compile() {
|
|||
|
||||
src_install() {
|
||||
make install MAKEINFO=true DESTDIR="${DESTDIR}"
|
||||
rm "${DESTDIR}/usr/bin/automake" "${DESTDIR}/usr/bin/aclocal"
|
||||
rm "${DESTDIR}${PREFIX}/share/doc/automake/amhello-1.0.tar.gz"
|
||||
}
|
||||
|
|
|
|||
|
|
@ -5,7 +5,7 @@
|
|||
urls="https://mirrors.kernel.org/gnu/automake/automake-1.16.3.tar.xz"
|
||||
|
||||
src_prepare() {
|
||||
AUTOCONF=autoconf-2.69 AUTOM4TE=autom4te-2.69 ./bootstrap
|
||||
AUTOMAKE=automake-1.15 ACLOCAL=aclocal-1.15 AUTOCONF=autoconf-2.69 AUTOM4TE=autom4te-2.69 ./bootstrap
|
||||
|
||||
rm doc/automake-history.info doc/automake.info*
|
||||
|
||||
|
|
|
|||
|
|
@ -11,7 +11,7 @@ src_prepare() {
|
|||
|
||||
../../import-gnulib.sh
|
||||
|
||||
AUTOPOINT=true autoreconf-2.69 -fi
|
||||
AUTOPOINT=true AUTOMAKE=automake-1.15 ACLOCAL=aclocal-1.15 autoreconf-2.69 -fi
|
||||
|
||||
# Remove pregenerated files
|
||||
rm src/parse-gram.c src/parse-gram.h src/scan-skel.c src/scan-gram.c
|
||||
|
|
|
|||
|
|
@ -20,7 +20,7 @@ src_prepare() {
|
|||
|
||||
../../import-gnulib.sh
|
||||
|
||||
AUTOPOINT=true autoreconf-2.69 -fi
|
||||
AUTOPOINT=true AUTOMAKE=automake-1.15 ACLOCAL=aclocal-1.15 autoreconf-2.69 -fi
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
|
|
|
|||
|
|
@ -23,7 +23,7 @@ regenerate_files() {
|
|||
echo "$VERSION" > .tarball-version
|
||||
|
||||
# We don't have autopoint from gettext yet.
|
||||
AUTOPOINT=true autoreconf-2.69 -fi
|
||||
AUTOPOINT=true AUTOMAKE=automake-1.15 ACLOCAL=aclocal-1.15 autoreconf-2.69 -fi
|
||||
}
|
||||
|
||||
src_prepare() {
|
||||
|
|
|
|||
|
|
@ -17,7 +17,7 @@ src_prepare() {
|
|||
rm config.guess config.sub ltmain.sh
|
||||
libtoolize
|
||||
|
||||
autoreconf-2.69 -fi
|
||||
AUTOMAKE=automake-1.15 ACLOCAL=aclocal-1.15 autoreconf-2.69 -fi
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
|
|
|
|||
|
|
@ -7,7 +7,7 @@ urls="http://download.nust.na/pub2/openpkg1/sources/DST/flex/flex-2.5.33.tar.gz"
|
|||
src_prepare() {
|
||||
default
|
||||
|
||||
AUTOPOINT=true autoreconf-2.69 -fi
|
||||
AUTOPOINT=true AUTOMAKE=automake-1.15 ACLOCAL=aclocal-1.15 autoreconf-2.69 -fi
|
||||
|
||||
# Remove pregenerated files
|
||||
rm parse.c parse.h scan.c
|
||||
|
|
|
|||
|
|
@ -10,7 +10,7 @@ src_prepare() {
|
|||
# Remove bison and flex generated files
|
||||
rm demos/calc/calc.{c,h} demos/calc/calclex.c
|
||||
|
||||
autoreconf-2.69 -fi
|
||||
AUTOMAKE=automake-1.15 ACLOCAL=aclocal-1.15 autoreconf-2.69 -fi
|
||||
|
||||
# Pre-built texinfo files
|
||||
find . -name '*.info*' -delete
|
||||
|
|
|
|||
|
|
@ -7,7 +7,7 @@ urls="http://libarchive.org/downloads/libarchive-3.5.2.tar.xz"
|
|||
src_prepare() {
|
||||
default
|
||||
|
||||
autoreconf-2.69 -fi
|
||||
AUTOMAKE=automake-1.15 ACLOCAL=aclocal-1.15 autoreconf-2.69 -fi
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
|
|
|
|||
|
|
@ -11,7 +11,7 @@ src_prepare() {
|
|||
touch doc/make.info
|
||||
|
||||
# We don't have autopoint from gettext yet
|
||||
AUTOPOINT=true autoreconf-2.69 -fi
|
||||
AUTOPOINT=true AUTOMAKE=automake-1.15 ACLOCAL=aclocal-1.15 autoreconf-2.69 -fi
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@ src_prepare() {
|
|||
default
|
||||
|
||||
find . -name '*.info' -delete
|
||||
autoreconf-2.69 -fi
|
||||
AUTOMAKE=automake-1.15 ACLOCAL=aclocal-1.15 autoreconf-2.69 -fi
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@ src_prepare() {
|
|||
default
|
||||
|
||||
find . -name '*.info' -delete
|
||||
autoreconf-2.69 -fi
|
||||
AUTOMAKE=automake-1.15 ACLOCAL=aclocal-1.15 autoreconf-2.69 -fi
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
|
|
|
|||
|
|
@ -5,7 +5,7 @@
|
|||
urls="http://gentoo.osuosl.org/distfiles/pkg-config-0.29.2.tar.gz"
|
||||
|
||||
src_prepare() {
|
||||
autoreconf-2.69 -fi
|
||||
AUTOMAKE=automake-1.15 ACLOCAL=aclocal-1.15 autoreconf-2.69 -fi
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
|
|
|
|||
|
|
@ -12,7 +12,7 @@ src_prepare() {
|
|||
. ../../import-gnulib.sh
|
||||
|
||||
# We don't have autopoint from gettext yet
|
||||
AUTOPOINT=true autoreconf-2.69 -fi
|
||||
AUTOPOINT=true AUTOMAKE=automake-1.15 ACLOCAL=aclocal-1.15 autoreconf-2.69 -fi
|
||||
|
||||
# Remove bison pregenerated file
|
||||
rm gnu/parse-datetime.c
|
||||
|
|
|
|||
|
|
@ -7,7 +7,7 @@ urls="http://ixpeering.dl.sourceforge.net/project/lzmautils/xz-5.0.5.tar.bz2"
|
|||
src_prepare() {
|
||||
default
|
||||
|
||||
AUTOCONF=autoconf-2.64 AUTOM4TE=autom4te-2.64 autoreconf-2.64 -f
|
||||
AUTOMAKE=automake-1.10 ACLOCAL=aclocal-1.10 AUTOCONF=autoconf-2.64 AUTOM4TE=autom4te-2.64 autoreconf-2.64 -f
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue