mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-11 02:50:24 +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)
24 lines
552 B
Makefile
24 lines
552 B
Makefile
# Created by: Keith J. Jones <kjones@antihackertoolkit.com>
|
|
|
|
PORTNAME= srm
|
|
PORTVERSION= 1.2.15
|
|
CATEGORIES= security sysutils
|
|
MASTER_SITES= SF/${PORTNAME}/${PORTVERSION} \
|
|
SF/${PORTNAME}/old_releases \
|
|
SF/${PORTNAME}/old_releases/${PORTVERSION}
|
|
|
|
MAINTAINER= mshirk@daemon-security.com
|
|
COMMENT= Secure rm, a utility which destroys file contents before unlinking
|
|
|
|
LICENSE= MIT
|
|
LICENSE_FILE= ${WRKSRC}/COPYING
|
|
|
|
CONFLICTS= secure_delete
|
|
|
|
GNU_CONFIGURE= yes
|
|
TEST_TARGET= test
|
|
|
|
PLIST_FILES= bin/fill_test bin/srm man/man1/srm.1.gz
|
|
|
|
.include <bsd.port.mk>
|