summaryrefslogtreecommitdiffstats
path: root/meta-emenlow/packages/libdrm-poulsbo/libdrm-poulsbo_2.3.0.bb
diff options
context:
space:
mode:
authorJeff Dike <jdike@x86_64.user-mode-linux.org>2010-07-22 17:30:49 -0400
committerRichard Purdie <rpurdie@linux.intel.com>2010-07-22 23:18:26 +0100
commit833390e533ee997600f37ec87192f05e49e26db3 (patch)
tree670a6ff928f75bfc5e74a753e45acb64d97f72f7 /meta-emenlow/packages/libdrm-poulsbo/libdrm-poulsbo_2.3.0.bb
parentb18f1216b0d3654f7b6fb3752eda1dd82a294f3d (diff)
downloadpoky-833390e533ee997600f37ec87192f05e49e26db3.tar.gz
libdrm-poulsbo: Provide libdrm-poulsbo instead of libdrm
In order to allow this package to be build alongside the regular libdrm, it was made to export libdrm-poulsbo and its users make to use libdrm-poulsbo instead of libdrm. libva and xserver-psb were make to build against libdrm-poulsbo. While I was in there, I changed a couple of misspellings of COMPATIBLE and removed a bunch of ';patch=1'. Signed-off-by: Jeff Dike <jdike@linux.intel.com>
Diffstat (limited to 'meta-emenlow/packages/libdrm-poulsbo/libdrm-poulsbo_2.3.0.bb')
-rw-r--r--meta-emenlow/packages/libdrm-poulsbo/libdrm-poulsbo_2.3.0.bb12
1 files changed, 7 insertions, 5 deletions
diff --git a/meta-emenlow/packages/libdrm-poulsbo/libdrm-poulsbo_2.3.0.bb b/meta-emenlow/packages/libdrm-poulsbo/libdrm-poulsbo_2.3.0.bb
index 8a06dce8cc..3541501e9c 100644
--- a/meta-emenlow/packages/libdrm-poulsbo/libdrm-poulsbo_2.3.0.bb
+++ b/meta-emenlow/packages/libdrm-poulsbo/libdrm-poulsbo_2.3.0.bb
@@ -1,14 +1,16 @@
1DESCRIPTION = "Userspace interface to kernel DRM services" 1DESCRIPTION = "Userspace interface to kernel DRM services"
2LICENSE = "MIT" 2LICENSE = "MIT"
3LIC_FILES_CHKSUM = "file://MIT_License.txt;md5=732825ecdcf420261531d935fcd914a7" 3LIC_FILES_CHKSUM = "file://MIT_License.txt;md5=732825ecdcf420261531d935fcd914a7"
4PR="r1" 4PR="r2"
5 5
6PROVIDES = "libdrm-poulsbo libdrm drm" 6PROVIDES = "libdrm-poulsbo"
7 7
8inherit autotools pkgconfig 8inherit autotools pkgconfig
9 9
10SRC_URI = "https://launchpad.net/~gma500/+archive/ppa/+files/libdrm-poulsbo_2.3.0-1ubuntu0sarvatt4~1004um1ubuntu1.tar.gz" 10SRC_URI = "https://launchpad.net/~gma500/+archive/ppa/+files/libdrm-poulsbo_2.3.0-1ubuntu0sarvatt4~1004um1ubuntu1.tar.gz \
11 file://libdrm-poulsbo.patch"
11 12
12do_install_append() { 13do_configure_prepend() {
13 cp ${D}/${libdir}/pkgconfig/libdrm.pc ${D}/${libdir}/pkgconfig/libdrm-poulsbo.pc 14 sed -e 's/-ldrm/-ldrm-poulsbo/' -e 's/libdrm/libdrm-poulsbo/' \
15 < ${S}/libdrm.pc.in > ${S}/libdrm-poulsbo.pc.in
14} 16}