Skip to content

Commit

Permalink
re-integrate gentoo support
Browse files Browse the repository at this point in the history
  • Loading branch information
abma committed Aug 4, 2013
1 parent fa0c289 commit 145cfd0
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion buildbot/mingwlibs_boost.sh
Expand Up @@ -63,7 +63,18 @@ mkdir -p ${MINGWLIBS_DIR}include/boost/
echo -e "\n---------------------------------------------------"
echo "-- fetching boost's tarball"

wget -P /tmp -N --no-verbose ${BOOST_DL}
set +e
EMERGE=$(which emerge)
set -e

if [ -n "$EMERGE" ] && [ -x "$EMERGE" ]; then
emerge boost --fetchonly &>/dev/null
source /etc/portage/make.conf
BOOST_FILE=$(find ${DISTDIR} -iname "boost_*.tar.*" -print 2)
else
wget -P /tmp -N --no-verbose ${BOOST_DL}
fi


echo -e "\n---------------------------------------------------"
echo "-- extracting boost's tarball"
Expand Down

0 comments on commit 145cfd0

Please sign in to comment.