2009-10-10 15:44:28 +03:00
#
# Copyright (C) 2008 OpenWrt.org
#
# 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
PKG_INSTALL := 1
PKG_FIXUP := libtool
i n c l u d e $( INCLUDE_DIR ) / p a c k a g e . m k
d e f i n e P a c k a g e / D i r e c t F B
TITLE:= DirectFB
SECTION:= libs
CATEGORY:= Libraries
URL:= http://directfb.org
2009-10-14 19:10:55 +03:00
DEPENDS:= +libpng +libjpeg
2009-10-10 15:44:28 +03:00
e n d e f
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-10-10 15:44:48 +03: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.
2009-10-10 15:44:28 +03:00
e n d e f
TARGET_LDFLAGS += " -Wl,-rpath-link= $( STAGING_DIR) /usr/lib "
2009-10-14 19:10:55 +03:00
CONFIGURE_CMD = ./autogen.sh
2009-10-10 15:44:28 +03:00
2009-10-14 19:10:55 +03:00
comma := ,
2009-10-10 15:44:28 +03:00
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 \
--disable-debug-support \
--disable-network \
--disable-mmx \
--disable-sse \
--enable-fbdev \
--disable-sdl \
--disable-vnc \
--enable-sysfs \
2009-10-14 19:10:55 +03:00
--with-inputdrivers= keyboard$( comma) linuxinput \
--with-gfxdrivers= none \
2009-10-10 15:44:28 +03:00
)
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 \
2009-10-11 02:29:46 +03:00
$( 1) /usr/lib/pkgconfig
2009-10-10 15:44:28 +03:00
$( CP) \
2009-10-14 19:10:55 +03:00
$( PKG_INSTALL_DIR) /usr/lib/* \
2009-10-10 15:44:28 +03:00
$( 1) /usr/lib/
$( CP) \
2009-10-14 19:10:55 +03:00
$( PKG_INSTALL_DIR) /usr/include/* \
2009-10-10 15:44:28 +03:00
$( 1) /usr/include/
$( CP) \
2009-10-11 02:29:46 +03:00
$( PKG_INSTALL_DIR) /usr/lib/pkgconfig \
$( 1) /usr/lib/
2009-10-10 15:44:28 +03:00
e n d e f
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
$( INSTALL_DIR) \
$( 1) /usr/bin \
$( 1) /usr/lib \
$( 1) /usr/lib/directfb-1.4-0-pure/interfaces/IDirectFBFont \
$( 1) /usr/lib/directfb-1.4-0-pure/interfaces/IDirectFBImageProvider \
$( 1) /usr/lib/directfb-1.4-0-pure/interfaces/IDirectFBVideoProvider \
$( 1) /usr/lib/directfb-1.4-0-pure/wm \
$( 1) /usr/lib/directfb-1.4-0-pure/systems \
2009-10-14 19:10:55 +03:00
$( 1) /usr/lib/directfb-1.4-0-pure/inputdrivers
2009-10-10 15:44:28 +03:00
$( CP) \
$( PKG_INSTALL_DIR) /usr/bin/* \
$( 1) /usr/bin/
$( CP) \
$( PKG_INSTALL_DIR) /usr/lib/lib{ direct,fusion} *.so* \
$( 1) /usr/lib/
$( CP) \
$( PKG_INSTALL_DIR) /usr/lib/directfb-1.4-0-pure/interfaces/IDirectFBFont/*.so* \
$( 1) /usr/lib/directfb-1.4-0-pure/interfaces/IDirectFBFont/
$( CP) \
$( PKG_INSTALL_DIR) /usr/lib/directfb-1.4-0-pure/interfaces/IDirectFBImageProvider/*.so* \
$( 1) /usr/lib/directfb-1.4-0-pure/interfaces/IDirectFBImageProvider/
$( CP) \
$( PKG_INSTALL_DIR) /usr/lib/directfb-1.4-0-pure/interfaces/IDirectFBVideoProvider/*.so* \
$( 1) /usr/lib/directfb-1.4-0-pure/interfaces/IDirectFBVideoProvider/
$( CP) \
$( PKG_INSTALL_DIR) /usr/lib/directfb-1.4-0-pure/wm/*.so* \
$( 1) /usr/lib/directfb-1.4-0-pure/wm/
$( CP) \
$( PKG_INSTALL_DIR) /usr/lib/directfb-1.4-0-pure/systems/*.so* \
$( 1) /usr/lib/directfb-1.4-0-pure/systems/
$( CP) \
$( PKG_INSTALL_DIR) /usr/lib/directfb-1.4-0-pure/inputdrivers/*.so* \
$( 1) /usr/lib/directfb-1.4-0-pure/inputdrivers/
e n d e f
$( eval $ ( call BuildPackage ,DirectFB ) )