mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-04 01:48:54 +00:00
ea8c8ec7da
as defined in Mk/bsd.default-versions.mk which has moved from GCC 8.3 to GCC 9.1 under most circumstances now after revision 507371. This includes ports - with USE_GCC=yes or USE_GCC=any, - with USES=fortran, - using Mk/bsd.octave.mk which in turn features USES=fortran, and - with USES=compiler specifying openmp, nestedfct, c11, c++0x, c++11-lang, c++11-lib, c++14-lang, c++17-lang, or gcc-c++11-lib plus, everything INDEX-11 shows with a dependency on lang/gcc9 now. PR: 238330
38 lines
811 B
Makefile
38 lines
811 B
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= redsea
|
|
DISTVERSIONPREFIX= v
|
|
DISTVERSION= 0.17.1
|
|
PORTREVISION= 1
|
|
CATEGORIES= comms
|
|
|
|
MAINTAINER= morrand276@gmail.com
|
|
COMMENT= Lightweight command-line FM-RDS decoder
|
|
|
|
LICENSE= MIT
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
|
|
LIB_DEPENDS= libsndfile.so:audio/libsndfile
|
|
|
|
USES= autoreconf:build compiler:c++14-lang iconv localbase:ldflags
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= windytan
|
|
|
|
GNU_CONFIGURE= yes
|
|
PLIST_FILES= bin/redsea ${DOCSDIR}/README.md
|
|
|
|
OPTIONS_DEFINE= DEMOD TMC
|
|
OPTIONS_DEFAULT= DEMOD TMC
|
|
|
|
DEMOD_DESC= Demodulation support via comms/liquid-dsp
|
|
TMC_DESC= Decoding support for TMC traffic messages (may slow building)
|
|
|
|
DEMOD_CONFIGURE_WITH= liquid
|
|
DEMOD_LIB_DEPENDS= libliquid.so:comms/liquid-dsp
|
|
TMC_CONFIGURE_ENABLE= tmc
|
|
|
|
pre-configure:
|
|
@cd ${WRKSRC} && ${AUTORECONF} -i
|
|
|
|
.include <bsd.port.mk>
|