From 3fe6308883c5d01ab1f4ece9b4def8eb1f80e267 Mon Sep 17 00:00:00 2001 From: amdmi3 Date: Fri, 18 Dec 2009 01:38:25 +0000 Subject: - Use correct serial device on FreeBSD >8.x - While here, mark MAKE_JOBS_SAFE PR: 140912 Submitted by: myself Approved by: maintainer timeout --- comms/garmin-utils/Makefile | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) (limited to 'comms') diff --git a/comms/garmin-utils/Makefile b/comms/garmin-utils/Makefile index e5c8a1cf7a0a..7f5fee69fba0 100644 --- a/comms/garmin-utils/Makefile +++ b/comms/garmin-utils/Makefile @@ -7,6 +7,7 @@ PORTNAME= garmin-utils PORTVERSION= 2.5 +PORTREVISION= 1 CATEGORIES= comms geography MASTER_SITES= ftp://ftp.snafu.org/pub/ @@ -16,8 +17,16 @@ COMMENT= Utilities for Garmin GPS receivers MAN1= gardump.1 garload.1 MANCOMPRESSED= yes MAKE_ARGS+= MANDIR=${MANPREFIX}/man/man -MAKE_ARGS+= GPS_SERIAL_PORT=/dev/cuad0 +MAKE_JOBS_SAFE= yes PLIST_FILES= bin/gardump bin/garload -.include +.include + +.if ${OSVERSION} < 800045 +MAKE_ARGS+= GPS_SERIAL_PORT=/dev/cuad0 +.else +MAKE_ARGS+= GPS_SERIAL_PORT=/dev/cuau0 +.endif + +.include -- cgit