blob: 0635357158e2a8e45e7f7fed698dab8101a9df95 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
|
#!/bin/sh
# usage: $0 arch branch buildid
# Don't want to pick up host customizations
export INDEX_PRISTINE=1
# Don't give luser advice if it fails
export INDEX_QUIET=1
# Concurrency of index build
export INDEX_JOBS=6
pb=/var/portbuild
usage () {
echo "usage: makeindex arch branch buildid"
exit 1
}
if [ $# -ne 3 ]; then
usage
fi
arch=$1
branch=$2
buildid=$3
shift 3
builddir=${pb}/${arch}/${branch}/builds/${buildid}
. ${pb}/conf/server.conf
. ${pb}/${arch}/portbuild.conf
. ${pb}/scripts/buildenv
# Set up the build env variables
buildenv ${pb} ${arch} ${branch} ${builddir}
unset DISPLAY
# Don't pick up installed packages from the host
export LOCALBASE=/nonexistentlocal
cd ${PORTSDIR}
make index
if [ ! -e ${INDEXFILE} ]; then
echo "makeindex: failed to make ${INDEXFILE}"
exit 1
fi
# remove extra spaces in dependency list -- this causes problems
# Also transform the dummy paths to their canonical locations
sed -i '' -e 's/ */ /g' -e 's/| */|/g' -e 's/ *|/|/g' -e "s,${LOCALBASE},/usr/local," ${INDEXFILE}
|