freebsd-ports/comms/direwolf/files/patch-Makefile
Diane Bruce 6813b6f7ad Dire Wolf is a software "soundcard" modem/TNC and APRS encoder/decoder.
It can be used stand-alone to observe APRS traffic, as a digipeater,
APRStt gateway, or Internet Gateway (IGate). It can also be used as a
virtual TNC for other applications such as APRSIS32, UI-View32, Xastir,
APRS-TW, YAAC, UISS, Linux AX25, SARTrack, RMS Express, BPQ32,
Outpost PM and many others.

PR:		217791
Submitted by:	bsdports@kyle-evans.net
2017-03-24 14:01:49 +00:00

17 lines
385 B
Text

--- Makefile.orig 2017-01-20 00:11:49 UTC
+++ Makefile
@@ -6,11 +6,14 @@
win := $(shell uname | grep CYGWIN)
dar := $(shell uname | grep Darwin)
+free := $(shell uname | grep FreeBSD)
ifneq ($(win),)
include Makefile.win
else ifeq ($(dar),Darwin)
include Makefile.macosx
+else ifeq ($(free),FreeBSD)
+ include Makefile.FreeBSD
else
include Makefile.linux
endif