diff options
Diffstat (limited to 'meta/recipes-devtools/subversion/subversion_1.7.7.bb')
-rw-r--r-- | meta/recipes-devtools/subversion/subversion_1.7.7.bb | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/meta/recipes-devtools/subversion/subversion_1.7.7.bb b/meta/recipes-devtools/subversion/subversion_1.7.7.bb new file mode 100644 index 0000000000..f00621761d --- /dev/null +++ b/meta/recipes-devtools/subversion/subversion_1.7.7.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] = "5a42b7d0f1366a8d60f9ad7d5890295d" | ||
17 | SRC_URI[sha256sum] = "fc85a9341d1dc275b279e470776014b02328a028e48a7ac7868ac07d4a40a321" | ||
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 | } | ||