From 63adf05b5f4ad7c8e37caf1237efac6e67608ec4 Mon Sep 17 00:00:00 2001 From: Stephan Raue Date: Wed, 13 Oct 2010 18:05:22 +0200 Subject: [PATCH] new package: add initial package 'xf86-video-nouveau' Signed-off-by: Stephan Raue --- packages/x11/driver/xf86-video-nouveau/build | 14 ++++++++++++++ packages/x11/driver/xf86-video-nouveau/install | 6 ++++++ packages/x11/driver/xf86-video-nouveau/meta | 14 ++++++++++++++ 3 files changed, 34 insertions(+) create mode 100755 packages/x11/driver/xf86-video-nouveau/build create mode 100755 packages/x11/driver/xf86-video-nouveau/install create mode 100644 packages/x11/driver/xf86-video-nouveau/meta diff --git a/packages/x11/driver/xf86-video-nouveau/build b/packages/x11/driver/xf86-video-nouveau/build new file mode 100755 index 0000000000..a997429836 --- /dev/null +++ b/packages/x11/driver/xf86-video-nouveau/build @@ -0,0 +1,14 @@ +#!/bin/sh + +. config/options + +cd $PKG_BUILD +./configure --host=$TARGET_NAME \ + --build=$HOST_NAME \ + --prefix=/usr \ + --sysconfdir=/etc \ + --disable-static \ + --enable-shared \ + --with-xorg-module-dir=$XORG_PATH_MODULES + +make diff --git a/packages/x11/driver/xf86-video-nouveau/install b/packages/x11/driver/xf86-video-nouveau/install new file mode 100755 index 0000000000..b514a03716 --- /dev/null +++ b/packages/x11/driver/xf86-video-nouveau/install @@ -0,0 +1,6 @@ +#!/bin/sh + +. config/options + +mkdir -p $INSTALL/$XORG_PATH_MODULES/drivers + cp $PKG_BUILD/src/.libs/*_drv.so $INSTALL/$XORG_PATH_MODULES/drivers diff --git a/packages/x11/driver/xf86-video-nouveau/meta b/packages/x11/driver/xf86-video-nouveau/meta new file mode 100644 index 0000000000..5b7c07b333 --- /dev/null +++ b/packages/x11/driver/xf86-video-nouveau/meta @@ -0,0 +1,14 @@ +PKG_NAME="xf86-video-nouveau" +PKG_VERSION="20101011" +PKG_REV="1" +PKG_ARCH="i386 x86_64" +PKG_LICENSE="OSS" +PKG_SITE="http://www.x.org/" +PKG_URL="http://sources.openelec.tv/svn/$PKG_NAME-$PKG_VERSION.tar.bz2" +PKG_DEPENDS="libXrandr libXrender libdrm libXext libpciaccess udev" +PKG_BUILD_DEPENDS="toolchain libXrandr libXrender libdrm libXext libpciaccess udev xorg-server" +PKG_PRIORITY="optional" +PKG_SECTION="x11/driver" +PKG_SHORTDESC="xf86-video-nouveau: Nouveau display driver (experimental)" +PKG_LONGDESC="This driver for the X.Org X server (see xserver-xorg for a further description) provides support for NVIDIA Riva, TNT, GeForce, and Quadro cards. Although the nouveau project aims to provide full 3D support it is not yet complete, and these packages do not include any 3D support. Users requiring 3D support should use the non-free "nvidia" driver." +PKG_IS_ADDON="no"