diff options
Diffstat (limited to 'meta/recipes-devtools/subversion/subversion_1.7.10.bb')
-rw-r--r-- | meta/recipes-devtools/subversion/subversion_1.7.10.bb | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/meta/recipes-devtools/subversion/subversion_1.7.10.bb b/meta/recipes-devtools/subversion/subversion_1.7.10.bb new file mode 100644 index 0000000000..9d189fef4a --- /dev/null +++ b/meta/recipes-devtools/subversion/subversion_1.7.10.bb | |||
@@ -0,0 +1,38 @@ | |||
1 | DESCRIPTION = "The Subversion (svn) 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 | |||
8 | BBCLASSEXTEND = "native" | ||
9 | |||
10 | inherit gettext | ||
11 | |||
12 | SRC_URI = "${APACHE_MIRROR}/${BPN}/${BPN}-${PV}.tar.bz2 \ | ||
13 | file://libtool2.patch \ | ||
14 | file://fix-install-depends.patch \ | ||
15 | " | ||
16 | SRC_URI[md5sum] = "4088a77e14232876c9b4ff1541e6e200" | ||
17 | SRC_URI[sha256sum] = "c1df222bec83d014d17785e2ceba6bc80962f64b280967de0285836d8d77a8e7" | ||
18 | |||
19 | LIC_FILES_CHKSUM = "file://LICENSE;md5=4a14fd2da3134e40a087eb4326a4ecd4" | ||
20 | |||
21 | EXTRA_OECONF = " \ | ||
22 | --without-berkeley-db --without-apxs \ | ||
23 | --without-swig --with-apr=${STAGING_BINDIR_CROSS} \ | ||
24 | --with-apr-util=${STAGING_BINDIR_CROSS} \ | ||
25 | ac_cv_path_RUBY=none" | ||
26 | |||
27 | inherit autotools | ||
28 | |||
29 | export LDFLAGS += " -L${STAGING_LIBDIR} " | ||
30 | |||
31 | acpaths = "-I build/ -I build/ac-macros/" | ||
32 | |||
33 | do_configure_prepend () { | ||
34 | rm -f ${S}/libtool | ||
35 | rm -f ${S}/build/libtool.m4 ${S}/build/ltmain.sh ${S}/build/ltoptions.m4 ${S}/build/ltsugar.m4 ${S}/build/ltversion.m4 ${S}/build/lt~obsolete.m4 | ||
36 | rm -f ${S}/aclocal.m4 | ||
37 | sed -i -e 's:with_sasl="/usr/local":with_sasl="${STAGING_DIR}":' ${S}/build/ac-macros/sasl.m4 | ||
38 | } | ||