diff options
author | Ganael LAPLANCHE <martymac@FreeBSD.org> | 2021-05-10 10:22:58 +0000 |
---|---|---|
committer | Ganael LAPLANCHE <martymac@FreeBSD.org> | 2021-05-10 10:32:41 +0000 |
commit | e806a5b226b205e1c99b597e3ec4bcc90427b2bb (patch) | |
tree | da4bb8af40208fa051c7f8d7ddab225207ec7ecf | |
parent | 5899c04eff968eef1bf356dc964ddc66123a7489 (diff) |
comms/rtl-sdr: Do not force gnu89 C std anymore
- gnu89 do not seem to be needed anymore
- also, remove useless dependency to gmake
PR: 255725
Reported by: Nico Sonack <nsonack@outlook.com>
-rw-r--r-- | comms/rtl-sdr/Makefile | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/comms/rtl-sdr/Makefile b/comms/rtl-sdr/Makefile index 329465b3d367..e02b4fb08245 100644 --- a/comms/rtl-sdr/Makefile +++ b/comms/rtl-sdr/Makefile @@ -2,7 +2,7 @@ PORTNAME= rtl-sdr PORTVERSION= 0.6.0 -PORTREVISION= 1 +PORTREVISION= 2 PORTEPOCH= 1 CATEGORIES= comms hamradio @@ -11,13 +11,12 @@ COMMENT= Command-line tool that performs SDR with RTL2832-based USB sticks LICENSE= GPLv2 -USES= autoreconf gmake pkgconfig libtool pathfix tar:tgz +USES= autoreconf pkgconfig libtool pathfix tar:tgz USE_GITHUB= yes GH_ACCOUNT= steve-m GH_PROJECT= librtlsdr -USE_CSTD= gnu89 GNU_CONFIGURE= yes INSTALL_TARGET= install-strip CPPFLAGS+= -I${LOCALBASE}/include |