b7f05445c0
It has been common practice to have one or more URLs at the end of the ports' pkg-descr files, one per line and prefixed with "WWW:". These URLs should point at a project website or other relevant resources. Access to these URLs required processing of the pkg-descr files, and they have often become stale over time. If more than one such URL was present in a pkg-descr file, only the first one was tarnsfered into the port INDEX, but for many ports only the last line did contain the port specific URL to further information. There have been several proposals to make a project URL available as a macro in the ports' Makefiles, over time. This commit implements such a proposal and moves one of the WWW: entries of each pkg-descr file into the respective port's Makefile. A heuristic attempts to identify the most relevant URL in case there is more than one WWW: entry in some pkg-descr file. URLs that are not moved into the Makefile are prefixed with "See also:" instead of "WWW:" in the pkg-descr files in order to preserve them. There are 1256 ports that had no WWW: entries in pkg-descr files. These ports will not be touched in this commit. The portlint port has been adjusted to expect a WWW entry in each port Makefile, and to flag any remaining "WWW:" lines in pkg-descr files as deprecated. Approved by: portmgr (tcberner)
48 lines
1.2 KiB
Makefile
48 lines
1.2 KiB
Makefile
PORTNAME= xorg-apps
|
|
PORTVERSION= 7.7
|
|
PORTREVISION= 4
|
|
CATEGORIES= x11
|
|
|
|
MAINTAINER= x11@FreeBSD.org
|
|
COMMENT= X.org apps meta-port
|
|
WWW= https://www.x.org/
|
|
|
|
COMPONENTS= appres bitmap xf86dga:dga iceauth \
|
|
x11-fonts/mkfontscale:mkfontscale sessreg \
|
|
setxkbmap smproxy x11perf xauth xbacklight xcalc \
|
|
xcmsdb xconsole xcursorgen xdpyinfo xdriinfo xev xgamma xgc \
|
|
xhost xinput xkbcomp xkbevd xkbutils:xkbvleds xkill \
|
|
xlsatoms xlsclients xmodmap xpr xprop xrandr xrdb \
|
|
xrefresh xset xsetroot xvinfo xwd xwininfo \
|
|
xwud xmessage
|
|
|
|
# These three are added for convenience purposes only.
|
|
COMPONENTS+= x11-wm/twm:twm x11-clocks/xclock:xclock xinit xterm
|
|
|
|
USES= metaport
|
|
|
|
.for comp in ${COMPONENTS}
|
|
OPTIONS_DEFINE+= ${comp:C/:.*//:C/.*\///:tu}
|
|
OPTIONS_DEFAULT+= ${comp:C/:.*//:C/.*\///:tu}
|
|
${comp:C/:.*//:C/.*\///:tu}_DESC= Install ${comp:C/:.*//:C/.*\///} application
|
|
.endfor
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
.for comp in ${COMPONENTS}
|
|
. if ${PORT_OPTIONS:M${comp:C/:.*//:C/.*\///:tu}}
|
|
. if ${comp:M*\:*}==""
|
|
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}:${port}
|
|
. endif
|
|
.endfor
|
|
|
|
.include <bsd.port.mk>
|