diff options
author | zeising <zeising@FreeBSD.org> | 2018-08-01 02:41:30 +0800 |
---|---|---|
committer | zeising <zeising@FreeBSD.org> | 2018-08-01 02:41:30 +0800 |
commit | a53df5e7ca6da97d66d740eac2dafb2f671ba021 (patch) | |
tree | 71f4780cd34e184b043831e0db99b92f22e0da0d /emulators/virtualbox-ose-additions | |
parent | 31723f2783ac216daf5099cb46ec62951738bf9d (diff) | |
download | freebsd-ports-gnome-a53df5e7ca6da97d66d740eac2dafb2f671ba021.tar.gz freebsd-ports-gnome-a53df5e7ca6da97d66d740eac2dafb2f671ba021.tar.zst freebsd-ports-gnome-a53df5e7ca6da97d66d740eac2dafb2f671ba021.zip |
Switch to xorgproto instead of individual packages
Upstream used to distribute protocol headers as separate packages, but has
decided to merge those to a common package, named xorgproto. This update
tracks that change.
* Add a new port, x11/xorgproto, with are protocol headers for xorg.
* Hook the new protocol port to the build and to infrastructure in
bsd.xorg.mk.
* Update all ports with a dependency on any of the old *proto packages to
instead depend on xorgproto. Bump portrevision.
* Delete the old *proto packages, update MOVED.
PR: 230023
Submitted by: zeising
Approved by: portmgr (antoine)
exp-run by: antoine
Diffstat (limited to 'emulators/virtualbox-ose-additions')
-rw-r--r-- | emulators/virtualbox-ose-additions/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/emulators/virtualbox-ose-additions/Makefile b/emulators/virtualbox-ose-additions/Makefile index 2789168e0867..a3992afa901f 100644 --- a/emulators/virtualbox-ose-additions/Makefile +++ b/emulators/virtualbox-ose-additions/Makefile @@ -3,7 +3,7 @@ PORTNAME= virtualbox-ose PORTVERSION= 5.2.16 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= emulators MASTER_SITES= http://download.virtualbox.org/virtualbox/${PORTVERSION}/ PKGNAMESUFFIX?= -additions @@ -102,7 +102,7 @@ VBOX_LIBS= VBoxEGL.so \ .if ${PORT_OPTIONS:MX11} BUILD_DEPENDS+= ${LOCALBASE}/libdata/pkgconfig/xorg-server.pc:x11-servers/xorg-server RUN_DEPENDS+= xrandr:x11/xrandr -USE_XORG+= inputproto x11 xcursor xext xmu xorg-server xrandr xt +USE_XORG+= xorgproto x11 xcursor xext xmu xorg-server xrandr xt USES+= pkgconfig VBOX_WITH_X11= 1 XORG_DRV_ABI= pkgconf --modversion xorg-server | \ |