2012-06-06 14:02:46 +02:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
# Make sure we're in our directory (i.e., where this shell script is)
|
|
|
|
echo $0
|
|
|
|
cd `dirname $0`
|
|
|
|
|
2014-01-23 11:38:26 +01:00
|
|
|
FETCH=ftp
|
2012-06-25 12:46:31 +02:00
|
|
|
which curl >/dev/null
|
|
|
|
if [ $? -eq 0 ]; then
|
|
|
|
FETCH="curl -O -f"
|
|
|
|
fi
|
|
|
|
|
2014-01-23 11:38:26 +01:00
|
|
|
# Configure fetch method - GMAKE
|
2014-08-07 14:27:32 +02:00
|
|
|
URL="http://www.minix3.org/pkgsrc/distfiles/minix/3.3.0/make-3.80.tar.bz2"
|
2014-01-23 11:38:26 +01:00
|
|
|
BACKUP_URL="ftp://ftp.gnu.org/gnu/make/make-3.80.tar.bz2"
|
|
|
|
|
2012-06-06 14:02:46 +02:00
|
|
|
# Fetch sources if not available
|
|
|
|
if [ ! -d gmake ];
|
|
|
|
then
|
2012-06-25 12:46:31 +02:00
|
|
|
if [ ! -f make-3.80.tar.bz2 ]; then
|
|
|
|
$FETCH $URL
|
|
|
|
if [ $? -ne 0 ]; then
|
|
|
|
$FETCH $BACKUP_URL
|
|
|
|
fi
|
2012-06-06 14:02:46 +02:00
|
|
|
fi
|
|
|
|
|
2012-10-26 15:22:39 +02:00
|
|
|
tar -xjf make-3.80.tar.bz2 && \
|
2013-04-10 18:13:48 +02:00
|
|
|
mv make-3.80 gmake && \
|
|
|
|
echo "make*" >> .gitignore
|
|
|
|
echo "gmake*" >> .gitignore
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Configure fetch method - TEXINFO
|
2014-08-07 14:27:32 +02:00
|
|
|
URL="http://www.minix3.org/pkgsrc/distfiles/minix/3.3.0/texinfo-4.8.tar.bz2"
|
2013-04-10 18:13:48 +02:00
|
|
|
BACKUP_URL="ftp://ftp.gnu.org/gnu/texinfo/texinfo-4.8.tar.bz2"
|
|
|
|
|
|
|
|
# Fetch sources if not available
|
|
|
|
if [ ! -d texinfo ];
|
|
|
|
then
|
|
|
|
if [ ! -f texinfo-4.8.tar.bz2 ]; then
|
|
|
|
$FETCH $URL
|
|
|
|
if [ $? -ne 0 ]; then
|
|
|
|
$FETCH $BACKUP_URL
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
|
|
|
tar -xjf texinfo-4.8.tar.bz2 && \
|
|
|
|
cd texinfo-4.8 && \
|
|
|
|
cat ../../usr.bin/texinfo/patches/* | patch -p1 && \
|
|
|
|
cd - && \
|
|
|
|
mv texinfo-4.8 texinfo
|
2012-06-06 14:02:46 +02:00
|
|
|
fi
|
|
|
|
|