subversion_1.6.15.bb 1.1 KB

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