diff --git a/metadata/categories.conf b/metadata/categories.conf index ab14a32..209eabe 100644 --- a/metadata/categories.conf +++ b/metadata/categories.conf @@ -3,3 +3,4 @@ dev-libs sys-apps sys-libs x11-dri +x11-drivers diff --git a/packages/x11-dri/gallium/gallium-scm.exheres-0 b/packages/x11-dri/gallium/gallium-scm.exheres-0 index 744563e..e8ba208 100644 --- a/packages/x11-dri/gallium/gallium-scm.exheres-0 +++ b/packages/x11-dri/gallium/gallium-scm.exheres-0 @@ -1,8 +1,9 @@ +# Copyright (c) 2008 Daniel Mierswa +# Distributed under the terms of the GNU General Public License v2 SCM_REPOSITORY="git://anongit.freedesktop.org/git/nouveau/mesa" -SCM_TYPE="git" SCM_BRANCH="gallium-0.1" -require eutils multilib scm toolchain-funcs +require eutils multilib scm-git toolchain-funcs SUMMARY="nouveau mesa driver" DESCRIPTION="The nouveau driver for the mesa OpenGL implementation." diff --git a/packages/x11-drivers/drm/drm-scm.exheres-0 b/packages/x11-drivers/drm/drm-scm.exheres-0 new file mode 100644 index 0000000..86b2756 --- /dev/null +++ b/packages/x11-drivers/drm/drm-scm.exheres-0 @@ -0,0 +1,8 @@ +# Copyright (c) 2008 Daniel Mierswa +# Distributed under the terms of the GNU General Public License v2 + +SCM_REPOSITORY="git://anongit.freedesktop.org/git/mesa/drm" +require scm-git drm + +SLOT="0" +PLATFORMS="~amd64" diff --git a/packages/x11-drivers/drm/drm.exlib b/packages/x11-drivers/drm/drm.exlib new file mode 100644 index 0000000..dd4674f --- /dev/null +++ b/packages/x11-drivers/drm/drm.exlib @@ -0,0 +1,28 @@ +# Copyright (c) 2008 Daniel Mierswa +# Distributed under the terms of the GNU General Public License v2 + +require toolchain-funcs + +SUMMARY="DRM and nouveau kernel modules" +HOMEPAGE="http://dri.freedesktop.org/wiki/" + +LICENCES="FIXME" +MYOPTIONS="" + +DEPENDENCIES=" + build: + =x11-dri/libdrm-${PV} +" + +WORK="${WORK}/linux-core" + +DEFAULT_SRC_COMPILE_PARAMS=( + DRM_MODULES="nouveau.o drm.o" + ARCH="$(tc-arch-kernel)" +) + +DEFAULT_SRC_INSTALL_PARAMS=( + DRM_MODULES="nouveau.o drm.o" + ARCH="$(tc-arch-kernel)" + INSTALL_MOD_PATH="${IMAGE}" +)