2007-05-19 20:36:56 +00:00
|
|
|
# $FreeBSD$
|
|
|
|
|
|
|
|
PORTNAME= xorg-apps
|
The FreeBSD x11 team proudly presents
an zeising, kwm, miwi, bapt, eadler production:
Xorg 7.7
Starring:
xserver 1.12.4 (new xorg only)
Mesa 8.0.4, including libGL, libGLU and dri (new xorg only)
libX11 1.5.0
libxcb 1.9
libdrm 2.4.42 (new xorg only)
freeglut 2.8.1
Also starring:
Updates to drivers and other libraries and utilities
Additional notes:
Change pkgconf to be a build dependency.
Add a new USE_XORG, xcb, to depend on libxcb and update all ports to use
this.
Trim makefile headers.
Take maintanership of x11/xcb-proto, ok'd by ashish.
If you are running WITH_NEW_XORG=, you need to rebuild all installed
drivers, see UPDATING for more information.
Various fixes to make ports compile.
PR: ports/177942
Exp-run by: miwi
Approved by: portmgr (miwi)
Thanks to all who helped testing!
2013-05-25 14:37:02 +00:00
|
|
|
PORTVERSION= 7.7
|
2007-05-19 20:36:56 +00:00
|
|
|
CATEGORIES= x11
|
|
|
|
MASTER_SITES= # none
|
|
|
|
DISTFILES= # none
|
|
|
|
EXTRACT_ONLY= # none
|
|
|
|
|
|
|
|
MAINTAINER= x11@FreeBSD.org
|
|
|
|
COMMENT= X.org apps meta-port
|
|
|
|
|
2013-05-02 17:31:21 +00:00
|
|
|
.MAKE.FreeBSD_UL= yes
|
|
|
|
|
2009-01-23 16:28:36 +00:00
|
|
|
COMPONENTS= appres bitmap xf86dga:dga iceauth luit \
|
|
|
|
x11-fonts/mkfontdir:mkfontdir \
|
|
|
|
x11-fonts/mkfontscale:mkfontscale sessreg \
|
|
|
|
setxkbmap smproxy x11perf xauth xbacklight xcalc \
|
2013-02-03 22:24:52 +00:00
|
|
|
xcmsdb xconsole xcursorgen xdpyinfo xdriinfo xev xgamma xgc \
|
2009-01-23 16:28:36 +00:00
|
|
|
xhost xinput xkbcomp xkbevd xkbutils:xkbvleds xkill \
|
|
|
|
xlsatoms xlsclients xmodmap xpr xprop xrandr xrdb \
|
|
|
|
xrefresh xset xsetmode xsetroot xvinfo xwd xwininfo \
|
2011-02-25 16:52:50 +00:00
|
|
|
xwud xmessage
|
2007-07-02 18:02:22 +00:00
|
|
|
|
2009-01-23 19:31:36 +00:00
|
|
|
# These three are added for convenience purposes only.
|
2010-12-31 08:57:57 +00:00
|
|
|
COMPONENTS+= x11-wm/twm:twm x11-clocks/xclock:xclock xinit xterm
|
2009-01-23 19:31:36 +00:00
|
|
|
|
2007-05-19 20:36:56 +00:00
|
|
|
NO_BUILD= yes
|
|
|
|
|
|
|
|
do-install:
|
2013-12-16 11:11:09 +00:00
|
|
|
${MKDIR} ${STAGEDIR}${PREFIX}/libdata/xorg
|
|
|
|
${TOUCH} ${STAGEDIR}${PREFIX}/libdata/xorg/apps
|
2007-05-19 20:36:56 +00:00
|
|
|
|
2009-01-23 16:28:36 +00:00
|
|
|
.for comp in ${COMPONENTS}
|
2013-01-05 22:57:40 +00:00
|
|
|
OPTIONS_DEFINE+= ${comp:C/:.*//:C/.*\///:U}
|
|
|
|
OPTIONS_DEFAULT+= ${comp:C/:.*//:C/.*\///:U}
|
|
|
|
${comp:C/:.*//:C/.*\///:U}_DESC= Install ${comp:C/:.*//:C/.*\///} application
|
2009-01-23 16:28:36 +00:00
|
|
|
.endfor
|
|
|
|
|
2013-01-05 22:57:40 +00:00
|
|
|
.include <bsd.port.options.mk>
|
2009-01-23 16:28:36 +00:00
|
|
|
|
|
|
|
.for comp in ${COMPONENTS}
|
2013-01-07 13:14:45 +00:00
|
|
|
. if ${PORT_OPTIONS:M${comp:C/:.*//:C/.*\///:U}}
|
2013-05-02 22:10:11 +00:00
|
|
|
. if ${comp:M*\:*}==""
|
2009-01-23 16:28:36 +00:00
|
|
|
port=${comp}
|
|
|
|
check=${comp:C/.*\///} # doesn't work
|
|
|
|
. else
|
|
|
|
port=${comp:C/:.*//}
|
|
|
|
check=${comp:C/.*://}
|
|
|
|
. endif
|
|
|
|
. if ${port:M*/*}==""
|
|
|
|
port:=x11/${port}
|
|
|
|
. endif
|
|
|
|
RUN_DEPENDS:= ${RUN_DEPENDS} ${check}:${PORTSDIR}/${port}
|
|
|
|
. endif
|
|
|
|
.endfor
|
|
|
|
|
2013-01-05 22:57:40 +00:00
|
|
|
.include <bsd.port.mk>
|