mirror of
https://git.yoctoproject.org/poky
synced 2026-03-01 12:59:39 +01:00
And update recipe checksums rebased neon-detection.patch: upstream code has some of the changes similar to the changes in the patch. Removing the duplicate changes from the patch file. subversion: update LIC_CHKSUM_FILES field Noticed this change in the COPYING file: $ diff -u COPYING /tmp/COPYING --- COPYING 2006-05-28 07:41:18.000000000 -0700 +++ /tmp/COPYING 2010-12-03 11:16:15.000000000 -0800 @@ -10,7 +10,7 @@ on), you may use a newer version instead, at your option. ================================================================ -Copyright (c) 2000-2006 CollabNet. All rights reserved. +Copyright (c) 2000-2009 CollabNet. All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com>
36 lines
1.1 KiB
BlitzBasic
36 lines
1.1 KiB
BlitzBasic
DESCRIPTION = "The Subversion (svn) client"
|
|
SECTION = "console/network"
|
|
DEPENDS = "apr-util neon"
|
|
RDEPENDS = "neon"
|
|
LICENSE = "Apache BSD"
|
|
HOMEPAGE = "http://subversion.tigris.org"
|
|
|
|
PR = "r0"
|
|
|
|
SRC_URI = "http://subversion.tigris.org/downloads/${P}.tar.bz2 \
|
|
file://disable-revision-install.patch;patch=1 \
|
|
file://neon-detection.patch;patch=1 \
|
|
file://libtool2.patch;patch=1"
|
|
|
|
SRC_URI[md5sum] = "7ae1c827689f21cf975804005be30aeb"
|
|
SRC_URI[sha256sum] = "3a30327bdb04109f369586196ee4a6993cdab2cfa85c3134549f02c229bf0d15"
|
|
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=2a69fef414e2cb907b4544298569300b"
|
|
|
|
EXTRA_OECONF = "--with-neon=${STAGING_EXECPREFIXDIR} \
|
|
--without-berkeley-db --without-apxs --without-apache \
|
|
--without-swig --with-apr=${STAGING_BINDIR_CROSS} \
|
|
--with-apr-util=${STAGING_BINDIR_CROSS}"
|
|
|
|
inherit autotools
|
|
|
|
export LDFLAGS += " -L${STAGING_LIBDIR} "
|
|
|
|
acpaths = "-I build/ -I build/ac-macros/"
|
|
|
|
do_configure_prepend () {
|
|
rm -f ${S}/libtool
|
|
rm -f ${S}/build/libtool.m4
|
|
sed -i -e 's:with_sasl="/usr/local":with_sasl="${STAGING_DIR}":' ${S}/build/ac-macros/sasl.m4
|
|
}
|