Import buildroot 2016.02.01

This commit is contained in:
2016-02-24 22:35:39 +01:00
parent a6ee09dea4
commit 828befcf3c
7393 changed files with 390887 additions and 0 deletions

View File

@@ -0,0 +1,39 @@
From ede0fa7d410be407164b68570a1540378bf0bd09 Mon Sep 17 00:00:00 2001
From: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Date: Sat, 19 Jul 2014 10:40:59 +0200
Subject: [PATCH] Remove installation of docs/examples
They get installed in the wrong directory, i.e if DESTDIR is
/path/to/output/target, they will be installed in
/path/to/output/target./examples and /path/to/output/target./docs.
Since we don't need docs and examples in Buildroot anyway, simply get
rid of them.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
---
Makefile.am | 11 -----------
1 file changed, 11 deletions(-)
diff --git a/Makefile.am b/Makefile.am
index c56860a..6b1267b 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -69,14 +69,3 @@ liblcdapi_la_CXXFLAGS = \
-g0 -DNODEBUG -Os
ACLOCAL_AMFLAGS = -I m4
-
-docsdir = $(top_srcdir)/docs
-exampledir = $(top_srcdir)/example
-dist_docs_DATA = \
- docs/Makefile.am \
- docs/Makefile.in \
- docs/Doxyfile.in
-dist_example_DATA = \
- example/client.cpp \
- example/Makefile.am \
- example/Makefile.in
--
2.0.0

View File

@@ -0,0 +1,11 @@
config BR2_PACKAGE_LCDAPI
bool "lcdapi"
depends on BR2_INSTALL_LIBSTDCPP
depends on BR2_TOOLCHAIN_HAS_THREADS
help
C++ client API for lcdproc, containing a set of widget classes.
https://github.com/spdawson/lcdapi
comment "lcdapi needs a toolchain w/ C++, threads"
depends on !BR2_INSTALL_LIBSTDCPP || !BR2_TOOLCHAIN_HAS_THREADS

View File

@@ -0,0 +1,20 @@
################################################################################
#
# lcdapi
#
################################################################################
LCDAPI_VERSION = dbbdca06f271b8cf81b4817a9da3d558cfe59905
LCDAPI_SITE = $(call github,spdawson,lcdapi,$(LCDAPI_VERSION))
LCDAPI_LICENSE = LGPLv2.1+
LCDAPI_LICENSE_FILES = COPYING
LCDAPI_AUTORECONF = YES
LCDAPI_INSTALL_STAGING = YES
define LCDAPI_CREATE_M4_DIR
mkdir -p $(@D)/m4
endef
LCDAPI_POST_PATCH_HOOKS += LCDAPI_CREATE_M4_DIR
$(eval $(autotools-package))