1################################################################################ 2# 3# subversion 4# 5################################################################################ 6 7SUBVERSION_VERSION = 1.14.3 8SUBVERSION_SOURCE = subversion-$(SUBVERSION_VERSION).tar.bz2 9SUBVERSION_SITE = https://downloads.apache.org/subversion 10SUBVERSION_LICENSE = Apache-2.0 11SUBVERSION_LICENSE_FILES = LICENSE 12SUBVERSION_CPE_ID_VENDOR = apache 13SUBVERSION_DEPENDENCIES = \ 14 host-pkgconf \ 15 apr \ 16 apr-util \ 17 expat \ 18 lz4 \ 19 utf8proc \ 20 zlib \ 21 sqlite \ 22 $(TARGET_NLS_DEPENDENCIES) 23SUBVERSION_CONF_OPTS = \ 24 --with-expat=$(STAGING_DIR)/usr/include:$(STAGING_DIR)/usr/lib: \ 25 --with-apr=$(STAGING_DIR)/usr \ 26 --with-apr-util=$(STAGING_DIR)/usr \ 27 --with-lz4=$(STAGING_DIR)/usr \ 28 --with-utf8proc=$(STAGING_DIR)/usr \ 29 --with-zlib=$(STAGING_DIR)/usr \ 30 --without-serf \ 31 --without-apxs \ 32 --without-berkeley-db \ 33 --without-sasl \ 34 --without-gnome-keyring \ 35 --without-libmagic 36SUBVERSION_CONF_ENV = LIBS=$(TARGET_NLS_LIBS) 37 38$(eval $(autotools-package)) 39