mirror of
https://github.com/yann64/haikuports.git
synced 2026-04-15 16:20:08 +02:00
35 lines
1.1 KiB
Plaintext
35 lines
1.1 KiB
Plaintext
DESCRIPTION="Subversion is an open source version control system"
|
|
HOMEPAGE="http://subversion.tigris.org"
|
|
SRC_URI="http://subversion.tigris.org/downloads/subversion-1.6.9.tar.gz"
|
|
CHECKSUM_MD5="facaa0ee78c8f24b9af12c74662bbd24"
|
|
REVISION="1"
|
|
STATUS_HAIKU="stable"
|
|
DEPEND=""
|
|
BUILD {
|
|
cd subversion-1.6.9
|
|
libtoolize --force --copy --install
|
|
aclocal -I build -I build/ac-macros
|
|
autogen.sh
|
|
./configure --prefix=`finddir B_COMMON_DIRECTORY` --with-apr=`finddir B_COMMON_BIN_DIRECTORY`/apr-1-config --with-apr-util=`finddir B_COMMON_BIN_DIRECTORY`/apu-1-config --with-neon=/boot/common --with-editor=nano --with-zlib=/boot/common
|
|
make
|
|
}
|
|
|
|
INSTALL {
|
|
cd subversion-1.6.9
|
|
make install
|
|
if type -p swig > /dev/null;then
|
|
if type -p python > /dev/null;then
|
|
PYTHON_PKGDIR=$(python -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")
|
|
make install-swig-py swig_pydir=${PYTHON_PKGDIR}/libsvn swig_pydir_extra=${PYTHON_PKGDIR}/svn
|
|
fi
|
|
#if type -p perl > /dev/null;then
|
|
# make install-swig-pl
|
|
#fi
|
|
#if type -p ruby > /dev/null;then
|
|
# make install-swig-rb
|
|
#fi
|
|
fi
|
|
}
|
|
LICENSE="Subversion"
|
|
COPYRIGHT="2000-2010 CollabNet"
|