From f063c36d6255bbd6efebd37e6cb99df410fc8b34 Mon Sep 17 00:00:00 2001 From: Kevin Mihelich Date: Sat, 6 Jan 2018 20:04:58 +0000 Subject: [PATCH] removed community/directfb --- community/directfb/PKGBUILD | 44 ------------------------------------- 1 file changed, 44 deletions(-) delete mode 100644 community/directfb/PKGBUILD diff --git a/community/directfb/PKGBUILD b/community/directfb/PKGBUILD deleted file mode 100644 index fceb321a9..000000000 --- a/community/directfb/PKGBUILD +++ /dev/null @@ -1,44 +0,0 @@ -# $Id: PKGBUILD 90017 2013-05-06 19:36:41Z foutrelis $ -# Maintainer: Jaroslav Lichtblau -# Maintainer: Eric BĂ©langer - -# ALARM: Kevin Mihelich -# - disable mesa, add rules for our architectures - -pkgname=directfb -pkgver=1.7.7 -pkgrel=2 -pkgdesc="A thin library that provides hardware graphics acceleration, input device handling and abstraction, integrated windowing system on top of the Linux Framebuffer Device" -arch=('i686' 'x86_64') -url="http://www.directfb.org" -license=('LGPL') -depends=('gcc-libs' 'libjpeg' 'sdl' 'libpng' 'freetype2') -depends_armv6h=('raspberrypi-firmware-tools') -#source=(http://www.directfb.org/downloads/Core/DirectFB-${pkgver%.*}/DirectFB-${pkgver}.tar.gz) -source=(http://sources.webos-ports.org/downloads/DirectFB-$pkgver.tar.gz) -sha1sums=('205d824906906303db9b096cc2d3bea0662e8860') - -build() { - cd DirectFB-${pkgver} - - if [[ $CARCH == 'armv7h' ]]; then - DRIVERS="omap,pvr2d" - elif [[ $CARCH == 'armv6h' ]]; then - export EGL_CFLAGS="-I/opt/vc/include -I/opt/vc/include/interface/vcos/pthreads -I/opt/vc/include/interface/vmcs_host/linux" - export EGL_LIBS="-lEGL -lGLESv2 -lbcm_host -lvcos -L/opt/vc/lib" - DRIVERS="gles2 --enable-egl" - sed -i 's/-Werror-implicit-function-declaration//g' configure - elif [[ $CARCH == 'arm' ]]; then - DRIVERS="pxa3xx" - fi - - ./configure --prefix=/usr --sysconfdir=/etc --enable-static --disable-silent-rules \ - --enable-zlib --enable-x11 --enable-sdl --disable-vnc --disable-osx \ - --enable-video4linux2 --enable-fbdev --disable-mesa --with-gfxdrivers=$DRIVERS - make -} - -package() { - cd DirectFB-${pkgver} - make DESTDIR="${pkgdir}" install -}