forked from Lainports/freebsd-ports
tab to tree pick metaphor * Change serial port discovery on OS-X to just use tty and not cu. MilliSleep * Change MINGW implementation to use nanosleep vice Sleep FT991A * add separate class to support the FT-991A drag-release * Add FL_RELEASE event processing to Fl_Value_Slider widget TT566 update * mods to TT566 class methods by W5PNY - detect PTT changes made at xcvr - correct S meter scale conversion rig.cat_string * change xmlrpc implementation to return the transceiver response string IC756PROII * Start up seg fault if xcvr is in AM or FM mode scripts * modify build scripts for current OS install Increase User commands * increase from 8 to 16 user definable commands Unguarded statement * fix unguarded statement in src/TS990.cxx IC9100 * Correct bandwidth tables IC9700 * Add Icom 9700 transceiver FT857/897 * add delay after changing mode * add extras drop down entries * add Commands tab * add Band select tab - band/mode select buttons * Add CTCSS and repeater controls tab * Store band data in prefs file: - freq, mode, - CTCSS tx/rx tones - FM simplex/minus/plus; offset frequency
38 lines
943 B
Makefile
38 lines
943 B
Makefile
# Created by: Stephen Hurd <shurd@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= flrig
|
|
PORTVERSION= 1.3.49
|
|
CATEGORIES= comms hamradio
|
|
MASTER_SITES= SF/fldigi/${PORTNAME}
|
|
|
|
MAINTAINER= hamradio@FreeBSD.org
|
|
COMMENT= Ham Radio rig control program, cooperates with fldigi
|
|
|
|
LICENSE= GPLv2
|
|
|
|
LIB_DEPENDS= libpng.so:graphics/png \
|
|
libfontconfig.so:x11-fonts/fontconfig \
|
|
libfltk.so:x11-toolkits/fltk
|
|
|
|
USES= gmake jpeg xorg
|
|
USE_XORG= x11 xrender xcursor xfixes xext xft xinerama
|
|
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ENV= FLTK_CONFIG="${LOCALBASE}/bin/fltk-config"
|
|
PLIST_FILES= bin/flrig share/applications/flrig.desktop \
|
|
share/pixmaps/flrig.xpm
|
|
OPTIONS_DEFINE= NATIVE_OPT
|
|
|
|
NATIVE_OPT_DESC= Enable Native Optimizations
|
|
|
|
NATIVE_OPT_CONFIGURE_ON+= --enable-optimizations=native
|
|
NATIVE_OPT_CONFIGURE_OFF+= --enable-optimizations=none
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if defined(PPC_ABI) && ${PPC_ABI} == ELFv1
|
|
CFLAGS+= -mminimal-toc
|
|
.endif
|
|
|
|
.include <bsd.port.post.mk>
|