diff options
author | Anton Berezin <tobez@FreeBSD.org> | 2007-06-26 08:04:02 +0000 |
---|---|---|
committer | Anton Berezin <tobez@FreeBSD.org> | 2007-06-26 08:04:02 +0000 |
commit | 8b80fc98bf6cf0bd78586a52e1841e6277a725c8 (patch) | |
tree | 003df502b35d12d6478eae3ad21af1dd08895ad6 /comms/garmin-utils | |
parent | c57cfeaaa5b2e97fa02700aa13970ac03d18540b (diff) | |
download | ports-8b80fc98bf6cf0bd78586a52e1841e6277a725c8.tar.gz ports-8b80fc98bf6cf0bd78586a52e1841e6277a725c8.zip |
Notes
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> |