opt/subversion/Pkgfile
Jose V Beneyto db934dff5a [notify] subversion: updated to 1.8.5
This release addresses two security issues:
    CVE-2013-4505: mod_dontdothat does not restrict requests from serf clients.
    CVE-2013-4558: mod_dav_svn assertion triggered by autoversioning commits.

More information on these vulnerabilities, including the relevant
advisories and potential attack vectors and workarounds, can be found
on the Subversion security website:
    http://subversion.apache.org/security/

For a complete list of changes, please see:
    http://svn.apache.org/repos/asf/subversion/tags/1.8.5/CHANGES
2014-01-19 22:04:31 +01:00

30 lines
784 B
Plaintext

# Description: A version control system (CVS replacement)
# URL: http://subversion.apache.org
# Maintainer: Jose V Beneyto, sepen at crux dot nu
# Packager: Simone Rota, sip at crux dot nu
# Depends on: apr serf expat sqlite3
name=subversion
version=1.8.5
release=1
source=(http://www.apache.org/dist/$name/$name-$version.tar.bz2)
build() {
cd $name-$version
./configure --prefix=/usr \
--mandir=/usr/man \
--with-apr=/usr \
--with-apr-util=/usr \
--without-swig \
--without-apxs \
--disable-mod-activation \
--disable-nls
make
make -j1 DESTDIR=$PKG install
# info pages seem to get generated when makeinfo is available
rm -rf $PKG/usr/info
}