View | Details | Raw Unified | Return to bug 191156 | Differences between
and this patch

Collapse All | Expand All

(-)x11-drivers/xf86-input-wacom/Makefile (-1 / +8 lines)
Lines 1-7 Link Here
1
# $FreeBSD$
1
# $FreeBSD$
2
2
3
PORTNAME=	xf86-input-wacom
3
PORTNAME=	xf86-input-wacom
4
PORTVERSION=	0.24.99.1
4
PORTVERSION=	0.25.99.1
5
CATEGORIES=	x11-drivers
5
CATEGORIES=	x11-drivers
6
MASTER_SITES=	SF/linuxwacom/${PORTNAME}
6
MASTER_SITES=	SF/linuxwacom/${PORTNAME}
7
7
Lines 19-24 CONFIGURE_ARGS= --without-systemd-unit-dir \ Link Here
19
		--without-udev-rules-dir \
19
		--without-udev-rules-dir \
20
		--without-doxygen
20
		--without-doxygen
21
21
22
OPTIONS_DEFINE=	DEBUG TEST
23
24
DEBUG_CONFIGURE_ENABLE=debug
25
26
TEST_CONFIGURE_ENABLE=unit-tests
27
TEST_ALL_TARGET=check
28
22
post-patch:
29
post-patch:
23
	@${REINPLACE_CMD} -e 's/as_fn_error.*udev/${TRUE} &/' \
30
	@${REINPLACE_CMD} -e 's/as_fn_error.*udev/${TRUE} &/' \
24
		-e 's/dir=.*xorg-server/& \
31
		-e 's/dir=.*xorg-server/& \
(-)x11-drivers/xf86-input-wacom/distinfo (-2 / +2 lines)
Lines 1-2 Link Here
1
SHA256 (xorg/driver/xf86-input-wacom-0.24.99.1.tar.bz2) = 4b68b1570bd6ce085010980fa1842825e5d676cd2962ec6ad2d7d5bc52149983
1
SHA256 (xorg/driver/xf86-input-wacom-0.25.99.1.tar.bz2) = 395142ebc8864ba6aa6c6bc7ce65c1f00d71ac31cef029b24fb248c34325546e
2
SIZE (xorg/driver/xf86-input-wacom-0.24.99.1.tar.bz2) = 586002
2
SIZE (xorg/driver/xf86-input-wacom-0.25.99.1.tar.bz2) = 588017
(-)x11-drivers/xf86-input-wacom/files/patch-test-wacom-tests.c (+19 lines)
Line 0 Link Here
1
--- test/wacom-tests.c~
2
+++ test/wacom-tests.c
3
@@ -184,7 +184,7 @@ test_normalize_pressure(void)
4
 
5
 	priv.common = &common;
6
 	priv.pInfo = &pInfo;
7
-	pInfo.name = strdupa("Wacom test device");
8
+	pInfo.name = strdup("Wacom test device");
9
 	common.wcmPressureRecalibration = 1;
10
 
11
 	priv.minPressure = 0;
12
@@ -229,6 +229,7 @@ test_normalize_pressure(void)
13
 		/* we count up, so assume normalised pressure goes up too */
14
 		assert(prev_pressure == pressure);
15
 	}
16
+	free(priv.pInfo->name);
17
 }
18
 
19
 /**

Return to bug 191156