mirror of
https://git.busybox.net/buildroot.git
synced 2024-11-23 05:23:39 +08:00
c6310ae232
Upstream has released a new version. In this version, they have chosen to copy the conditional compilation of tools, however they have chosen to use DISABLE_* flags instead of ENABLE_* flags. Therefore, the logic in our .mk file has been reversed: when an option is *NOT* selected, we set the corresponding DISABLE_* flag. As a corollary, the patch to add conditional compilation in the upstream Makefile is no longer needed and is removed in this commit. Tested compilation by running `./utils/test-pkg -a` with a configuration that enables all options tools. Signed-off-by: Koen Martens <gmc@sonologic.nl> Tested-by: Koen Martens <gmc@sonologic.nl> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
42 lines
1.3 KiB
Makefile
42 lines
1.3 KiB
Makefile
################################################################################
|
|
#
|
|
# linuxconsoletools
|
|
#
|
|
################################################################################
|
|
|
|
LINUXCONSOLETOOLS_VERSION = 1.8.1
|
|
LINUXCONSOLETOOLS_SOURCE = linuxconsoletools-$(LINUXCONSOLETOOLS_VERSION).tar.bz2
|
|
LINUXCONSOLETOOLS_SITE = https://downloads.sourceforge.net/project/linuxconsole
|
|
LINUXCONSOLETOOLS_LICENSE = GPL-2.0+
|
|
LINUXCONSOLETOOLS_LICENSE_FILES = COPYING
|
|
|
|
ifneq ($(BR2_PACKAGE_LINUXCONSOLETOOLS_INPUTATTACH),y)
|
|
LINUXCONSOLETOOLS_MAKE_OPTS += DISABLE_INPUTATTACH=1
|
|
endif
|
|
|
|
ifneq ($(BR2_PACKAGE_LINUXCONSOLETOOLS_JOYSTICK),y)
|
|
LINUXCONSOLETOOLS_MAKE_OPTS += DISABLE_JOYSTICK=1
|
|
endif
|
|
|
|
ifneq ($(BR2_PACKAGE_LINUXCONSOLETOOLS_FORCEFEEDBACK),y)
|
|
LINUXCONSOLETOOLS_MAKE_OPTS += DISABLE_FORCEFEEDBACK=1
|
|
else
|
|
LINUXCONSOLETOOLS_MAKE_OPTS += CFLAGS="$(TARGET_CFLAGS) -std=gnu99"
|
|
LINUXCONSOLETOOLS_DEPENDENCIES += sdl2 host-pkgconf
|
|
endif
|
|
|
|
define LINUXCONSOLETOOLS_BUILD_CMDS
|
|
$(TARGET_MAKE_ENV) $(TARGET_CONFIGURE_OPTS) $(MAKE) -C $(@D) \
|
|
$(LINUXCONSOLETOOLS_MAKE_OPTS)
|
|
endef
|
|
|
|
define LINUXCONSOLETOOLS_INSTALL_TARGET_CMDS
|
|
$(TARGET_MAKE_ENV) $(TARGET_CONFIGURE_OPTS) $(MAKE) -C $(@D) \
|
|
$(LINUXCONSOLETOOLS_MAKE_OPTS) \
|
|
DESTDIR="$(TARGET_DIR)" \
|
|
PREFIX=/usr \
|
|
install
|
|
endef
|
|
|
|
$(eval $(generic-package))
|