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"