mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-29 01:13:08 +00:00
47be7a61c9
If the old xorg stack is still needed, it is possible to add WITHOUT_NEW_XORG= to /etc/make.conf to get the old version. Update several xorg related ports, including: x11/libxcb 1.9.1 -> 1.9.3 graphics/libdrm 2.4.46 -> 2.4.50 x11/pixman 0.30.2 -> 0.32.4 x11/xkeyboard-config 2.9 -> 2.10.1 x11-drivers/xf86-input-keyboard 1.7.0 -> 1.8.0 Fix dissapearing cursor in xf86-video-vmware [2] Stagify all x11@-owned ports Bump portrevisions for xf86-* ports due to xserver version change. Fix fallout from updates where needed. Thanks to: all testersi, bdrewery and the FreeBSD x11@ team exp-run by: bdrewery [1] PR: ports/184684 [1], ports/181385 [2] Submitted by: Douglas Carmichael <dcarmich@dcarmichael.net> [2] Approved by: portmgr (bdrewery), core (jhb) [0]
60 lines
1.8 KiB
Makefile
60 lines
1.8 KiB
Makefile
# Created by: Eric Anholt <anholt@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= xorg
|
|
PORTVERSION= 7.7
|
|
CATEGORIES= x11
|
|
MASTER_SITES= # none
|
|
DISTFILES= # none
|
|
EXTRACT_ONLY= # none
|
|
|
|
MAINTAINER= x11@FreeBSD.org
|
|
COMMENT= X.Org complete distribution metaport
|
|
|
|
NO_BUILD= yes
|
|
NO_MTREE= yes
|
|
|
|
RUN_DEPENDS+= ${LOCALBASE}/libdata/pkgconfig/dri.pc:${PORTSDIR}/graphics/dri
|
|
|
|
# data
|
|
RUN_DEPENDS+= ${LOCALBASE}/libdata/pkgconfig/xbitmaps.pc:${PORTSDIR}/x11/xbitmaps \
|
|
${LOCALBASE}/lib/X11/icons/handhelds/cursors/X_cursor:${PORTSDIR}/x11-themes/xcursor-themes
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
# doc
|
|
.if ${PORT_OPTIONS:MDOCS}
|
|
RUN_DEPENDS+= ${LOCALBASE}/share/doc/xorg-docs/README.xml:${PORTSDIR}/x11/xorg-docs
|
|
.endif
|
|
|
|
# app, lib, font, driver
|
|
RUN_DEPENDS+= ${LOCALBASE}/libdata/xorg/apps:${PORTSDIR}/x11/xorg-apps \
|
|
${LOCALBASE}/libdata/xorg/libraries:${PORTSDIR}/x11/xorg-libraries \
|
|
${LOCALBASE}/libdata/xorg/fonts:${PORTSDIR}/x11-fonts/xorg-fonts \
|
|
${LOCALBASE}/libdata/xorg/drivers:${PORTSDIR}/x11-drivers/xorg-drivers
|
|
|
|
.if defined(XORG_COMPLETE)
|
|
RUN_DEPENDS+= Xnest:${PORTSDIR}/x11-servers/xorg-nestserver \
|
|
Xdmx:${PORTSDIR}/x11-servers/xorg-dmx \
|
|
Xvfb:${PORTSDIR}/x11-servers/xorg-vfbserver
|
|
.endif
|
|
|
|
do-install: # empty
|
|
|
|
pre-everything::
|
|
@${ECHO_MSG} "This is a meta-port, meaning that it just depends on its subparts of the port."
|
|
@${ECHO_MSG} "It won't build and install all the parts until you have typed make install"
|
|
@${ECHO_MSG} "This port does not ensure things are upgraded; use portupgrade if you want to"
|
|
@${ECHO_MSG} "upgrade X.Org. If you simply type 'make install' it may use over 2GB to build"
|
|
@${ECHO_MSG} "all of the subports. You can install the ports singly if you are low on space."
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if make(package)
|
|
.if !defined(DEPENDS_TARGET:Mpackage) || empty(DEPENDS_TARGET:Mpackage)
|
|
DEPENDS_TARGET="package"
|
|
.endif
|
|
.endif
|
|
|
|
.include <bsd.port.post.mk>
|