diff options
author | pgollucci <pgollucci@FreeBSD.org> | 2010-01-15 10:54:57 +0800 |
---|---|---|
committer | pgollucci <pgollucci@FreeBSD.org> | 2010-01-15 10:54:57 +0800 |
commit | af03475352c74609172c2865f7e7833893204e9f (patch) | |
tree | 4413645345d333365ffb9f266efc67ed0c81e5dc /x11-drivers/input-wacom | |
parent | c22c65c55c18f4b939e0357fee064788bb80eee4 (diff) | |
download | freebsd-ports-gnome-af03475352c74609172c2865f7e7833893204e9f.tar.gz freebsd-ports-gnome-af03475352c74609172c2865f7e7833893204e9f.tar.zst freebsd-ports-gnome-af03475352c74609172c2865f7e7833893204e9f.zip |
- USB module does not build on 8.x, turn it off by default in this case.
PR: ports/141829
Submitted by: Dominic Fandrey <lon_kamikaze@gmx.de>
Diffstat (limited to 'x11-drivers/input-wacom')
-rw-r--r-- | x11-drivers/input-wacom/Makefile | 17 |
1 files changed, 10 insertions, 7 deletions
diff --git a/x11-drivers/input-wacom/Makefile b/x11-drivers/input-wacom/Makefile index 2232153b633c..d2a119458468 100644 --- a/x11-drivers/input-wacom/Makefile +++ b/x11-drivers/input-wacom/Makefile @@ -7,7 +7,7 @@ PORTNAME= input-wacom PORTVERSION= ${KLD_VERSION}.${WACOM_VERSION:C/-/./g} -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= x11-drivers kld MASTER_SITES= http://www.chillt.de/bsdwacom/:bsdwacom \ SF/linuxwacom/linuxwacom/${WACOM_VERSION}:linuxwacom @@ -44,15 +44,18 @@ BSDWACOM= bsdwacom-${KLD_VERSION} WACOM_VERSION= 0.8.2-2 KLD_VERSION= 40 -OPTIONS= UWACOMKLD "Install USB kernel module" On - -.include <bsd.port.pre.mk> - .if ${OSVERSION} >= 800064 -BROKEN= does not build +OPTIONS= UWACOMKLD "Install USB kernel module (not supported on 8.x)" Off +.else +OPTIONS= UWACOMKLD "Install USB kernel module (not supported on 8.x)" On .endif +.include <bsd.port.options.mk> + .if defined(WITH_UWACOMKLD) +.if ${OSVERSION} >= 800064 +BROKEN= does not build with USB support +.endif PLIST_SUB+= UWACOMKLD="uwacom.ko" PORTTYPE= usb .else @@ -112,4 +115,4 @@ post-install: @${ECHO} "===> Displaying pkg-message." @${CAT} ${PKGMESSAGE} -.include <bsd.port.post.mk> +.include <bsd.port.mk> |