Move all to deprecated folder.
This commit is contained in:
10
deprecated/firmware/buildroot/package/xerces/Config.in
Normal file
10
deprecated/firmware/buildroot/package/xerces/Config.in
Normal file
@@ -0,0 +1,10 @@
|
||||
config BR2_PACKAGE_XERCES
|
||||
bool "xerces-c++"
|
||||
depends on BR2_INSTALL_LIBSTDCPP && BR2_USE_WCHAR
|
||||
help
|
||||
Xerces-C++ is a validating XML parser written in portable C++.
|
||||
|
||||
http://xml.apache.org/xerces-c/
|
||||
|
||||
comment "xerces-c++ needs a toolchain w/ C++, wchar"
|
||||
depends on !(BR2_INSTALL_LIBSTDCPP && BR2_USE_WCHAR)
|
||||
2
deprecated/firmware/buildroot/package/xerces/xerces.hash
Normal file
2
deprecated/firmware/buildroot/package/xerces/xerces.hash
Normal file
@@ -0,0 +1,2 @@
|
||||
# From http://www.apache.org/dist/xerces/c/3/sources/xerces-c-3.1.3.tar.xz.sha256
|
||||
sha256 d35ae442db333f73c7ef41b2ce2e33bc8aba8dbacf582af765eda26415d25c94 xerces-c-3.1.3.tar.xz
|
||||
43
deprecated/firmware/buildroot/package/xerces/xerces.mk
Normal file
43
deprecated/firmware/buildroot/package/xerces/xerces.mk
Normal file
@@ -0,0 +1,43 @@
|
||||
################################################################################
|
||||
#
|
||||
# xerces
|
||||
#
|
||||
################################################################################
|
||||
|
||||
XERCES_VERSION = 3.1.3
|
||||
XERCES_SOURCE = xerces-c-$(XERCES_VERSION).tar.xz
|
||||
XERCES_SITE = http://archive.apache.org/dist/xerces/c/3/sources
|
||||
XERCES_LICENSE = Apache-2.0
|
||||
XERCES_LICENSE_FILES = LICENSE
|
||||
XERCES_MAKE = $(MAKE1)
|
||||
XERCES_INSTALL_STAGING = YES
|
||||
XERCES_CONF_OPTS = \
|
||||
--disable-threads \
|
||||
--with-gnu-ld
|
||||
|
||||
define XERCES_DISABLE_SAMPLES
|
||||
$(SED) 's/ samples//' $(@D)/Makefile.in
|
||||
endef
|
||||
|
||||
XERCES_POST_PATCH_HOOKS += XERCES_DISABLE_SAMPLES
|
||||
|
||||
ifeq ($(BR2_PACKAGE_ICU),y)
|
||||
XERCES_CONF_OPTS += --with-icu=$(STAGING_DIR)/usr
|
||||
XERCES_DEPENDENCIES += icu
|
||||
else
|
||||
XERCES_CONF_OPTS += --without-icu
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_LIBICONV),y)
|
||||
XERCES_CONF_ENV += LIBS=-liconv
|
||||
XERCES_DEPENDENCIES += libiconv
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_LIBCURL),y)
|
||||
XERCES_CONF_OPTS += --enable-netaccessor-curl --with-curl=$(STAGING_DIR)/usr/lib
|
||||
XERCES_DEPENDENCIES += libcurl
|
||||
else
|
||||
XERCES_CONF_OPTS += --disable-network
|
||||
endif
|
||||
|
||||
$(eval $(autotools-package))
|
||||
Reference in New Issue
Block a user