CRUX PPC
A lightweight GNU/Linux distribution for PowerPC!
Subversion Repository
Parent Directory
|
Revision Log
Revision 2682 -
(show annotations)
Wed May 9 17:13:00 2012 UTC (13 months, 1 week ago) by acrux
File size: 581 byte(s)
Wed May 9 17:13:00 2012 UTC (13 months, 1 week ago) by acrux
File size: 581 byte(s)
libdrm: updated to 2.4.33
| 1 | # Description: Userspace interface to kernel DRM services |
| 2 | # URL: http://dri.freedesktop.org/ |
| 3 | # Maintainer: acrux, acrux at linuxmail dot org |
| 4 | # Depends on: libpthread-stubs |
| 5 | # PPC!=: |
| 6 | |
| 7 | name=libdrm |
| 8 | version=2.4.33 |
| 9 | release=1 |
| 10 | source=(http://dri.freedesktop.org/$name/$name-$version.tar.bz2 \ |
| 11 | pci0001.patch) |
| 12 | |
| 13 | build() { |
| 14 | cd $name-$version |
| 15 | # if your videocard is on PCI:0001 bus (e.g. on Pegasos2) |
| 16 | # patch -p0 -i $SRC/pci0001.patch |
| 17 | |
| 18 | ./configure --prefix=/usr --with-gnu-ld \ |
| 19 | --disable-intel --enable-udev \ |
| 20 | --enable-nouveau-experimental-api |
| 21 | |
| 22 | make |
| 23 | make DESTDIR=$PKG install |
| 24 | } |