View | Details | Raw Unified | Return to bug 248060
Collapse All | Expand All

(-)comms/dump1090/Makefile (-2 / +2 lines)
Lines 2-8 Link Here
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTNAME=	dump1090
4
PORTNAME=	dump1090
5
PORTVERSION=	20150225
5
PORTVERSION=	20200718
6
PORTREVISION=	1
6
PORTREVISION=	1
7
CATEGORIES=	comms
7
CATEGORIES=	comms
8
8
Lines 13-19 Link Here
13
13
14
USE_GITHUB=	yes
14
USE_GITHUB=	yes
15
GH_ACCOUNT=	antirez
15
GH_ACCOUNT=	antirez
16
GH_TAGNAME=	4c53e25
16
GH_TAGNAME=	de61bd5 
17
17
18
LIB_DEPENDS=	librtlsdr.so:comms/rtl-sdr
18
LIB_DEPENDS=	librtlsdr.so:comms/rtl-sdr
19
19
(-)comms/dump1090/distinfo (-2 / +3 lines)
Lines 1-2 Link Here
1
SHA256 (antirez-dump1090-20150225-4c53e25_GH0.tar.gz) = 4be0c75132e9ac635216d052dbf2c7dbcefbc56c7d11131d14d3380ccf835a76
1
TIMESTAMP = 1595064774
2
SIZE (antirez-dump1090-20150225-4c53e25_GH0.tar.gz) = 484406
2
SHA256 (antirez-dump1090-20150225-de61bd5_GH0.tar.gz) = 30fb3174d49464aaf7f3b559af39ee4094074329a7902dc8ff6a6d4b80c11a85
3
SIZE (antirez-dump1090-20150225-de61bd5_GH0.tar.gz) = 485418
(-)comms/dump1090/files/patch-Makefile (-21 lines)
Lines 1-21 Link Here
1
--- Makefile.orig	2015-03-03 21:04:48 UTC
2
+++ Makefile
3
@@ -1,6 +1,6 @@
4
-CFLAGS=-O2 -g -Wall -W `pkg-config --cflags librtlsdr`
5
-LIBS=`pkg-config --libs librtlsdr` -lpthread -lm
6
-CC=gcc
7
+CFLAGS?=-O2 -g -Wall -W `pkg-config --cflags librtlsdr`
8
+LDFLAGS?=`pkg-config --libs librtlsdr` -lpthread -lm
9
+CC?=gcc
10
 PROGNAME=dump1090
11
 
12
 all: dump1090
13
@@ -9,7 +9,7 @@ all: dump1090
14
 	$(CC) $(CFLAGS) -c $<
15
 
16
 dump1090: dump1090.o anet.o
17
-	$(CC) -g -o dump1090 dump1090.o anet.o $(LIBS)
18
+	$(CC) -g -o dump1090 dump1090.o anet.o $(LDFLAGS)
19
 
20
 clean:
21
 	rm -f *.o dump1090

Return to bug 248060