opt/subversion/Pkgfile
Jose V Beneyto 8b07d416d9 [notify] subversion: updated to 1.7.10
This release addresses three security issues:
    CVE-2013-1968: fsfs repository corruption caused by newline characters in filenames
    CVE-2013-2088: contrib hook-scripts can allow arbitrary code execution
    CVE-2013-2112: svnserve remotely triggerable DoS.

See:
    http://mail-archives.apache.org/mod_mbox/subversion-dev/201305.mbox/<CADkdwvRK51pQsybfvsAzjxQJrmVpL0fEa1K4WGkUP9Tzz6KFDw@mail.gmail.com>
    http://svn.apache.org/repos/asf/subversion/tags/1.7.10/CHANGES
2013-06-05 11:56:25 +02:00

28 lines
773 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 neon expat sqlite3
name=subversion
version=1.7.10
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 --with-neon=/usr \
--disable-mod-activation --without-swig --disable-nls \
--disable-neon-version-check \
--without-apxs
make
make -j1 DESTDIR=$PKG external-install local-install
# info pages seem to get generated when makeinfo is available
rm -rf $PKG/usr/info
}