initial buildroot for linux 5.15
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
config BR2_PACKAGE_LYNX
|
||||
bool "lynx"
|
||||
depends on BR2_USE_MMU
|
||||
select BR2_PACKAGE_SLANG if !BR2_PACKAGE_NCURSES
|
||||
select BR2_PACKAGE_OPENSSL if !BR2_PACKAGE_GNUTLS
|
||||
help
|
||||
The Text Web-Browser.
|
||||
|
||||
http://lynx.invisible-island.net/
|
||||
@@ -0,0 +1,4 @@
|
||||
# Locally calculated:
|
||||
sha256 387f193d7792f9cfada14c60b0e5c0bff18f227d9257a39483e14fa1aaf79595 lynx2.8.9rel.1.tar.bz2
|
||||
sha256 b2207e757dbbefc34a20a32b1b4a216b4a4316e1dc812bceca4ac6294871119a 90_CVE-2021-38165.patch
|
||||
sha256 8406a30ff3134ec23cf752d1ceda92ddaabbe41b4f2dc07ea3cfa139de12d6d6 COPYING
|
||||
@@ -0,0 +1,58 @@
|
||||
################################################################################
|
||||
#
|
||||
# lynx
|
||||
#
|
||||
################################################################################
|
||||
|
||||
LYNX_VERSION = 2.8.9rel.1
|
||||
LYNX_SOURCE = lynx$(LYNX_VERSION).tar.bz2
|
||||
LYNX_SITE = ftp://ftp.invisible-island.net/lynx/tarballs
|
||||
LYNX_PATCH = \
|
||||
https://salsa.debian.org/lynx-team/lynx/-/raw/debian/2.9.0dev.6-3_deb11u1/debian/patches/90_CVE-2021-38165.patch
|
||||
# 90_CVE-2021-38165.patch
|
||||
LYNX_IGNORE_CVES += CVE-2021-38165
|
||||
LYNX_LICENSE = GPL-2.0
|
||||
LYNX_LICENSE_FILES = COPYING
|
||||
LYNX_CPE_ID_VENDOR = lynx_project
|
||||
|
||||
LYNX_DEPENDENCIES = host-pkgconf $(TARGET_NLS_DEPENDENCIES)
|
||||
|
||||
ifeq ($(BR2_REPRODUCIBLE),y)
|
||||
# configuration info leaks build paths
|
||||
LYNX_CONF_OPTS += --disable-config-info
|
||||
# disable build timestamp
|
||||
LYNX_CFLAGS += -DNO_BUILDSTAMP
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_NCURSES),y)
|
||||
LYNX_DEPENDENCIES += ncurses
|
||||
LYNX_CONF_OPTS += --with-screen=ncurses$(if $(BR2_PACKAGE_NCURSES_WCHAR),w)
|
||||
else ifeq ($(BR2_PACKAGE_SLANG),y)
|
||||
LYNX_DEPENDENCIES += slang
|
||||
LYNX_CONF_OPTS += --with-screen=slang
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_OPENSSL),y)
|
||||
LYNX_DEPENDENCIES += openssl
|
||||
LYNX_CONF_OPTS += --with-ssl=$(STAGING_DIR)/usr
|
||||
LYNX_LIBS += `$(PKG_CONFIG_HOST_BINARY) --libs openssl`
|
||||
else ifeq ($(BR2_PACKAGE_GNUTLS),y)
|
||||
LYNX_DEPENDENCIES += gnutls
|
||||
LYNX_CONF_OPTS += --with-gnutls
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_ZLIB),y)
|
||||
LYNX_DEPENDENCIES += zlib
|
||||
LYNX_CONF_OPTS += --with-zlib
|
||||
else
|
||||
LYNX_CONF_OPTS += --without-zlib
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_LIBIDN),y)
|
||||
LYNX_DEPENDENCIES += libidn
|
||||
LYNX_LIBS += `$(PKG_CONFIG_HOST_BINARY) --libs libidn`
|
||||
endif
|
||||
|
||||
LYNX_CONF_ENV = LIBS="$(LYNX_LIBS)" CFLAGS="$(TARGET_CFLAGS) $(LYNX_CFLAGS)"
|
||||
|
||||
$(eval $(autotools-package))
|
||||
Reference in New Issue
Block a user