mirror of
https://git.freebsd.org/ports.git
synced 2025-06-14 01:00:33 -04:00
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"). Approved by: portmgr (blanket)
23 lines
463 B
Makefile
23 lines
463 B
Makefile
# Created by: Devin Teske <dteske@FreeBSD.org>
|
|
|
|
PORTNAME= zfs-stats-lite
|
|
PORTVERSION= 1.4
|
|
CATEGORIES= sysutils
|
|
MASTER_SITES= http://druidbsd.sourceforge.net/download/
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Display human-readable ZFS statistics
|
|
|
|
LICENSE= BSD2CLAUSE
|
|
|
|
CONFLICTS_INSTALL= zfs-stats
|
|
|
|
NO_BUILD= yes
|
|
NO_ARCH= yes
|
|
|
|
PLIST_FILES= bin/zfs-stats
|
|
|
|
do-install:
|
|
${INSTALL_SCRIPT} ${WRKSRC}/zfs-stats ${STAGEDIR}${PREFIX}/bin/zfs-stats
|
|
|
|
.include <bsd.port.mk>
|