diff options
Diffstat (limited to 'comms/garmin-utils')
-rw-r--r-- | comms/garmin-utils/Makefile | 14 |
1 files changed, 11 insertions, 3 deletions
diff --git a/comms/garmin-utils/Makefile b/comms/garmin-utils/Makefile index b910598ecd2b..efbd7f072938 100644 --- a/comms/garmin-utils/Makefile +++ b/comms/garmin-utils/Makefile @@ -7,6 +7,7 @@ PORTNAME= garmin-utils PORTVERSION= 2.2 +PORTREVISION= 1 CATEGORIES= comms MASTER_SITES= ftp://ftp.snafu.org/pub/ @@ -15,9 +16,16 @@ COMMENT= Utilities for Garmin GPS receivers MAN1= gardump.1 garload.1 MANCOMPRESSED= yes -MAKE_ARGS+= MANDIR=${MANPREFIX}/man/man \ - GPS_SERIAL_PORT=/dev/cuaa0 +MAKE_ARGS+= MANDIR=${MANPREFIX}/man/man PLIST_FILES= bin/gardump bin/garload -.include <bsd.port.mk> +.include <bsd.port.pre.mk> + +.if ${OSVERSION} < 600006 +MAKE_ARGS+= GPS_SERIAL_PORT=/dev/cuaa0 +.else +MAKE_ARGS+= GPS_SERIAL_PORT=/dev/cuad0 +.endif + +.include <bsd.port.post.mk> |