cc216c94a7
Changes: https://sourceforge.net/p/linuxwacom/mailman/message/35914015/ MFH: 2017Q2
45 lines
1 KiB
Makefile
45 lines
1 KiB
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= xf86-input-wacom
|
|
PORTVERSION= 0.35.0
|
|
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>
|