Update xf86-video-ati to 7.8.0 Update xf86-video-intel to 2.99.917.20170103 Update xf86-input-synaptics to 1.9.0 Update xf86-input-evdev to 2.10.5 Update xf86-video-r128 to 6.10.2 Update xf86-video-rendition to 4.2.6 New port: xf86-video-geode PR: 214591,216269,214687,214593,214715,216276,216277,216278,216287, 216288,216292,216298,214560,216299,216300,216301,216302 Approved by: swills (mentor, portmgr) Differential Revision: https://reviews.freebsd.org/D9436
46 lines
1 KiB
Makefile
46 lines
1 KiB
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= xf86-input-wacom
|
|
PORTVERSION= 0.34.0
|
|
PORTREVISION= 1
|
|
CATEGORIES= x11-drivers
|
|
MASTER_SITES= SF/linuxwacom/${PORTNAME}
|
|
|
|
MAINTAINER= jbeich@FreeBSD.org
|
|
COMMENT= X.Org Wacom tablet driver
|
|
|
|
LICENSE= GPLv2+
|
|
|
|
BUILD_DEPENDS= v4l_compat>=1.0.20110603:multimedia/v4l_compat
|
|
RUN_DEPENDS= webcamd>=3.1.0.1:multimedia/webcamd
|
|
|
|
USES= pathfix
|
|
USE_XORG= x11 xext xinerama xrandr
|
|
XORG_CAT= driver
|
|
LDFLAGS+= -Wl,--as-needed # Xext
|
|
USE_RC_SUBR= wacom
|
|
SUB_FILES= pkg-message
|
|
CONFIGURE_ENV= UDEV_CFLAGS=" " UDEV_LIBS=" "
|
|
CONFIGURE_ARGS= --without-systemd-unit-dir \
|
|
--without-udev-rules-dir \
|
|
--without-doxygen
|
|
|
|
OPTIONS_DEFINE= DEBUG TEST
|
|
|
|
DEBUG_CONFIGURE_ENABLE=debug
|
|
|
|
TEST_CONFIGURE_ENABLE=unit-tests
|
|
TEST_ALL_TARGET=check
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} \
|
|
-e 's/dir=.*xorg-server/& \
|
|
--define-variable prefix="$$prefix"/' \
|
|
${WRKSRC}/configure
|
|
|
|
post-install:
|
|
${MKDIR} ${STAGEDIR}${PREFIX}/etc/X11/xorg.conf.d
|
|
${INSTALL_DATA} ${FILESDIR}/wacom.conf.sample \
|
|
${STAGEDIR}${PREFIX}/etc/X11/xorg.conf.d
|
|
|
|
.include <bsd.port.mk>
|