125 lines
3.8 KiB
Makefile
125 lines
3.8 KiB
Makefile
#############################################################
|
|
#
|
|
# directfb
|
|
#
|
|
#############################################################
|
|
#DIRECTFB_VERSION:=0.9.25.1
|
|
#DIRECTFB_SITE:=http://www.directfb.org/downloads/Old
|
|
DIRECTFB_VERSION:=1.0.1
|
|
DIRECTFB_SITE:=http://www.directfb.org/downloads/Core
|
|
DIRECTFB_SOURCE:=DirectFB-$(DIRECTFB_VERSION).tar.gz
|
|
DIRECTFB_CAT:=$(ZCAT)
|
|
DIRECTFB_DIR:=$(BUILD_DIR)/DirectFB-$(DIRECTFB_VERSION)
|
|
|
|
ifeq ($(BR2_PACKAGE_DIRECTFB_MULTI),y)
|
|
DIRECTFB_MULTI:=--enable-multi
|
|
DIRECTFB_FUSION:=linux-fusion
|
|
else
|
|
DIRECTFB_MULTI:=
|
|
DIRECTFB_FUSION:=
|
|
endif
|
|
ifeq ($(BR2_PACKAGE_XSERVER_none),y)
|
|
DIRECTFB_X:=--disable-x11
|
|
else
|
|
DIRECTFB_X:=--enable-x11
|
|
endif
|
|
|
|
$(DL_DIR)/$(DIRECTFB_SOURCE):
|
|
$(WGET) -P $(DL_DIR) $(DIRECTFB_SITE)/$(DIRECTFB_SOURCE)
|
|
|
|
directfb-source: $(DL_DIR)/$(DIRECTFB_SOURCE)
|
|
|
|
$(DIRECTFB_DIR)/.unpacked: $(DL_DIR)/$(DIRECTFB_SOURCE)
|
|
$(DIRECTFB_CAT) $(DL_DIR)/$(DIRECTFB_SOURCE) | tar -C $(BUILD_DIR) $(TAR_OPTIONS) -
|
|
toolchain/patch-kernel.sh $(DIRECTFB_DIR) package/directfb/ directfb\*.patch
|
|
touch $@
|
|
|
|
$(DIRECTFB_DIR)/.configured: $(DIRECTFB_DIR)/.unpacked
|
|
(cd $(DIRECTFB_DIR); rm -f config.cache; \
|
|
$(TARGET_CONFIGURE_OPTS) \
|
|
$(TARGET_CONFIGURE_ARGS) \
|
|
ac_cv_header_linux_wm97xx_h=no \
|
|
ac_cv_header_linux_sisfb_h=no \
|
|
ac_cv_header_asm_page_h=no \
|
|
./configure \
|
|
--target=$(GNU_TARGET_NAME) \
|
|
--host=$(GNU_TARGET_NAME) \
|
|
--build=$(GNU_HOST_NAME) \
|
|
--prefix=/usr \
|
|
--exec-prefix=/usr \
|
|
--bindir=/bin \
|
|
--sbindir=/sbin \
|
|
--libdir=/lib \
|
|
--libexecdir=/lib \
|
|
--sysconfdir=/etc \
|
|
--datadir=/share \
|
|
--localstatedir=/var \
|
|
--includedir=/include \
|
|
--mandir=/man \
|
|
--infodir=/info \
|
|
--with-gfxdrivers=cle266,unichrome \
|
|
--enable-shared \
|
|
$(DIRECTFB_MULTI) \
|
|
$(DIRECTFB_X) \
|
|
--enable-jpeg \
|
|
--enable-png \
|
|
--enable-linux-input \
|
|
--enable-zlib \
|
|
--enable-freetype \
|
|
--disable-sysfs \
|
|
--disable-sdl \
|
|
--disable-vnc \
|
|
--disable-video4linux \
|
|
--disable-video4linux2 \
|
|
--enable-fusion )
|
|
touch $@
|
|
|
|
$(DIRECTFB_DIR)/.compiled: $(DIRECTFB_DIR)/.configured
|
|
$(MAKE) PATH=$(STAGING_DIR)/usr/lib:$(PATH) \
|
|
$(TARGET_CONFIGURE_OPTS) \
|
|
-C $(DIRECTFB_DIR)
|
|
touch $(DIRECTFB_DIR)/.compiled
|
|
|
|
$(STAGING_DIR)/usr/lib/libdirectfb.so: $(DIRECTFB_DIR)/.compiled
|
|
$(MAKE) DESTDIR=$(STAGING_DIR)/usr -C $(DIRECTFB_DIR) install
|
|
$(SED) "s,^libdir=.*,libdir=\'$(STAGING_DIR)/usr/lib\',g" \
|
|
$(STAGING_DIR)/usr/lib/libdirectfb.la
|
|
$(SED) "s,/lib/libfusion.la,$(STAGING_DIR)/usr/lib/libfusion.la,g" \
|
|
$(STAGING_DIR)/usr/lib/libdirectfb.la
|
|
$(SED) "s,/lib/libdirect.la,$(STAGING_DIR)/usr/lib/libdirect.la,g" \
|
|
$(STAGING_DIR)/usr/lib/libdirectfb.la
|
|
$(SED) "s,^libdir=.*,libdir=\'$(STAGING_DIR)/usr/lib\',g" \
|
|
$(STAGING_DIR)/usr/lib/libdirect.la
|
|
$(SED) "s,^libdir=.*,libdir=\'$(STAGING_DIR)/usr/lib\',g" \
|
|
$(STAGING_DIR)/usr/lib/libfusion.la
|
|
$(SED) "s,/lib/libdirect.la,$(STAGING_DIR)/usr/lib/libdirect.la,g" \
|
|
$(STAGING_DIR)/usr/lib/libfusion.la
|
|
touch -c $@
|
|
|
|
$(TARGET_DIR)/usr/lib/libdirectfb.so: $(STAGING_DIR)/usr/lib/libdirectfb.so
|
|
cp -dpf $(STAGING_DIR)/usr/lib/libdirect* $(STAGING_DIR)/usr/lib/libfusion* $(TARGET_DIR)/usr/lib/
|
|
cp -rdpf $(STAGING_DIR)/usr/lib/directfb-* $(TARGET_DIR)/usr/lib/
|
|
-$(STRIPCMD) $(STRIP_STRIP_UNNEEDED) \
|
|
$(TARGET_DIR)/usr/lib/libdirectfb.so \
|
|
$(TARGET_DIR)/usr/lib/libdirect.so \
|
|
$(TARGET_DIR)/usr/lib/libfusion.so
|
|
|
|
directfb: uclibc jpeg libpng freetype libsysfs tslib $(DIRECTFB_FUSION) \
|
|
$(TARGET_DIR)/usr/lib/libdirectfb.so
|
|
|
|
directfb-clean:
|
|
$(MAKE) DESTDIR=$(TARGET_DIR) CC=$(TARGET_CC) -C $(DIRECTFB_DIR) uninstall
|
|
-$(MAKE) -C $(DIRECTFB_DIR) clean
|
|
|
|
directfb-dirclean:
|
|
rm -rf $(DIRECTFB_DIR)
|
|
|
|
#############################################################
|
|
#
|
|
# Toplevel Makefile options
|
|
#
|
|
#############################################################
|
|
ifeq ($(strip $(BR2_PACKAGE_DIRECTFB)),y)
|
|
TARGETS+=directfb
|
|
endif
|