commit: 07528e62404dc52be390aaf648ff1ad8b6adcf12
parent 31410ab2349b734fec3920ade5deea592e7dabe9
Author: fosslinux <fosslinux@aussies.space>
Date: Sun, 21 Mar 2021 10:18:17 +1100
Merge pull request #73 from stikonas/makeinfo
autotools: add MAKEFINFO=true fix to all autotools.
Diffstat:
13 files changed, 95 insertions(+), 6 deletions(-)
diff --git a/sysa/autoconf-2.52/stage2.sh b/sysa/autoconf-2.52/stage2.sh
@@ -18,10 +18,14 @@ src_configure() {
./configure --prefix=${PREFIX} --program-suffix=-2.52
}
+src_compile() {
+ make MAKEINFO=true
+}
+
src_install() {
# Remove manually installed autoconf
rm ${PREFIX}/bin/autoconf-2.52
rm -rf ${PREFIX}/share/autoconf-2.52
- default_src_install
+ make install MAKEINFO=true
}
diff --git a/sysa/autoconf-2.53/stage1.sh b/sysa/autoconf-2.53/stage1.sh
@@ -24,3 +24,11 @@ src_prepare() {
src_configure() {
./configure --prefix="${PREFIX}" --program-suffix=-2.53
}
+
+src_compile() {
+ make MAKEINFO=true
+}
+
+src_install() {
+ make install MAKEINFO=true
+}
diff --git a/sysa/autoconf-2.53/stage2.sh b/sysa/autoconf-2.53/stage2.sh
@@ -18,3 +18,11 @@ src_prepare() {
src_configure() {
./configure --prefix="${PREFIX}" --program-suffix=-2.53
}
+
+src_compile() {
+ make MAKEINFO=true
+}
+
+src_install() {
+ make install MAKEINFO=true
+}
diff --git a/sysa/autoconf-2.54/stage1.sh b/sysa/autoconf-2.54/stage1.sh
@@ -23,8 +23,12 @@ src_configure() {
./configure --prefix="${PREFIX}" --program-suffix=-2.54
}
+src_compile() {
+ make MAKEINFO=true
+}
+
src_install() {
- default_src_install
+ make install MAKEINFO=true
ln -sf "${PREFIX}"/bin/autoconf-2.54 "${PREFIX}"/bin/autoconf
}
diff --git a/sysa/autoconf-2.54/stage2.sh b/sysa/autoconf-2.54/stage2.sh
@@ -16,3 +16,11 @@ src_prepare() {
src_configure() {
./configure --prefix="${PREFIX}" --program-suffix=-2.54
}
+
+src_compile() {
+ make MAKEINFO=true
+}
+
+src_install() {
+ make install MAKEINFO=true
+}
diff --git a/sysa/autoconf-2.55/autoconf-2.55.sh b/sysa/autoconf-2.55/autoconf-2.55.sh
@@ -17,8 +17,15 @@ src_configure() {
./configure --prefix="${PREFIX}" --program-suffix=-2.55
}
+src_compile() {
+ make MAKEINFO=true
+}
+
src_install() {
- default_src_install
+ make install MAKEINFO=true
ln -sf "${PREFIX}/bin/autoconf-2.55" "${PREFIX}/bin/autoconf"
+ ln -sf "${PREFIX}/bin/autoheader-2.55" "${PREFIX}/bin/autoheader"
+ ln -sf "${PREFIX}/bin/autom4te-2.55" "${PREFIX}/bin/autom4te"
+ ln -sf "${PREFIX}/bin/autoreconf-2.55" "${PREFIX}/bin/autoreconf"
}
diff --git a/sysa/autoconf-2.57/autoconf-2.57.sh b/sysa/autoconf-2.57/autoconf-2.57.sh
@@ -15,8 +15,15 @@ src_configure() {
./configure --prefix="${PREFIX}" --program-suffix=-2.57
}
+src_compile() {
+ make MAKEINFO=true
+}
+
src_install() {
- default_src_install
+ make install MAKEINFO=true
ln -sf "${PREFIX}/bin/autoconf-2.57" "${PREFIX}/bin/autoconf"
+ ln -sf "${PREFIX}/bin/autoheader-2.57" "${PREFIX}/bin/autoheader"
+ ln -sf "${PREFIX}/bin/autom4te-2.57" "${PREFIX}/bin/autom4te"
+ ln -sf "${PREFIX}/bin/autoreconf-2.57" "${PREFIX}/bin/autoreconf"
}
diff --git a/sysa/autoconf-2.59/autoconf-2.59.sh b/sysa/autoconf-2.59/autoconf-2.59.sh
@@ -15,9 +15,15 @@ src_configure() {
./configure --prefix="${PREFIX}" --program-suffix=-2.59
}
+src_compile() {
+ make MAKEINFO=true
+}
+
src_install() {
- default_src_install
+ make install MAKEINFO=true
ln -sf "${PREFIX}/bin/autoconf-2.59" "${PREFIX}/bin/autoconf"
+ ln -sf "${PREFIX}/bin/autoheader-2.59" "${PREFIX}/bin/autoheader"
ln -sf "${PREFIX}/bin/autom4te-2.59" "${PREFIX}/bin/autom4te"
+ ln -sf "${PREFIX}/bin/autoreconf-2.59" "${PREFIX}/bin/autoreconf"
}
diff --git a/sysa/automake-1.6.3/stage3.sh b/sysa/automake-1.6.3/stage3.sh
@@ -13,6 +13,10 @@ src_configure() {
./configure --prefix=/after
}
+src_compile() {
+ make MAKEINFO=true
+}
+
src_install() {
# cleanup old manual install
rm "${PREFIX}"/bin/automake-1.6
@@ -20,5 +24,5 @@ src_install() {
rm -rf "${PREFIX}"/share/automake-1.6
rm -rf "${PREFIX}"/share/aclocal-1.6
- default_src_install
+ make install MAKEINFO=true
}
diff --git a/sysa/automake-1.7.8/automake-1.7.8.sh b/sysa/automake-1.7.8/automake-1.7.8.sh
@@ -11,3 +11,11 @@ src_prepare() {
src_configure() {
./configure --prefix=/after
}
+
+src_compile() {
+ make MAKEINFO=true
+}
+
+src_install() {
+ make install MAKEINFO=true
+}
diff --git a/sysa/automake-1.7/stage1.sh b/sysa/automake-1.7/stage1.sh
@@ -13,3 +13,12 @@ src_prepare() {
src_configure() {
./configure --prefix=/after
}
+
+src_compile() {
+ make MAKEINFO=true
+}
+
+src_install() {
+ make install MAKEINFO=true
+}
+
diff --git a/sysa/automake-1.7/stage2.sh b/sysa/automake-1.7/stage2.sh
@@ -11,3 +11,11 @@ src_prepare() {
src_configure() {
./configure --prefix=/after
}
+
+src_compile() {
+ make MAKEINFO=true
+}
+
+src_install() {
+ make install MAKEINFO=true
+}
diff --git a/sysa/automake-1.8.5/automake-1.8.5.sh b/sysa/automake-1.8.5/automake-1.8.5.sh
@@ -9,3 +9,11 @@ src_prepare() {
src_configure() {
./configure --prefix=/after
}
+
+src_compile() {
+ make MAKEINFO=true
+}
+
+src_install() {
+ make install MAKEINFO=true
+}