1
0
forked from ports/opt

libdrm: initial import

This commit is contained in:
Nick Steeves 2006-02-11 11:32:52 +00:00
parent 7b0a12b042
commit d3a8d29d76
3 changed files with 42 additions and 0 deletions

24
libdrm/.footprint Normal file
View File

@ -0,0 +1,24 @@
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/include/
drwxr-xr-x root/root usr/include/drm/
-rw-r--r-- root/root usr/include/drm/drm.h
-rw-r--r-- root/root usr/include/drm/drm_sarea.h
-rw-r--r-- root/root usr/include/drm/i915_drm.h
-rw-r--r-- root/root usr/include/drm/mach64_drm.h
-rw-r--r-- root/root usr/include/drm/mga_drm.h
-rw-r--r-- root/root usr/include/drm/r128_drm.h
-rw-r--r-- root/root usr/include/drm/r300_reg.h
-rw-r--r-- root/root usr/include/drm/radeon_drm.h
-rw-r--r-- root/root usr/include/drm/savage_drm.h
-rw-r--r-- root/root usr/include/drm/sis_drm.h
-rw-r--r-- root/root usr/include/drm/via_3d_reg.h
-rw-r--r-- root/root usr/include/drm/via_drm.h
-rw-r--r-- root/root usr/include/xf86drm.h
drwxr-xr-x root/root usr/lib/
-rw-r--r-- root/root usr/lib/libdrm.a
-rwxr-xr-x root/root usr/lib/libdrm.la
lrwxrwxrwx root/root usr/lib/libdrm.so -> libdrm.so.2.0.0
lrwxrwxrwx root/root usr/lib/libdrm.so.2 -> libdrm.so.2.0.0
-rwxr-xr-x root/root usr/lib/libdrm.so.2.0.0
drwxr-xr-x root/root usr/lib/pkgconfig/
-rw-r--r-- root/root usr/lib/pkgconfig/libdrm.pc

1
libdrm/.md5sum Normal file
View File

@ -0,0 +1 @@
9d1aab104eb757ceeb2c1a6d38d57411 libdrm-2.0.tar.gz

17
libdrm/Pkgfile Normal file
View File

@ -0,0 +1,17 @@
# Description: Userspace interface to kernel DRM services
# URL: http://dri.freedesktop.org/
# Maintainer: sten, nick dot steeves at shaw dot ca
# Packager:
name=libdrm
version=2.0
release=1
source=(http://dri.freedesktop.org//libdrm/libdrm-2.0.tar.gz)
build() {
cd $name-$version
./configure --prefix=/usr \
--disable-debug
make
make DESTDIR=$PKG install
}