2008-06-19 17:29:25 +02:00
|
|
|
{ bdbSupport ? false # build support for Berkeley DB repositories
|
|
|
|
, httpServer ? false # build Apache DAV module
|
|
|
|
, httpSupport ? false # client must support http
|
|
|
|
, sslSupport ? false # client must support https
|
|
|
|
, compressionSupport ? false # client must support http compression
|
|
|
|
, pythonBindings ? false
|
|
|
|
, perlBindings ? false
|
|
|
|
, javahlBindings ? false
|
2009-03-24 11:31:39 +01:00
|
|
|
, stdenv, fetchurl, apr, aprutil, neon, zlib, sqlite
|
2009-10-02 13:49:21 +02:00
|
|
|
, httpd ? null, expat, swig ? null, jdk ? null, python ? null, perl ? null
|
2008-06-19 17:29:25 +02:00
|
|
|
}:
|
|
|
|
|
|
|
|
assert bdbSupport -> aprutil.bdbSupport;
|
2009-05-12 14:50:07 +02:00
|
|
|
assert httpServer -> httpd != null;
|
2009-10-02 13:49:21 +02:00
|
|
|
assert pythonBindings -> swig != null && python != null;
|
|
|
|
assert javahlBindings -> jdk != null && perl != null;
|
2008-06-19 17:29:25 +02:00
|
|
|
assert sslSupport -> neon.sslSupport;
|
|
|
|
assert compressionSupport -> neon.compressionSupport;
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
|
2010-06-22 15:44:53 +02:00
|
|
|
version = "1.6.12";
|
2008-06-19 17:29:25 +02:00
|
|
|
|
|
|
|
name = "subversion-${version}";
|
|
|
|
|
|
|
|
src = fetchurl {
|
2009-03-24 11:31:39 +01:00
|
|
|
url = "http://subversion.tigris.org/downloads/${name}.tar.bz2";
|
2010-06-22 15:44:53 +02:00
|
|
|
sha1 = "b4ae7c75abbbdade8b2c9122ca7e2e26c6468a82";
|
2008-06-19 17:29:25 +02:00
|
|
|
};
|
|
|
|
|
2010-04-21 11:47:26 +02:00
|
|
|
buildInputs = [ zlib apr aprutil sqlite ]
|
2008-10-07 01:01:54 +02:00
|
|
|
++ stdenv.lib.optional httpSupport neon
|
2009-10-02 13:49:21 +02:00
|
|
|
++ stdenv.lib.optional pythonBindings python
|
2010-04-21 11:47:26 +02:00
|
|
|
++ stdenv.lib.optional perlBindings perl;
|
2008-08-03 14:23:27 +02:00
|
|
|
|
2008-06-19 17:29:25 +02:00
|
|
|
configureFlags = ''
|
|
|
|
--disable-keychain
|
|
|
|
${if bdbSupport then "--with-berkeley-db" else "--without-berkeley-db"}
|
2008-10-06 15:38:45 +02:00
|
|
|
${if httpServer then "--with-apxs=${httpd}/bin/apxs" else "--without-apxs"}
|
2008-06-19 17:29:25 +02:00
|
|
|
${if pythonBindings || perlBindings then "--with-swig=${swig}" else "--without-swig"}
|
|
|
|
${if javahlBindings then "--enable-javahl --with-jdk=${jdk}" else ""}
|
2009-07-06 12:39:59 +02:00
|
|
|
--with-zlib=${zlib}
|
|
|
|
--with-sqlite=${sqlite}
|
2008-06-19 17:29:25 +02:00
|
|
|
'';
|
|
|
|
|
2008-10-07 01:01:54 +02:00
|
|
|
preBuild = ''
|
|
|
|
makeFlagsArray=(APACHE_LIBEXECDIR=$out/modules)
|
|
|
|
'';
|
|
|
|
|
2008-07-07 13:46:50 +02:00
|
|
|
postInstall = ''
|
|
|
|
ensureDir $out/share/emacs/site-lisp
|
|
|
|
cp contrib/client-side/emacs/*.el $out/share/emacs/site-lisp/
|
2008-10-07 01:01:54 +02:00
|
|
|
|
2009-10-02 13:49:21 +02:00
|
|
|
if test -n "$pythonBindings"; then
|
2008-10-07 01:01:54 +02:00
|
|
|
make swig-py swig_pydir=$(toPythonPath $out)/libsvn swig_pydir_extra=$(toPythonPath $out)/svn
|
|
|
|
make install-swig-py swig_pydir=$(toPythonPath $out)/libsvn swig_pydir_extra=$(toPythonPath $out)/svn
|
|
|
|
fi
|
2008-10-16 14:42:20 +02:00
|
|
|
|
2009-10-02 13:49:21 +02:00
|
|
|
if test -n "$perlBindings"; then
|
2008-10-07 01:01:54 +02:00
|
|
|
make swig-pl-lib
|
|
|
|
make install-swig-pl-lib
|
|
|
|
cd subversion/bindings/swig/perl/native
|
|
|
|
perl Makefile.PL PREFIX=$out
|
|
|
|
make install
|
|
|
|
cd -
|
|
|
|
fi
|
2008-07-28 10:14:55 +02:00
|
|
|
''; # */
|
2008-07-07 13:46:50 +02:00
|
|
|
|
2008-10-07 01:01:54 +02:00
|
|
|
inherit perlBindings pythonBindings;
|
2008-06-19 17:29:25 +02:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "A version control system intended to be a compelling replacement for CVS in the open source community";
|
2010-04-21 11:47:26 +02:00
|
|
|
homepage = http://subversion.apache.org/;
|
2009-10-02 14:36:04 +02:00
|
|
|
maintainers = [ stdenv.lib.maintainers.eelco ];
|
2009-10-03 14:48:29 +02:00
|
|
|
platforms = stdenv.lib.platforms.all;
|
2008-06-19 17:29:25 +02:00
|
|
|
};
|
|
|
|
}
|