The XSERVER variable used to be defined by package/Makefile.in because the X server package name was different depending on the type of X server that was choosen. Nowadays, the name of the package is always xserver_xorg-server, so there's no point in having this XSERVER intermediate variable. This patch makes all packages use xserver_xorg-server directly as a dependency, and removes the XSERVER variable from package/Makefile.in. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
23 lines
757 B
Makefile
23 lines
757 B
Makefile
#############################################################
|
|
#
|
|
# fltk
|
|
#
|
|
#############################################################
|
|
|
|
FLTK_VERSION = 1.1.7
|
|
FLTK_SOURCE = fltk-$(FLTK_VERSION)-source.tar.bz2
|
|
FLTK_SITE = http://ftp.easysw.com/pub/fltk/1.1.7/
|
|
FLTK_AUTORECONF = NO
|
|
FLTK_INSTALL_STAGING = YES
|
|
FLTK_INSTALL_TARGET = YES
|
|
|
|
FLTK_INSTALL_STAGING_OPT = DESTDIR=$(STAGING_DIR) STRIP=$(TARGET_STRIP) install
|
|
FLTK_INSTALL_TARGET_OPT = DESTDIR=$(TARGET_DIR) STRIP=$(TARGET_STRIP) install
|
|
|
|
FLTK_CONF_OPT = --target=$(GNU_TARGET_NAME) --host=$(GNU_TARGET_NAME) \
|
|
--build=$(GNU_HOST_NAME) --prefix=/usr \
|
|
--sysconfdir=/etc --enable-shared --enable-threads --with-x
|
|
|
|
FLTK_DEPENDENCIES = uclibc xserver_xorg-server
|
|
|
|
$(eval $(call AUTOTARGETS,package,fltk)) |