Bump version of DirectFB to 1.0.0 and add dependency on TSLIB

This commit is contained in:
Ulf Samuelsson 2007-08-12 18:21:27 +00:00
parent dcab96b108
commit fee06da798
2 changed files with 35 additions and 14 deletions

View File

@ -6,6 +6,16 @@ config BR2_PACKAGE_DIRECTFB
select BR2_PACKAGE_LIBPNG select BR2_PACKAGE_LIBPNG
select BR2_PACKAGE_LIBSYSFS select BR2_PACKAGE_LIBSYSFS
select BR2_PACKAGE_FREETYPE select BR2_PACKAGE_FREETYPE
select BR2_PACKAGE_TSLIB
help help
http://www.directfb.org/
config BR2_PACKAGE_DIRECTFB_MULTI
bool "directfb multi application"
default n
depends on BR2_PACKAGE_DIRECTFB
select BR2_PACKAGE_LINUX_FUSION
help
Enable use of multiple concurrent DirectFB applications
http://www.directfb.org/ http://www.directfb.org/

View File

@ -3,12 +3,20 @@
# directfb # directfb
# #
############################################################# #############################################################
DIRECTFB_VERSION:=0.9.25.1 #DIRECTFB_VERSION:=0.9.25.1
#DIRECTFB_SITE:=http://www.directfb.org/downloads/Old
DIRECTFB_VERSION:=1.0.0
DIRECTFB_SITE:=http://www.directfb.org/downloads/Core
DIRECTFB_SOURCE:=DirectFB-$(DIRECTFB_VERSION).tar.gz DIRECTFB_SOURCE:=DirectFB-$(DIRECTFB_VERSION).tar.gz
DIRECTFB_SITE:=http://www.directfb.org/downloads/Old
DIRECTFB_CAT:=$(ZCAT) DIRECTFB_CAT:=$(ZCAT)
DIRECTFB_DIR:=$(BUILD_DIR)/DirectFB-$(DIRECTFB_VERSION) DIRECTFB_DIR:=$(BUILD_DIR)/DirectFB-$(DIRECTFB_VERSION)
ifeq ($(BR2_PACKAGE_DIRECTFB_MULTI),y)
DIRECTFB_MULTI:=--enable-multi
else
DIRECTFB_MULTI:=
endif
$(DL_DIR)/$(DIRECTFB_SOURCE): $(DL_DIR)/$(DIRECTFB_SOURCE):
$(WGET) -P $(DL_DIR) $(DIRECTFB_SITE)/$(DIRECTFB_SOURCE) $(WGET) -P $(DL_DIR) $(DIRECTFB_SITE)/$(DIRECTFB_SOURCE)
@ -32,32 +40,35 @@ $(DIRECTFB_DIR)/.configured: $(DIRECTFB_DIR)/.unpacked
--build=$(GNU_HOST_NAME) \ --build=$(GNU_HOST_NAME) \
--prefix=/usr \ --prefix=/usr \
--exec-prefix=/usr \ --exec-prefix=/usr \
--bindir=/usr/bin \ --bindir=/bin \
--sbindir=/usr/sbin \ --sbindir=/sbin \
--libdir=/lib \ --libdir=/lib \
--libexecdir=/usr/lib \ --libexecdir=/lib \
--sysconfdir=/etc \ --sysconfdir=/etc \
--datadir=/usr/share \ --datadir=/share \
--localstatedir=/var \ --localstatedir=/var \
--includedir=/usr/include \ --includedir=/include \
--mandir=/usr/man \ --mandir=/man \
--infodir=/usr/info \ --infodir=/info \
--with-gfxdrivers=cle266,unichrome \ --with-gfxdrivers=cle266,unichrome \
--enable-shared \ --enable-shared \
$(DIRECTFB_MULTI) \
--enable-jpeg \ --enable-jpeg \
--enable-png \ --enable-png \
--enable-linux-input \ --enable-linux-input \
--enable-zlib \ --enable-zlib \
--enable-freetype \ --enable-freetype \
--disable-sysfs \ --disable-sysfs \
--enable-sdl \ --disable-sdl \
--disable-video4linux \ --disable-video4linux \
--disable-video4linux2 \ --disable-video4linux2 \
--disable-fusion ); --enable-fusion );
touch $(DIRECTFB_DIR)/.configured touch $(DIRECTFB_DIR)/.configured
$(DIRECTFB_DIR)/.compiled: $(DIRECTFB_DIR)/.configured $(DIRECTFB_DIR)/.compiled: $(DIRECTFB_DIR)/.configured
$(MAKE) $(TARGET_CONFIGURE_OPTS) -C $(DIRECTFB_DIR) $(MAKE) PATH=$(STAGING_DIR)/usr/lib:$(PATH) \
$(TARGET_CONFIGURE_OPTS) \
-C $(DIRECTFB_DIR)
touch $(DIRECTFB_DIR)/.compiled touch $(DIRECTFB_DIR)/.compiled
$(STAGING_DIR)/usr/lib/libdirectfb.so: $(DIRECTFB_DIR)/.compiled $(STAGING_DIR)/usr/lib/libdirectfb.so: $(DIRECTFB_DIR)/.compiled
@ -72,7 +83,7 @@ $(TARGET_DIR)/usr/lib/libdirectfb.so: $(STAGING_DIR)/usr/lib/libdirectfb.so
$(TARGET_DIR)/usr/lib/libdirect.so \ $(TARGET_DIR)/usr/lib/libdirect.so \
$(TARGET_DIR)/usr/lib/libfusion.so $(TARGET_DIR)/usr/lib/libfusion.so
directfb: uclibc jpeg libpng freetype libsysfs $(TARGET_DIR)/usr/lib/libdirectfb.so directfb: uclibc jpeg libpng freetype libsysfs tslib $(TARGET_DIR)/usr/lib/libdirectfb.so
directfb-clean: directfb-clean:
$(MAKE) DESTDIR=$(TARGET_DIR) CC=$(TARGET_CC) -C $(DIRECTFB_DIR) uninstall $(MAKE) DESTDIR=$(TARGET_DIR) CC=$(TARGET_CC) -C $(DIRECTFB_DIR) uninstall