summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAchim Gottinger <achim@gentoo.org>2001-05-02 16:14:25 +0000
committerAchim Gottinger <achim@gentoo.org>2001-05-02 16:14:25 +0000
commitff956192c28a62dc8c7409fac4062ef9f2b7d1c5 (patch)
treef66359f172d405055d7a63764386e6aec88214d0 /bootstrap.sh
parentnew portage bug fix release (diff)
downloadgentoo-2-ff956192c28a62dc8c7409fac4062ef9f2b7d1c5.tar.gz
gentoo-2-ff956192c28a62dc8c7409fac4062ef9f2b7d1c5.tar.bz2
gentoo-2-ff956192c28a62dc8c7409fac4062ef9f2b7d1c5.zip
*** empty log message ***
Diffstat (limited to 'bootstrap.sh')
-rwxr-xr-xbootstrap.sh25
1 files changed, 25 insertions, 0 deletions
diff --git a/bootstrap.sh b/bootstrap.sh
new file mode 100755
index 000000000000..05cbfe52f38f
--- /dev/null
+++ b/bootstrap.sh
@@ -0,0 +1,25 @@
+#!/bin/sh
+
+LIST=$1
+
+myGETTEXT=`grep "sys-devel/gettext" $1`
+myBINUTILS=`grep "sys-devel/binutils" $1`
+myGCC=`grep "sys-devel/gcc" $1`
+myGLIBC=`grep "sys-libs/glibc" $1`
+
+echo "Using BINUTILS $myBINUTILS"
+echo "Using GCC $myGCC"
+echo "Using GETTEXT $myGETTEXT"
+echo "Using GLIBC $myGLIBC"
+
+export USE="build"
+export STEPS="clean unpack compile install qmerge"
+cd /usr/portage
+ebuild $myBINUTILS $STEPS || exit
+ebuild $myGCC $STEPS || exit
+ebuild $myGETTEXT $STEPS || exit
+unset USE
+ebuild $myGLIBC $STEPS || exit
+ebuild $myGETTEXT $STEPS || exit
+ebuild $myBINUTILS $STEPS || exit
+ebuild $myGCC $STEPS || exit