7145ec6f0c
This release addresses three security issues: CVE-2013-4246: fsfs: corruption from editing packed revision properties CVE-2013-4262: admin-side tools: symlink attack against pid file CVE-2013-4246: svnserve: symlink attack against pid file 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.3/CHANGES
30 lines
784 B
Plaintext
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.3
|
|
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
|
|
}
|