2588aa8527
Switched to bz2 tarball, upstream does not provide a gz tarball anymore. Rebased 0001-slsh-libs.patch according to https://gitweb.gentoo.org/repo/gentoo.git/tree/sys-libs/slang/files/slang-2.3.1-slsh-libs.patch Removed patches applied upstream: 0002-Enable-a-statically-linked-version-of-slsh.patch 0003-Disable-module-support-in-the-statically-linked-version-of-slsh.patch 0005-make-install-static-do-install-pkgconfig-as-install-.patch Removed 0004-Rename-posix_close-function-to-posix_close_slfile.patch after upstream committed a different solution, Alpine Linux did the same when bumping to 2.3.1: https://git.alpinelinux.org/cgit/aports/commit/main/slang?id=d4d252e4dea77c868259b0ef1f3d9cfbe6dc2152 Added sha256 hash and license file hash. Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> [Arnout: Added sha256 hash and license file hash.] Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
64 lines
1.7 KiB
Makefile
64 lines
1.7 KiB
Makefile
################################################################################
|
|
#
|
|
# slang
|
|
#
|
|
################################################################################
|
|
|
|
SLANG_VERSION = 2.3.1a
|
|
SLANG_SOURCE = slang-$(SLANG_VERSION).tar.bz2
|
|
SLANG_SITE = http://www.jedsoft.org/releases/slang
|
|
SLANG_LICENSE = GPL-2.0+
|
|
SLANG_LICENSE_FILES = COPYING
|
|
SLANG_INSTALL_STAGING = YES
|
|
SLANG_CONF_OPTS = --with-onig=no
|
|
SLANG_MAKE = $(MAKE1)
|
|
|
|
# Racy and we don't have/do libtermcap
|
|
define SLANG_DISABLE_TERMCAP
|
|
$(SED) '/^TERMCAP=/s:=.*:=:' $(@D)/configure
|
|
endef
|
|
SLANG_POST_PATCH_HOOKS += SLANG_DISABLE_TERMCAP
|
|
|
|
# Absolute path hell, sigh...
|
|
ifeq ($(BR2_PACKAGE_LIBPNG),y)
|
|
SLANG_CONF_OPTS += --with-png=$(STAGING_DIR)/usr
|
|
SLANG_DEPENDENCIES += libpng
|
|
else
|
|
SLANG_CONF_OPTS += --with-png=no
|
|
endif
|
|
ifeq ($(BR2_PACKAGE_PCRE),y)
|
|
SLANG_CONF_OPTS += --with-pcre=$(STAGING_DIR)/usr
|
|
SLANG_DEPENDENCIES += pcre
|
|
else
|
|
SLANG_CONF_OPTS += --with-pcre=no
|
|
endif
|
|
ifeq ($(BR2_PACKAGE_ZLIB),y)
|
|
SLANG_CONF_OPTS += --with-z=$(STAGING_DIR)/usr
|
|
SLANG_DEPENDENCIES += zlib
|
|
else
|
|
SLANG_CONF_OPTS += --with-z=no
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_NCURSES),y)
|
|
SLANG_DEPENDENCIES += ncurses
|
|
SLANG_CONF_ENV += ac_cv_path_nc5config=$(STAGING_DIR)/usr/bin/$(NCURSES_CONFIG_SCRIPTS)
|
|
else
|
|
SLANG_CONF_OPTS += ac_cv_path_nc5config=no
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_READLINE),y)
|
|
SLANG_CONF_OPTS += --with-readline=gnu
|
|
SLANG_DEPENDENCIES += readline
|
|
ifeq ($(BR2_STATIC_LIBS),y)
|
|
SLANG_CONF_ENV += LIBS="`$(STAGING_DIR)/usr/bin/$(NCURSES_CONFIG_SCRIPTS) --libs`"
|
|
endif
|
|
endif
|
|
|
|
ifeq ($(BR2_STATIC_LIBS),y)
|
|
SLANG_MAKE_OPTS = static
|
|
SLANG_INSTALL_STAGING_OPTS = DESTDIR=$(STAGING_DIR) install-static
|
|
SLANG_INSTALL_TARGET_OPTS = DESTDIR=$(TARGET_DIR) install-static
|
|
endif
|
|
|
|
$(eval $(autotools-package))
|