diff options
Diffstat (limited to 'xorg/Pkgfile')
-rw-r--r-- | xorg/Pkgfile | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/xorg/Pkgfile b/xorg/Pkgfile index 244bfd908..ca49d4225 100644 --- a/xorg/Pkgfile +++ b/xorg/Pkgfile @@ -9,10 +9,11 @@ name=xorg version=1.12.2 release=1 section="driver" -source=($section-$version.md5) +source=($section-$version.md5 + ati-fix-crtc-dpms-state-check.patch) build() { - unset MAKEFLAGS +# unset MAKEFLAGS for package in $(grep -v '^#' ${section}-${version}.md5 |cut -d " " -f 3) do [[ -r $PKGMK_SOURCE_DIR/$package ]] || wget http://xorg.freedesktop.org/releases/individual/${section}/$package -O $PKGMK_SOURCE_DIR/$package @@ -22,6 +23,10 @@ build() { tar -xf $package pushd $packagedir + if [ "${packagedir}" == "xf86-video-ati-6.14.5" ]; then + patch -p1 < $SRC/ati-fix-crtc-dpms-state-check.patch + fi + ./configure $XORG_CONFIG \ --with-xorg-module-dir=$XORG_PREFIX/lib/X11/modules make |