subversion_1.6.15.bb 1.2 KB

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