13 lines
262 B
Bash
Executable file
13 lines
262 B
Bash
Executable file
#!/bin/bash
|
|
|
|
TMPDIR=/tmp/$$
|
|
mkdir -p $TMPDIR
|
|
chmod 777 $TMPDIR
|
|
|
|
export PORTAGE_TMPDIR=$TMPDIR
|
|
export DISTDIR=/home/pkgs/distfiles
|
|
|
|
for d in `find . -name '*.ebuild' | sed -e 's#/[^/]*$##' | sort | uniq`; do
|
|
(cd $d; ebuild `ls *.ebuild | head -1` manifest)
|
|
done
|