4965192f60
- Bump to version 1.9.2. - Update the hash file. - Use a tar.bz2 tarball to save space and bandwidth. - Fix a typo in the berkeley-db configure option. - Remove non-existent configure options: neon, gssapi and ssl. - Remove neon dependency: is not needed to build subversion. - Tweak the 0001-dont-mangle-cflags.patch for the 1.9.2 version and to patch configure.ac instead of configure. - Add a new 0002-disable-macos-specific-features.patch to remove a configure check for Mach-O (and two more) which breaks the build when cross-compiling. - Enable autoreconf since we are patching the configure.ac. Signed-off-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
27 lines
849 B
Makefile
27 lines
849 B
Makefile
################################################################################
|
|
#
|
|
# subversion
|
|
#
|
|
################################################################################
|
|
|
|
SUBVERSION_VERSION = 1.9.2
|
|
SUBVERSION_SOURCE = subversion-$(SUBVERSION_VERSION).tar.bz2
|
|
SUBVERSION_SITE = http://mirror.catn.com/pub/apache/subversion
|
|
SUBVERSION_LICENSE = Apache-2.0
|
|
SUBVERSION_LICENSE_FILES = LICENSE
|
|
SUBVERSION_DEPENDENCIES = host-pkgconf apr apr-util expat zlib sqlite
|
|
SUBVERSION_AUTORECONF = YES
|
|
SUBVERSION_CONF_OPTS = \
|
|
--with-expat=$(STAGING_DIR)/usr/include:$(STAGING_DIR)/usr/lib: \
|
|
--with-apr=$(STAGING_DIR)/usr \
|
|
--with-apr-util=$(STAGING_DIR)/usr \
|
|
--with-zlib=$(STAGING_DIR)/usr \
|
|
--without-serf \
|
|
--without-apxs \
|
|
--without-berkeley-db \
|
|
--without-sasl \
|
|
--without-gnome-keyring \
|
|
--without-libmagic
|
|
|
|
$(eval $(autotools-package))
|