mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-13 03:03:15 +00:00
274813c16e
The configure argument makes it clear the ports version of libpcap is desired, but due to the ambiguous specification, the dependency was never registered, but this commit rectifies that issue. PR: 211578 approved by: just-fix-it
24 lines
516 B
Makefile
24 lines
516 B
Makefile
# Created by: Matt Peterson <matt@peterson.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= libtrace
|
|
PORTVERSION= 3.0.19
|
|
PORTREVISION= 2
|
|
CATEGORIES= net
|
|
MASTER_SITES= http://research.wand.net.nz/software/libtrace/
|
|
|
|
MAINTAINER= matt@peterson.org
|
|
COMMENT= C library for network packet capture and processing
|
|
|
|
LIB_DEPENDS= libpcap.so.1:net/libpcap
|
|
|
|
CONFIGURE_ARGS= --with-libpcap=${LOCALBASE} \
|
|
libtrace_doxygen=false
|
|
|
|
GNU_CONFIGURE= yes
|
|
USE_LDCONFIG= yes
|
|
USES= gmake libtool ncurses
|
|
LDFLAGS+= -L${LOCALBASE}/lib
|
|
|
|
.include <bsd.port.mk>
|