# HG changeset patch # User Christophe Lincoln # Date 1398125318 -7200 # Node ID 94128ce5fcfd01e1d9adabf9eee233beb96019e9 # Parent 3ab4ece3450e63e4e1f0f253524390e7fd3dacc0 Add: xorg-xf86-video-fbturbo (improved fbdev driver, not realy faster on i486 but nice on ARM!!! diff -r 3ab4ece3450e -r 94128ce5fcfd xorg-xf86-video-fbturbo/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/xorg-xf86-video-fbturbo/receipt Tue Apr 22 02:08:38 2014 +0200 @@ -0,0 +1,39 @@ +# SliTaz package receipt. + +PACKAGE="xorg-xf86-video-fbturbo" +VERSION="0.2.0" +CATEGORY="x-window" +SHORT_DESC="Xorg DDX driver for ARM devices (Allwinner, RPi and others)." +MAINTAINER="pankso@slitaz.org" +LICENSE="MIT" +SOURCE="xf86-video-fbturbo" +TARBALL="$SOURCE-$VERSION.tar.gz" +WEB_SITE="https://github.com/ssvb/xf86-video-fbturbo" +WGET_URL="$WEB_SITE/archive/$VERSION.tar.gz" +HOST_ARCH="i486 arm" + +# 0.4.0 ---> fatal error: dri2.h: No such file or directory +# +# We must have DRI support into Xorg server. This is not the case +# actually because I stripped down Xorg build since it mesa are not +# ported yet. + +BUILD_DEPENDS="xorg-server-dev" + +# Rules to configure and make the package. +compile_rules() +{ + autoreconf -vi + ./configure \ + --with-xorg-module-dir=/usr/lib/X11/modules \ + $CONFIGURE_ARGS && + make && make install +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr/lib/X11/modules/drivers/ + cp -a $install/usr/lib/X11/modules/drivers/*.so \ + $fs/usr/lib/X11/modules/drivers/ +}