Commit 8b2e2357 authored by Vicente Olivert Riera's avatar Vicente Olivert Riera Committed by Peter Korsgaard
Browse files

libnfc-llcp: rename to libllcp and bump version



This package has been renamed upstream to libllcp. Also, the current
package we have in Buildroot fails to compile due to a version bump of
it's main dependence, libnfc. A version bump is required because this
package has been adapted upstream to work with libnfc-1.7.0-rc6.

Signed-off-by: default avatarVicente Olivert Riera <Vincent.Riera@imgtec.com>
Signed-off-by: default avatarPeter Korsgaard <peter@korsgaard.com>
parent 94dd02f5
Loading
Loading
Loading
Loading
+11 −0
Original line number Diff line number Diff line
@@ -98,6 +98,17 @@ comment "build, or run, in unpredictable ways. "
comment "----------------------------------------------------"
endif

###############################################################################
config BR2_PACKAGE_LIBNFC_LLCP
	bool "libnfc-llcp has been removed"
	depends on BR2_TOOLCHAIN_HAS_THREADS # libusb
	select BR2_PACKAGE_LIBNFC
	select BR2_LEGACY
	help
	  The 'libnfc-llcp' package has been removed since upstream renamed
          to 'libllcp'. We have added a new package for 'libllcp' and bumped
          the version at the same time.

###############################################################################
comment "Legacy options removed in 2014.02"

+1 −1
Original line number Diff line number Diff line
@@ -570,9 +570,9 @@ source "package/libfreefare/Config.in"
source "package/libftdi/Config.in"
source "package/libhid/Config.in"
source "package/libiqrf/Config.in"
source "package/libllcp/Config.in"
source "package/libmbim/Config.in"
source "package/libnfc/Config.in"
source "package/libnfc-llcp/Config.in"
source "package/libqmi/Config.in"
source "package/libraw1394/Config.in"
source "package/libserial/Config.in"
+3 −3
Original line number Diff line number Diff line
config BR2_PACKAGE_LIBNFC_LLCP
	bool "libnfc-llcp"
config BR2_PACKAGE_LIBLLCP
	bool "libllcp"
	depends on BR2_TOOLCHAIN_HAS_THREADS # libusb
	select BR2_PACKAGE_LIBNFC
	help
	  Library extending libnfc with support for Logical Link Control
	  Protocol.

	  http://code.google.com/p/nfc-tools/source/browse/trunk/libnfc-llcp/
	  https://code.google.com/p/libllcp/
+17 −0
Original line number Diff line number Diff line
################################################################################
#
# libnfc-llcp
# libllcp
#
################################################################################

LIBNFC_LLCP_VERSION = 1103
LIBNFC_LLCP_SITE = http://nfc-tools.googlecode.com/svn/trunk/libnfc-llcp/
LIBNFC_LLCP_SITE_METHOD = svn
LIBNFC_LLCP_DEPENDENCIES = libnfc
LIBNFC_LLCP_AUTORECONF = YES
LIBNFC_LLCP_AUTORECONF_OPT = --install --force --verbose
LIBNFC_LLCP_INSTALL_STAGING = YES
LIBLLCP_VERSION = cf0c4b3c9df98851c6092c130192130c3f5a46bd
LIBLLCP_SITE = https://libllcp.googlecode.com/git/
LIBLLCP_SITE_METHOD = git
LIBLLCP_DEPENDENCIES = libnfc
# There's no ./configure in the repository, so we need to autoreconf
LIBLLCP_AUTORECONF = YES
LIBLLCP_INSTALL_STAGING = YES
LIBLLCP_LICENSE = GPLv3+
LIBLLCP_LICENSE_FILES = COPYING

$(eval $(autotools-package))