opt/subversion
Fun 4c0305a2e9 remove redundant deps
CRUX System Team:reiserfsprogs: util-linux
UNMAINTAINED:librsvg: gdk-pixbuf gobject-introspection
Jose V Beneyto:gftp: openssl readline
Jose V Beneyto:imlib2: libpng
Jose V Beneyto:libcroco: libxml2
Jose V Beneyto:libgd: libpng
Jose V Beneyto:libwnck-gtk3: intltool
Jose V Beneyto:libwnck: intltool
Jose V Beneyto:pycairo: python
Jose V Beneyto:pygobject: python
Jose V Beneyto:qt4: libpng
Jose V Beneyto:startup-notification: xorg-libsm xorg-libx11
Jose V Beneyto:subversion: apr expat sqlite3
Jose V Beneyto:vorbis-tools: libogg
Jose V Beneyto:vte-gtk3: intltool p5-xml-parser xorg-libxdamage
Jose V Beneyto:vte: intltool p5-xml-parser
Jose V Beneyto:xchat: openssl perl
2017-11-14 18:11:56 +01:00
..
.footprint subversion: updated to 1.9.3 and fixed mandir location 2016-01-21 00:27:20 +00:00
.md5sum subversion: 1.9.5 -> 1.9.7 2017-08-11 11:14:01 +10:00
Pkgfile remove redundant deps 2017-11-14 18:11:56 +01:00
README

NOTES

This is a port for the subversion revision control; if you have apache
(version 2.0+) installed, you'll also get the apache modules to run a
subversion server via apache/WebDAV.
Else you'll still be able to create a server with the svnserve
application. If you want absolutely no server parts, add
"--without-berkeley-db" to the configure line

If you're going to install apache later on, you'll need to recompile
this package (solutions to this are already planned).

If you want Python Bindings, install SWIG and comment out the few lines
in the build() function

PRE-INSTALL (SERVER)
Make sure you install expat before you install apache; also, note that you'll
get a footprint missmatch


POST-INSTALL (SERVER)

add something like this to your apache configuration:

#LoadModule dav_module         lib/apache/mod_dav.so
#LoadModule dav_svn_module     lib/apache/mod_dav_svn.so
#<Location /svn/repos>
#   DAV svn
#   SVNPath /home/svnroot
#
#   # Limit write permission to list of valid users.
#   <LimitExcept GET PROPFIND OPTIONS REPORT>
#      # Require SSL connection for password protection.
#      # SSLRequireSSL
#
#      AuthType Basic
#      AuthName "Authorization Realm"
#      AuthUserFile /absolute/path/to/passwdfile
#      Require valid-user
#   </LimitExcept>
#</Location>