74ecbaa23d
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>
20 lines
594 B
Makefile
20 lines
594 B
Makefile
#############################################################
|
|
#
|
|
# blackbox
|
|
#
|
|
#############################################################
|
|
|
|
BLACKBOX_VERSION:=0.70.1
|
|
BLACKBOX_SOURCE:=blackbox-$(BLACKBOX_VERSION).tar.bz2
|
|
BLACKBOX_SITE:=http://$(BR2_SOURCEFORGE_MIRROR).dl.sourceforge.net/sourceforge/blackboxwm/
|
|
BLACKBOX_AUTORECONF:=NO
|
|
BLACKBOX_INSTALL_STAGING:=NO
|
|
BLACKBOX_INSTALL_TARGET:=YES
|
|
|
|
BLACKBOX_CONF_OPT:=--x-includes=$(STAGING_DIR)/usr/include/X11 \
|
|
--x-libraries=$(STAGING_DIR)/usr/lib
|
|
|
|
BLACKBOX_DEPENDENCIES:=uclibc xserver_xorg-server
|
|
|
|
$(eval $(call AUTOTARGETS,package,blackbox))
|