mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-21 04:06:46 +00:00
495f9db373
- Remove MD5 checksum while I am here PR: ports/156141 [1] Submitted by: Dax Labrador <semprix AT gmx.com> (maintainer)
35 lines
777 B
Makefile
35 lines
777 B
Makefile
# New ports collection makefile for: unssh
|
|
# Date created: 30 July 2009
|
|
# Whom: Dax Labrador <semprix@bsdmail.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= unssh
|
|
PORTVERSION= 1.4
|
|
CATEGORIES= security
|
|
MASTER_SITES= http://www.semprixd.com/shares/ports/
|
|
|
|
MAINTAINER= semprix@gmx.com
|
|
COMMENT= Fast way to delete entries from OpenSSH known_hosts file
|
|
|
|
RUN_DEPENDS= bash:${PORTSDIR}/shells/bash
|
|
|
|
NO_BUILD= yes
|
|
PLIST_FILES= bin/unssh
|
|
|
|
PATCH_LIST= extra-patch-unssh.sh
|
|
EXTRA_PATCHES= ${PATCH_LIST:C|^|${WRKDIR}/|g}
|
|
|
|
pre-patch:
|
|
.for patch in ${PATCH_LIST}
|
|
@${SED} ${_SUB_LIST_TEMP} ${FILESDIR}/${patch}.in > ${WRKDIR}/${patch}
|
|
.endfor
|
|
|
|
do-install:
|
|
@${INSTALL} -d ${PREFIX}/bin
|
|
@${CP} ${WRKSRC}/unssh.sh ${PREFIX}/bin/unssh
|
|
@${CHMOD} ${BINMODE} ${PREFIX}/bin/unssh
|
|
|
|
.include <bsd.port.mk>
|