freebsd-ports/x11-drivers/xorg-drivers/Makefile
Stefan Eßer b7f05445c0 Add WWW entries to port Makefiles
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)
2022-09-07 23:10:59 +02:00

112 lines
2.2 KiB
Makefile

PORTNAME= xorg-drivers
PORTVERSION= 7.7
PORTREVISION= 7
CATEGORIES= x11-drivers
MAINTAINER= x11@FreeBSD.org
COMMENT= X.org drivers meta-port
WWW= https://www.x.org/
VIDEODIR= ${LOCALBASE}/lib/xorg/modules/drivers
INPUTDIR= ${LOCALBASE}/lib/xorg/modules/input
USES= metaport
INPUT_DRIVERS= egalax \
elographics \
evdev \
joystick \
keyboard \
libinput \
mouse \
synaptics \
void \
wacom
VIDEO_DRIVERS= apm \
ark \
ast \
chips \
cirrus \
dummy \
i128 \
i740 \
mach64 \
mga \
neomagic \
nv \
openchrome \
r128 \
rendition \
s3virge \
savage \
scfb \
siliconmotion \
sis \
tdfx \
tseng \
vesa \
voodoo
OPTIONS_DEFAULT= KEYBOARD \
LIBINPUT \
MOUSE \
SCFB
.for type in input video
. for a in ${${type:tu}_DRIVERS}
OPTIONS_DEFINE+= ${a:tu}
${a:tu}_DESC= Install ${a} ${type} driver
. endfor
.endfor
OPTIONS_DEFINE_amd64= AMDGPU ATI INTEL VMMOUSE VMWARE
OPTIONS_DEFAULT_amd64= VESA
OPTIONS_DEFINE_i386:= ${OPTIONS_DEFINE_amd64} GEODE
OPTIONS_DEFAULT_i386:= ${OPTIONS_DEFAULT_amd64}
OPTIONS_DEFINE_sparc64= SUNFFB
OPTIONS_DEFAULT_sparc64=SUNFFB
AMDGPU_DESC= Install amdgpu video driver
ATI_DESC= Install ati (radeon) video driver
GEODE_DESC= Install geode video driver
INTEL_DESC= Install intel video driver
SUNFFB_DESC= Install sunffb video driver
VMMOUSE_DESC= Install vmmouse input driver
VMWARE_DESC= Install vmware video driver
# these drivers have a different module name compared to the plugin they install
QUIRKS= keyboard:kbd
.include <bsd.port.options.mk>
# Manual add arch specific drivers so they be added to depend lines.
.if ${ARCH}==i386 || ${ARCH}==amd64
INPUT_DRIVERS+= vmmouse
VIDEO_DRIVERS+= amdgpu ati intel vmware
.endif
.if ${ARCH}==i386
VIDEO_DRIVERS+= geode
.endif
.if ${ARCH}==sparc64
VIDEO_DRIVERS+= sunffb
.endif
.for type in input video
. for i in ${${type:tu}_DRIVERS}
. if ${PORT_OPTIONS:M${i:tu}} != ""
. if ${QUIRKS:M${i}\:*:C/.*://} != ""
RUN_DEPENDS+= ${${type:tu}DIR}/${QUIRKS:M${i}\:*:C/.*://}_drv.so:x11-drivers/xf86-${type}-${i}
. else
RUN_DEPENDS+= ${${type:tu}DIR}/${i}_drv.so:x11-drivers/xf86-${type}-${i}
. endif
. endif
. endfor
.endfor
.include <bsd.port.mk>