mirror of
https://github.com/LibreELEC/LibreELEC.tv.git
synced 2025-07-24 11:16:51 +00:00
Merge pull request #9574 from heitbaum/lcdd12
[le12] lcdd: update to githash 71877ee and addon (1)
This commit is contained in:
commit
52579aa5e2
@ -2,12 +2,14 @@
|
||||
# Copyright (C) 2021-present Team LibreELEC (https://libreelec.tv)
|
||||
|
||||
PKG_NAME="libgpiod"
|
||||
PKG_VERSION="2.1.3"
|
||||
PKG_SHA256="8d80ea022ae78122aa525308e7423b83064bff278fcd9cd045b94b4f81f8057d"
|
||||
PKG_VERSION="2.2"
|
||||
PKG_SHA256="ae35329db7027c740e90c883baf27c26311f0614e6a7b115771b28188b992aec"
|
||||
PKG_LICENSE="GPLv2+"
|
||||
PKG_SITE="https://git.kernel.org/pub/scm/libs/libgpiod/libgpiod.git/about/"
|
||||
PKG_URL="https://git.kernel.org/pub/scm/libs/libgpiod/libgpiod.git/snapshot/libgpiod-${PKG_VERSION}.tar.gz"
|
||||
PKG_DEPENDS_TARGET="toolchain"
|
||||
PKG_LONGDESC="Tools for interacting with the linux GPIO character device."
|
||||
PKG_TOOLCHAIN="autotools"
|
||||
PKG_BUILD_FLAGS="+pic"
|
||||
|
||||
PKG_CONFIGURE_OPTS_TARGET="--enable-tools --disable-shared"
|
@ -2,15 +2,15 @@
|
||||
# Copyright (C) 2016-present Team LibreELEC (https://libreelec.tv)
|
||||
|
||||
PKG_NAME="lcdd"
|
||||
PKG_VERSION="9ec9ba4e5dda653288bc55d2898723aa2c2ad9c1"
|
||||
PKG_SHA256="442f60fc7c26847508e7fb99d901e905016c136d0f6eb320e3262bef20f39452"
|
||||
PKG_VERSION_DATE="0.5dev+2020-07-21"
|
||||
PKG_REV="0"
|
||||
PKG_VERSION="71877ee059a238400b5f6b41cee7c43a3df00334"
|
||||
PKG_SHA256="e910c7d748b58cc57543dc8845f8b2bcd0592dddd58bd72a55a58e90e6bfd861"
|
||||
PKG_VERSION_DATE="0.5dev+2024-12-14"
|
||||
PKG_REV="1"
|
||||
PKG_ARCH="any"
|
||||
PKG_LICENSE="GPL"
|
||||
PKG_SITE="http://lcdproc.org/"
|
||||
PKG_URL="https://github.com/lcdproc/lcdproc/archive/${PKG_VERSION}.tar.gz"
|
||||
PKG_DEPENDS_TARGET="toolchain freetype libftdi1 libhid libugpio libusb ncurses serdisplib"
|
||||
PKG_DEPENDS_TARGET="toolchain freetype libftdi1 libgpiod libhid libugpio libusb ncurses serdisplib"
|
||||
PKG_SECTION="service"
|
||||
PKG_SHORTDESC="LCDproc: Software to display system information from your Linux/*BSD box on a LCD"
|
||||
PKG_LONGDESC="LCDproc (${PKG_VERSION}) is a piece of software that displays real-time system information from your Linux/*BSD box on a LCD. The server supports several serial devices: Matrix Orbital, Crystal Fontz, Bayrad, LB216, LCDM001 (kernelconcepts.de), Wirz-SLI, Cwlinux(.com) and PIC-an-LCD; and some devices connected to the LPT port: HD44780, STV5730, T6963, SED1520 and SED1330. Various clients are available that display things like CPU load, system load, memory usage, uptime, and a lot more."
|
||||
@ -21,13 +21,13 @@ PKG_IS_ADDON="yes"
|
||||
PKG_ADDON_NAME="LCDproc"
|
||||
PKG_ADDON_TYPE="xbmc.service"
|
||||
|
||||
PKG_CONFIGURE_OPTS_TARGET="--with-ft-prefix=${SYSROOT_PREFIX}/usr \
|
||||
--enable-libusb \
|
||||
--enable-libftdi \
|
||||
--disable-libX11 \
|
||||
PKG_CONFIGURE_OPTS_TARGET="--enable-drivers=all \
|
||||
--enable-freetype \
|
||||
--enable-libhid \
|
||||
--enable-libftdi \
|
||||
--disable-libpng \
|
||||
--enable-drivers=all"
|
||||
--enable-libusb \
|
||||
--disable-libX11"
|
||||
|
||||
pre_configure_target() {
|
||||
CFLAGS+=" -O3"
|
||||
|
@ -1,52 +0,0 @@
|
||||
diff --git a/server/drivers/hd44780-low.h b/server/drivers/hd44780-low.h
|
||||
index 47acf45..6faa830 100644
|
||||
--- a/server/drivers/hd44780-low.h
|
||||
+++ b/server/drivers/hd44780-low.h
|
||||
@@ -26,7 +26,7 @@
|
||||
#endif
|
||||
|
||||
#ifdef HAVE_LIBFTDI
|
||||
-# include <ftdi.h>
|
||||
+# include <libftdi1/ftdi.h>
|
||||
#endif
|
||||
|
||||
/** \name Symbolic names for connection types
|
||||
diff --git a/server/drivers/i2500vfd.c b/server/drivers/i2500vfd.c
|
||||
index d896a69..7fe74f2 100644
|
||||
--- a/server/drivers/i2500vfd.c
|
||||
+++ b/server/drivers/i2500vfd.c
|
||||
@@ -32,7 +32,7 @@
|
||||
#include <stdio.h>
|
||||
#include <unistd.h>
|
||||
#include <string.h>
|
||||
-#include <ftdi.h>
|
||||
+#include <libftdi1/ftdi.h>
|
||||
|
||||
#include "lcd.h"
|
||||
#include "i2500vfd.h"
|
||||
diff --git a/server/drivers/lis.c b/server/drivers/lis.c
|
||||
index 5d3e97a..6c26a19 100644
|
||||
--- a/server/drivers/lis.c
|
||||
+++ b/server/drivers/lis.c
|
||||
@@ -42,7 +42,7 @@
|
||||
#include <errno.h>
|
||||
#include <pthread.h>
|
||||
|
||||
-#include <ftdi.h>
|
||||
+#include <libftdi1/ftdi.h>
|
||||
|
||||
#include "lcd.h"
|
||||
#include "lis.h"
|
||||
diff --git a/server/drivers/ula200.c b/server/drivers/ula200.c
|
||||
index cbdde40..a84eb49 100644
|
||||
--- a/server/drivers/ula200.c
|
||||
+++ b/server/drivers/ula200.c
|
||||
@@ -31,7 +31,7 @@
|
||||
#include <string.h>
|
||||
#include <errno.h>
|
||||
|
||||
-#include <ftdi.h>
|
||||
+#include <libftdi1/ftdi.h>
|
||||
|
||||
#include "lcd.h"
|
||||
#include "ula200.h"
|
Loading…
x
Reference in New Issue
Block a user