mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-27 05:10:36 +00:00
819f25b36d
The conflict checks compare the patterns first against the package names without version (as reported by "pkg query "%n"), then - if there was no match - agsinst the full package names including the version (as reported by "pkg query "%n-%v"). Many CONFLICTS definitions used patterns like "bash-[0-9]*" to filter for the bash package in any version. But that pattern is functionally identical with just "bash". Approved by: portmgr (blanket)
28 lines
523 B
Makefile
28 lines
523 B
Makefile
# Created by: Craig Leres <leres@FreeBSD.org>
|
|
|
|
PORTNAME= hf
|
|
PORTVERSION= 1.9
|
|
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
|
|
|
|
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>
|