1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-12 07:27:57 +00:00
freebsd-ports/security/trinokiller/Makefile
Raphael Kubo da Costa f918422939 Switch to a working MASTER_SITE and unmark BROKEN.
distinfo had to be regenerated. diff between the old distfile and the new one:

--- dist-trinokiller.c  2003-04-14 08:03:10.000000000 +0200
+++ trinokiller.c       1999-12-31 03:37:23.000000000 +0100
@@ -5,10 +5,6 @@
  *
  *   This program kills trino nodes on version 1.07b2+f3 and below.
  *
- * realize, this requires that you
- *  1) know the password that the master/nodes communicate with
- *  2) assume it to be the default password
- *
  *
 */
2016-01-02 10:44:44 +00:00

27 lines
576 B
Makefile

# Created by: David O'Brien (obrien@NUXI.com)
# $FreeBSD$
PORTNAME= trinokiller
PORTVERSION= 1.0
CATEGORIES= security
MASTER_SITES= https://dl.packetstormsecurity.net/distributed/
DISTNAME= trinokiller
EXTRACT_SUFX= .c
MAINTAINER= ports@FreeBSD.org
COMMENT= Remotely kill trino nodes
PLIST_FILES= sbin/trinokiller
do-extract:
@${MKDIR} ${WRKSRC}
@${CP} ${DISTDIR}/${DISTFILES} ${WRKSRC}
do-build:
${CC} ${CFLAGS} -o ${WRKSRC}/${DISTNAME} ${WRKSRC}/${DISTNAME}.c
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/${DISTNAME} ${STAGEDIR}/${PREFIX}/sbin
.include <bsd.port.mk>