diff options
Diffstat (limited to 'meta/recipes-devtools/subversion/subversion_1.6.15.bb')
-rw-r--r-- | meta/recipes-devtools/subversion/subversion_1.6.15.bb | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/meta/recipes-devtools/subversion/subversion_1.6.15.bb b/meta/recipes-devtools/subversion/subversion_1.6.15.bb new file mode 100644 index 0000000000..de40863cf5 --- /dev/null +++ b/meta/recipes-devtools/subversion/subversion_1.6.15.bb | |||
@@ -0,0 +1,35 @@ | |||
1 | DESCRIPTION = "The Subversion (svn) client" | ||
2 | SECTION = "console/network" | ||
3 | DEPENDS = "apr-util neon" | ||
4 | RDEPENDS_${PN} = "neon" | ||
5 | LICENSE = "Apache BSD" | ||
6 | HOMEPAGE = "http://subversion.tigris.org" | ||
7 | |||
8 | PR = "r0" | ||
9 | |||
10 | SRC_URI = "http://subversion.tigris.org/downloads/${P}.tar.bz2 \ | ||
11 | file://disable-revision-install.patch;patch=1 \ | ||
12 | file://neon-detection.patch;patch=1 \ | ||
13 | file://libtool2.patch;patch=1" | ||
14 | |||
15 | SRC_URI[md5sum] = "113fca1d9e4aa389d7dc2b210010fa69" | ||
16 | SRC_URI[sha256sum] = "b2919d603a5f3c19f42e3265c4b930e2376c43b3969b90ef9c42b2f72d5aaa45" | ||
17 | |||
18 | LIC_FILES_CHKSUM = "file://COPYING;md5=2a69fef414e2cb907b4544298569300b" | ||
19 | |||
20 | EXTRA_OECONF = "--with-neon=${STAGING_EXECPREFIXDIR} \ | ||
21 | --without-berkeley-db --without-apxs --without-apache \ | ||
22 | --without-swig --with-apr=${STAGING_BINDIR_CROSS} \ | ||
23 | --with-apr-util=${STAGING_BINDIR_CROSS}" | ||
24 | |||
25 | inherit autotools | ||
26 | |||
27 | export LDFLAGS += " -L${STAGING_LIBDIR} " | ||
28 | |||
29 | acpaths = "-I build/ -I build/ac-macros/" | ||
30 | |||
31 | do_configure_prepend () { | ||
32 | rm -f ${S}/libtool | ||
33 | rm -f ${S}/build/libtool.m4 | ||
34 | sed -i -e 's:with_sasl="/usr/local":with_sasl="${STAGING_DIR}":' ${S}/build/ac-macros/sasl.m4 | ||
35 | } | ||