kumquat-buildroot/package/matchbox/matchbox-wm/matchbox-wm.mk
Arnout Vandecappelle (Essensium/Mind) e1502ebc0c all packages: rename XXXTARGETS to xxx-package
Also remove the redundant $(call ...).

This is a purely mechanical change, performed with
find package linux toolchain boot -name \*.mk | \
  xargs sed -i -e 's/$(eval $(call GENTARGETS))/$(eval $(generic-package))/' \
               -e 's/$(eval $(call AUTOTARGETS))/$(eval $(autotools-package))/' \
               -e 's/$(eval $(call CMAKETARGETS))/$(eval $(cmake-package))/'

Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
2012-07-17 20:23:05 +02:00

43 lines
1.2 KiB
Makefile

#############################################################
#
# MatchBox WM
#
#############################################################
MATCHBOX_WM_VERSION = 1.2
MATCHBOX_WM_SOURCE = matchbox-window-manager-$(MATCHBOX_WM_VERSION).tar.bz2
MATCHBOX_WM_SITE = http://matchbox-project.org/sources/matchbox-window-manager/$(MATCHBOX_WM_VERSION)
MATCHBOX_WM_DEPENDENCIES = matchbox-lib
MATCHBOX_WM_CONF_OPT = --enable-expat
# Workaround bug in configure script
MATCHBOX_WM_CONF_ENV = expat=yes
#############################################################
ifeq ($(BR2_PACKAGE_X11R7_LIBXCOMPOSITE),y)
ifeq ($(BR2_PACKAGE_X11R7_LIBXPM),y)
MATCHBOX_WM_CONF_OPT+=--enable-composite
MATCHBOX_WM_DEPENDENCIES+=xlib_libXcomposite
MATCHBOX_WM_DEPENDENCIES+=xlib_libXpm
endif
endif
ifeq ($(BR2_PACKAGE_XLIB_LIBXFT),y)
#MATCHBOX_WM_OPTS+=--enable-standalone-xft
MATCHBOX_WM_DEPENDENCIES+=xlib_libXft
else
#MATCHBOX_WM_OPTS+=--disable-standalone-xft
endif
ifeq ($(BR2_PACKAGE_STARTUP_NOTIFICATION),y)
MATCHBOX_WM_CONF_OPT+=--enable-startup-notification
MATCHBOX_WM_DEPENDENCIES+=startup-notification
else
MATCHBOX_WM_CONF_OPT+=--disable-startup-notification
endif
#############################################################
$(eval $(autotools-package))