2009-11-12 00:49:33 +00:00
#
2010-02-19 01:20:44 +00:00
# Copyright (C) 2010 OpenWrt.org
2009-11-12 00:49:33 +00:00
#
# This is free software, licensed under the GNU General Public License v2.
# See /LICENSE for more information.
#
i n c l u d e $( TOPDIR ) / r u l e s . m k
PKG_NAME := DirectFB
PKG_VERSION := 1.4.2
PKG_RELEASE := 1
PKG_SOURCE := $( PKG_NAME) -$( PKG_VERSION) .tar.gz
PKG_SOURCE_URL := http://www.directfb.org/downloads/Core/DirectFB-1.4
2010-02-19 01:20:44 +00:00
PKG_MD5SUM := e4376c6c5b8e27d735edb7f62a7a8e86
2009-11-12 00:49:33 +00:00
PKG_FIXUP := libtool
2010-02-19 01:20:44 +00:00
PKG_INSTALL := 1
2009-11-12 00:49:33 +00:00
i n c l u d e $( INCLUDE_DIR ) / p a c k a g e . m k
2010-05-10 17:54:02 +00:00
d e f i n e P a c k a g e / d i r e c t f b
2009-11-12 00:49:33 +00:00
TITLE:= DirectFB
SECTION:= libs
CATEGORY:= Libraries
URL:= http://directfb.org
DEPENDS:= +libpng +libjpeg +libpthread +libfreetype
e n d e f
2010-05-10 17:54:02 +00:00
d e f i n e P a c k a g e / d i r e c t f b / d e s c r i p t i o n
2009-11-12 00:49:33 +00:00
DirectFB is a thin library that provides hardware graphics acceleration, input device handling and abstraction, integrated windowing system with support for translucent windows and multiple display layers, not only on top of the Linux Framebuffer Device. It is a complete hardware abstraction layer with software fallbacks for every graphics operation that is not supported by the underlying hardware.
e n d e f
TARGET_LDFLAGS += " -Wl,-rpath-link= $( STAGING_DIR) /usr/lib "
CONFIGURE_CMD = ./autogen.sh
d e f i n e F e a t u r e / D i r e c t F B
TARGET_NAME:= drawing-backend
TARGET_TITLE:= Drawing Backend
NAME:= DirectFB
e n d e f
d e f i n e B u i l d / C o n f i g u r e
$( call Build/Configure/Default, \
--disable-osx \
--disable-x11 \
--enable-debug-support \
--disable-network \
--disable-mmx \
--disable-sse \
--enable-fbdev \
--disable-sdl \
--disable-vnc \
--enable-sysfs \
2009-12-11 08:13:33 +00:00
--with-inputdrivers= linuxinput \
2009-11-12 00:49:33 +00:00
--with-gfxdrivers= none \
)
e n d e f
d e f i n e B u i l d / I n s t a l l D e v
$( INSTALL_DIR) \
$( 1) /usr/include \
$( 1) /usr/lib \
$( 1) /usr/lib/pkgconfig
$( CP) \
$( PKG_INSTALL_DIR) /usr/lib/* \
$( 1) /usr/lib/
$( CP) \
$( PKG_INSTALL_DIR) /usr/include/* \
$( 1) /usr/include/
$( CP) \
$( PKG_INSTALL_DIR) /usr/lib/pkgconfig \
$( 1) /usr/lib/
e n d e f
2010-05-10 17:54:02 +00:00
d e f i n e P a c k a g e / d i r e c t f b / i n s t a l l
2009-11-12 00:49:33 +00:00
$( INSTALL_DIR) \
$( 1) /usr/bin \
$( 1) /usr/lib \
2010-08-25 11:00:48 +00:00
$( 1) /usr/share/directfb-1.4.2 \
2009-11-12 00:49:33 +00:00
$( 1) /usr/lib/directfb-1.4-0/interfaces/IDirectFBFont \
$( 1) /usr/lib/directfb-1.4-0/interfaces/IDirectFBImageProvider \
$( 1) /usr/lib/directfb-1.4-0/interfaces/IDirectFBVideoProvider \
$( 1) /usr/lib/directfb-1.4-0/wm \
$( 1) /usr/lib/directfb-1.4-0/systems \
$( 1) /usr/lib/directfb-1.4-0/inputdrivers
$( CP) \
$( PKG_INSTALL_DIR) /usr/bin/* \
$( 1) /usr/bin/
2010-08-25 11:00:48 +00:00
$( CP) \
$( PKG_INSTALL_DIR) /usr/share/directfb-1.4.2/* \
$( 1) /usr/share/directfb-1.4.2/
2009-11-12 00:49:33 +00:00
$( CP) \
$( PKG_INSTALL_DIR) /usr/lib/lib{ direct,fusion} *.so* \
$( 1) /usr/lib/
$( CP) \
$( PKG_INSTALL_DIR) /usr/lib/directfb-1.4-0/interfaces/IDirectFBFont/*.so* \
$( 1) /usr/lib/directfb-1.4-0/interfaces/IDirectFBFont/
$( CP) \
$( PKG_INSTALL_DIR) /usr/lib/directfb-1.4-0/interfaces/IDirectFBImageProvider/*.so* \
$( 1) /usr/lib/directfb-1.4-0/interfaces/IDirectFBImageProvider/
$( CP) \
$( PKG_INSTALL_DIR) /usr/lib/directfb-1.4-0/interfaces/IDirectFBVideoProvider/*.so* \
$( 1) /usr/lib/directfb-1.4-0/interfaces/IDirectFBVideoProvider/
$( CP) \
$( PKG_INSTALL_DIR) /usr/lib/directfb-1.4-0/wm/*.so* \
$( 1) /usr/lib/directfb-1.4-0/wm/
$( CP) \
$( PKG_INSTALL_DIR) /usr/lib/directfb-1.4-0/systems/*.so* \
$( 1) /usr/lib/directfb-1.4-0/systems/
$( CP) \
$( PKG_INSTALL_DIR) /usr/lib/directfb-1.4-0/inputdrivers/*.so* \
$( 1) /usr/lib/directfb-1.4-0/inputdrivers/
e n d e f
$( eval $ ( call Feature ,DirectFB ) )
2010-05-10 17:54:02 +00:00
$( eval $ ( call BuildPackage ,directfb ) )