mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-22 04:17:44 +00:00
50621c88aa
as a secondary (suggested by @ler). Changes since 1.7: - Add -x which outputs just the ip addresses seen, one per line. - Add missing rule to match IPv6 addresses starting with :: (especially ::1). Reviewed by: ler (mentor) Approved by: ler (mentor) Differential Revision: https://reviews.freebsd.org/D12752
29 lines
542 B
Makefile
29 lines
542 B
Makefile
# Created by: Craig Leres <leres@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= hf
|
|
PORTVERSION= 1.8
|
|
CATEGORIES= sysutils
|
|
MASTER_SITES= https://ee.lbl.gov/downloads/hf/ \
|
|
LOCAL/leres/hf
|
|
PKGNAMEPREFIX= lbl-
|
|
|
|
MAINTAINER= leres@FreeBSD.org
|
|
COMMENT= Address to hostname filter
|
|
|
|
LICENSE= BSD3CLAUSE
|
|
|
|
CONFLICTS= hf-[0-9]*
|
|
|
|
PLIST_FILES= bin/hf \
|
|
man/man1/hf.1.gz
|
|
|
|
GNU_CONFIGURE= yes
|
|
|
|
# Only install hf
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/hf ${STAGEDIR}${PREFIX}/bin
|
|
${INSTALL_MAN} ${WRKSRC}/hf.1 ${STAGEDIR}${PREFIX}/man/man1
|
|
|
|
.include <bsd.port.mk>
|