mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-03 06:04:53 +00:00
0438143249
For example (${OSVERSION} >= 900000 && ${OSVERSION} < 900021) is always true, as is (${OSVERSION} > 900002 || ${OSVERSION} < 900000 && ${OSVERSION} > 800107). Regarding patches, when an EXTRA_PATCHES is no longer needed, I remove it, when it is always needed, I renamed it, in one case, I merged two patches. Differential Revision: https://reviews.freebsd.org/D2209
21 lines
564 B
Makefile
21 lines
564 B
Makefile
# Created by: Edwin Groothuis <edwin@mavetju.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= tcpdump398
|
|
PORTVERSION= 1.0
|
|
CATEGORIES= net ipv6
|
|
MASTER_SITES= http://www.mavetju.org/download/adopted/
|
|
|
|
MAINTAINER= edwin@mavetju.org
|
|
COMMENT= Ubiquitous network traffic analysis tool - FreeBSD 7 version for FreeBSD 8
|
|
|
|
PLIST_FILES= bin/tcpdump398 man/man1/tcpdump398.1.gz
|
|
|
|
USES= tar:bzip2
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/tcpdump ${STAGEDIR}${PREFIX}/bin/tcpdump398
|
|
${INSTALL_MAN} ${WRKSRC}/tcpdump.1.gz ${STAGEDIR}${MAN1PREFIX}/man/man1/tcpdump398.1.gz
|
|
|
|
.include <bsd.port.mk>
|