diff options
author | nia <nia@pkgsrc.org> | 2021-07-02 17:04:09 +0000 |
---|---|---|
committer | nia <nia@pkgsrc.org> | 2021-07-02 17:04:09 +0000 |
commit | 94157a74bab6b06969a00d890f535f1bbf0b19bf (patch) | |
tree | 7ce4e3bb89370ae9e1e5a8b420bac8b9447dc912 /meta-pkgs | |
parent | 6eef8f777f26f7f201f91134329c7316c9aaeb3d (diff) | |
download | pkgsrc-94157a74bab6b06969a00d890f535f1bbf0b19bf.tar.gz |
modular-xorg-drivers: don't build intel driver on non-x86
remove some drivers that no longer exist
Diffstat (limited to 'meta-pkgs')
-rw-r--r-- | meta-pkgs/modular-xorg-drivers/Makefile | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/meta-pkgs/modular-xorg-drivers/Makefile b/meta-pkgs/modular-xorg-drivers/Makefile index 028a55f851d..ccfc0db83b1 100644 --- a/meta-pkgs/modular-xorg-drivers/Makefile +++ b/meta-pkgs/modular-xorg-drivers/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.43 2020/01/18 23:32:56 rillig Exp $ +# $NetBSD: Makefile,v 1.44 2021/07/02 17:04:09 nia Exp $ DISTNAME= # empty PKGNAME= modular-xorg-drivers-1.19.0 @@ -49,18 +49,15 @@ DEPENDS+= xf86-video-glint-[0-9]*:../../x11/xf86-video-glint DEPENDS+= xf86-input-hyperpen-[0-9]*:../../x11/xf86-input-hyperpen DEPENDS+= xf86-video-i128-[0-9]*:../../x11/xf86-video-i128 DEPENDS+= xf86-video-i740-[0-9]*:../../x11/xf86-video-i740 +.if ${MACHINE_ARCH} == "i386" || ${MACHINE_ARCH} == "x86_64" DEPENDS+= xf86-video-intel-[0-9]*:../../x11/xf86-video-intel +.endif .if ${OPSYS} != "SunOS" DEPENDS+= xf86-input-joystick-[0-9]*:../../x11/xf86-input-joystick .endif DEPENDS+= xf86-video-mach64-[0-9]*:../../x11/xf86-video-mach64 DEPENDS+= xf86-video-mga-[0-9]*:../../x11/xf86-video-mga DEPENDS+= xf86-input-mutouch-[0-9]*:../../x11/xf86-input-mutouch -# does not work with 1.17 server -.if !empty(USE_OLD_MODULAR_XORG_SERVER:M[yY][eE][sS]) -DEPENDS+= xf86-video-modesetting-[0-9]*:../../x11/xf86-video-modesetting -DEPENDS+= xf86-video-newport-[0-9]*:../../x11/xf86-video-newport -.endif DEPENDS+= xf86-video-neomagic-[0-9]*:../../x11/xf86-video-neomagic DEPENDS+= xf86-video-nouveau-[0-9]*:../../x11/xf86-video-nouveau DEPENDS+= xf86-video-nv-[0-9]*:../../x11/xf86-video-nv |