buildrootschalter/package/lbreakout2/lbreakout2.mk
Romain Naour 56ed21e726 package/lbreakout2: fix linking with intl
lbreakout2 doen't build with (e)glibc toolchain when gettext package is selected.

With (e)glibc libintl is provided by the libc whereas with uClibc it's provided by gettext.

Linking with intl is only needed if the toolchain needs gettext and locale is set.

Fixes:
http://autobuild.buildroot.net/results/a77/a77dd3e18cc4a5e8300ab33eb532cc03d0156f7f/build-end.log

Signed-off-by: Romain Naour <romain.naour@openwide.fr>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
2014-08-21 15:34:47 +02:00

37 lines
943 B
Makefile

################################################################################
#
# lbreakout2
#
################################################################################
LBREAKOUT2_SITE = http://downloads.sourceforge.net/lgames/lbreakout2/2.6
LBREAKOUT2_VERSION = 2.6.4
LBREAKOUT2_LICENSE = GPLv2+
LBREAKOUT2_LICENSE_FILES = COPYING
LBREAKOUT2_DEPENDENCIES = sdl libpng
LBREAKOUT2_CONF_ENV = \
SDL_CONFIG="$(STAGING_DIR)/usr/bin/sdl-config"
ifeq ($(BR2_NEEDS_GETTEXT_IF_LOCALE),y)
LBREAKOUT2_DEPENDENCIES += gettext
LBREAKOUT2_CONF_ENV += LIBS=-lintl
endif
ifeq ($(BR2_PACKAGE_LBREAKOUT2_AUDIO),y)
LBREAKOUT2_DEPENDENCIES += sdl_mixer
LBREAKOUT2_CONF_OPT += --enable-audio=yes
else
LBREAKOUT2_CONF_OPT += --disable-audio
endif
ifeq ($(BR2_PACKAGE_LBREAKOUT2_NET),y)
LBREAKOUT2_DEPENDENCIES += sdl_net
LBREAKOUT2_CONF_OPT += --enable-network=yes
else
LBREAKOUT2_CONF_OPT += --disable-network
endif
$(eval $(autotools-package))