ec3b5134c1
* A solution to the library abstraction problem (i.e., if package X needs library Y, and library Y needs library Z, then we do not (generally) want to declare Z as a input to X since that would break abstraction). This was not possible under the old Nix. svn path=/nixpkgs/trunk/; revision=150
37 lines
864 B
Bash
Executable file
37 lines
864 B
Bash
Executable file
#! /bin/sh
|
|
|
|
export PATH=$libxml/bin:/bin:/usr/bin:/usr/local/bin
|
|
export LD_LIBRARY_PATH=$ssl/lib:
|
|
|
|
export LDFLAGS=-s
|
|
|
|
if test $localServer; then
|
|
extraflags="--with-berkeley-db=$db4 $extraflags"
|
|
fi
|
|
|
|
if test $httpsClient; then
|
|
extraflags="--with-ssl --with-libs=$ssl $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 $pythonBindings; then
|
|
extraflags="--with-swig=$swig $extraflags"
|
|
fi
|
|
|
|
echo "extra flags: $extraflags"
|
|
|
|
tar xvfz $src || exit 1
|
|
cd subversion-* || exit 1
|
|
./configure --prefix=$out $extraflags || exit 1
|
|
make $extramakeflags || exit 1
|
|
make install $extramakeflags || exit 1
|
|
|
|
if test $pythonBindings; then
|
|
make swig-py || exit 1
|
|
make install-swig-py || exit 1
|
|
fi
|