diff --git a/x11/library/libva/actions.py b/x11/library/libva/actions.py
index fcaae9b387..f5545fc26e 100644
--- a/x11/library/libva/actions.py
+++ b/x11/library/libva/actions.py
@@ -7,11 +7,15 @@ from pisi.actionsapi import autotools
from pisi.actionsapi import pisitools
from pisi.actionsapi import get
+
+LIBDIR = "/usr/lib32" if get.buildTYPE() == "emul32" else "/usr/lib"
+
def setup():
autotools.autoreconf("-vif")
autotools.configure("--enable-glx \
+ --libdir=%s \
--enable-wayland \
- --disable-static")
+ --disable-static" % LIBDIR)
pisitools.dosed("libtool", " -shared ", " -Wl,-O1,--as-needed -shared ")
@@ -20,5 +24,7 @@ def build():
def install():
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
+ if get.buildTYPE() == "emul32":
+ return
pisitools.dodoc("COPYING")
diff --git a/x11/library/libva/pspec.xml b/x11/library/libva/pspec.xml
index 2d60705150..8ce28c60f6 100644
--- a/x11/library/libva/pspec.xml
+++ b/x11/library/libva/pspec.xml
@@ -12,7 +12,7 @@
library
Video Acceleration (VA) API for Linux
libva is a library providing the VA API video acceleration API.
- https://github.com/01org/libva/releases/download/2.9.0/libva-2.9.0.tar.bz2
+ https://github.com/intel/libva/archive/2.10.0.tar.gz
libdrm-devel
libXext-devel
@@ -82,6 +82,13 @@
+
+ 2021-01-28
+ 2.10.0
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
2020-10-01
2.9.0