Bump buidlroot version to 2018.02.6
This commit is contained in:
@@ -4,11 +4,37 @@
|
||||
#
|
||||
################################################################################
|
||||
|
||||
NGIRCD_VERSION = 20.3
|
||||
NGIRCD_VERSION = 24
|
||||
NGIRCD_SOURCE = ngircd-$(NGIRCD_VERSION).tar.xz
|
||||
NGIRCD_SITE = http://arthur.barton.de/pub/ngircd
|
||||
NGIRCD_DEPENDENCIES = zlib
|
||||
NGIRCD_LICENSE = GPLv2+
|
||||
NGIRCD_SITE = https://arthur.barton.de/pub/ngircd
|
||||
NGIRCD_LICENSE = GPL-2.0+
|
||||
NGIRCD_LICENSE_FILES = COPYING
|
||||
|
||||
ifeq ($(BR2_PACKAGE_LINUX_PAM),y)
|
||||
NGIRCD_CONF_OPTS += --with-pam=$(STAGING_DIR)/usr
|
||||
NGIRCD_DEPENDENCIES += linux-pam
|
||||
else
|
||||
NGIRCD_CONF_OPTS += --without-pam
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_OPENSSL),y)
|
||||
NGIRCD_CONF_OPTS += --with-openssl=$(STAGING_DIR)/usr
|
||||
NGIRCD_DEPENDENCIES += openssl
|
||||
else
|
||||
NGIRCD_CONF_OPTS += --without-openssl
|
||||
ifeq ($(BR2_PACKAGE_GNUTLS),y)
|
||||
NGIRCD_CONF_OPTS += --with-gnutls=$(STAGING_DIR)/usr
|
||||
NGIRCD_DEPENDENCIES += gnutls
|
||||
else
|
||||
NGIRCD_CONF_OPTS += --without-gnutls
|
||||
endif
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_ZLIB),y)
|
||||
NGIRCD_CONF_OPTS += --with-zlib=$(STAGING_DIR)/usr
|
||||
NGIRCD_DEPENDENCIES += zlib
|
||||
else
|
||||
NGIRCD_CONF_OPTS += --without-zlib
|
||||
endif
|
||||
|
||||
$(eval $(autotools-package))
|
||||
|
||||
Reference in New Issue
Block a user