about summary refs log tree commit diff
path: root/pkgs-ng/applications/version-management/subversion/builder.sh
blob: 72848c7953223aec1cfa25ff1bf4c6c9f39685e5 (plain) (blame)
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
#! /bin/sh

buildinputs="$openssl $db4 $httpd $swig $expat"
. $stdenv/setup || exit 1

if test $localServer; then
    extraflags="--with-berkeley-db=$db4 $extraflags"
fi

if test $sslSupport; then
    extraflags="--with-ssl --with-libs=$openssl $extraflags"
fi

if test $httpServer; then
    extraflags="--with-apxs=$httpd/bin/apxs --with-apr=$httpd --with-apr-util=$httpd $extraflags"
    extramakeflags="APACHE_LIBEXECDIR=$out/modules $extramakeflags"
fi

if test $swigBindings; then
    extraflags="--with-swig=$swig $extraflags"
fi

echo "extra flags: $extraflags"

tar xvfz $src || exit 1
cd subversion-* || exit 1
./configure --prefix=$out $extraflags \
 --without-gdbm --disable-static || exit 1
make $extramakeflags || exit 1
make install $extramakeflags || exit 1

if test $swigBindings; then
    make swig-py || exit 1
    make install-swig-py || exit 1
fi