diff --git a/sysa/autoconf-2.52/stage2.sh b/sysa/autoconf-2.52/stage2.sh index 7c78717c..510970ff 100755 --- 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 index f8ec1ca2..d80c1eba 100755 --- 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 index e1f09718..c2601aca 100755 --- 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 index 08ff300b..b661cddd 100755 --- 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 index 450e8cf1..8a366daf 100755 --- 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 index dde38fae..b4875fee 100755 --- 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 index d9272570..3bb035e8 100755 --- 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 index b7a5729e..db935824 100755 --- 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 index 02caaeec..314b104c 100755 --- 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 index 92fe1965..1b088e54 100755 --- 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 index e0fcf449..8c06b79a 100755 --- 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 index 9fcdf9be..286f71f8 100755 --- 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 index 4cdd1dc3..c2f61297 100755 --- 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 +}