1234567891011121314151617181920212223242526272829303132333435 |
- DESCRIPTION = "The Subversion (svn) client"
- SECTION = "console/network"
- DEPENDS = "apr-util neon"
- RDEPENDS_${PN} = "neon"
- LICENSE = "Apache-2"
- HOMEPAGE = "http://subversion.tigris.org"
- PR = "r0"
- SRC_URI = "http://subversion.tigris.org/downloads/${BPN}-${PV}.tar.bz2 \
- file://disable-revision-install.patch;patch=1 \
- file://neon-detection.patch;patch=1 \
- file://libtool2.patch;patch=1"
- SRC_URI[md5sum] = "113fca1d9e4aa389d7dc2b210010fa69"
- SRC_URI[sha256sum] = "b2919d603a5f3c19f42e3265c4b930e2376c43b3969b90ef9c42b2f72d5aaa45"
- LIC_FILES_CHKSUM = "file://COPYING;md5=2a69fef414e2cb907b4544298569300b"
- EXTRA_OECONF = "--with-neon=${STAGING_EXECPREFIXDIR} \
- --without-berkeley-db --without-apxs --without-apache \
- --without-swig --with-apr=${STAGING_BINDIR_CROSS} \
- --with-apr-util=${STAGING_BINDIR_CROSS}"
- inherit autotools
- export LDFLAGS += " -L${STAGING_LIBDIR} "
- acpaths = "-I build/ -I build/ac-macros/"
- do_configure_prepend () {
- rm -f ${S}/libtool
- rm -f ${S}/build/libtool.m4
- sed -i -e 's:with_sasl="/usr/local":with_sasl="${STAGING_DIR}":' ${S}/build/ac-macros/sasl.m4
- }
|