diff options
author | madpilot <madpilot@FreeBSD.org> | 2017-12-19 05:25:57 +0800 |
---|---|---|
committer | madpilot <madpilot@FreeBSD.org> | 2017-12-19 05:25:57 +0800 |
commit | 84d7b20c0de5352bd89777f1597de8ba4a749f55 (patch) | |
tree | 415b969dc7b7131946c1694d69be740862d280d3 /multimedia/libva | |
parent | 94add7a076bbdbfb2bec1ef1043032a9f2534ba4 (diff) | |
download | freebsd-ports-gnome-84d7b20c0de5352bd89777f1597de8ba4a749f55.tar.gz freebsd-ports-gnome-84d7b20c0de5352bd89777f1597de8ba4a749f55.tar.zst freebsd-ports-gnome-84d7b20c0de5352bd89777f1597de8ba4a749f55.zip |
Make libva and it's drivers install modules in the standard location
PREFIX/lib/dri.
This is the same location where other ports(mesa) install drivers,
so that everything works out of the box.
PR: 224424
Submitted by: Greg V <greg@unrelenting.technology>
Diffstat (limited to 'multimedia/libva')
-rw-r--r-- | multimedia/libva/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/multimedia/libva/Makefile b/multimedia/libva/Makefile index e49273316a5e..ebc7bd0042be 100644 --- a/multimedia/libva/Makefile +++ b/multimedia/libva/Makefile @@ -2,6 +2,7 @@ PORTNAME= libva PORTVERSION= 2.0.0 +PORTREVISION= 1 CATEGORIES= multimedia MAINTAINER= madpilot@FreeBSD.org @@ -41,8 +42,7 @@ WAYLAND_LIB_DEPENDS= libwayland-client.so:graphics/wayland WAYLAND_BUILD_DEPENDS= gsed:textproc/gsed post-patch: .SILENT - ${REINPLACE_CMD} -e 's|\($$libdir\)/dri|\1/va|' \ - -e 's|$${libdir}/\(pkgconfig\)|${PREFIX}/libdata/\1|' \ + ${REINPLACE_CMD} -e 's|$${libdir}/\(pkgconfig\)|${PREFIX}/libdata/\1|' \ ${WRKSRC}/configure.ac ${REINPLACE_CMD} '/^export VA_HEADER_/d' \ ${WRKSRC}/doc/Makefile.am |