fd95587c26
- reset maintainer: Vaida Bogdan no longer uses FreeBSD. Thank you for maintaining the ports so far! - nuke some small plists while here PR: ports/125698 Submitted by: Andrew Stuart
32 lines
869 B
Makefile
32 lines
869 B
Makefile
# New ports collection makefile for: manipulate_data
|
|
# Date created: 24 Jul 2004
|
|
# Whom: Vaida Bogdan <vaida.bogdan@gmail.com>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= manipulate_data
|
|
PORTVERSION= 1.3
|
|
CATEGORIES= security
|
|
MASTER_SITES= http://packetstormsecurity.org/groups/thc/
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Search/extract/write raw data
|
|
|
|
PLIST_FILES= sbin/read_data sbin/replace_data sbin/search_data sbin/write_data
|
|
PORTDOCS= CHANGES README
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/read_data ${PREFIX}/sbin
|
|
${INSTALL_PROGRAM} ${WRKSRC}/write_data ${PREFIX}/sbin
|
|
${INSTALL_PROGRAM} ${WRKSRC}/search_data ${PREFIX}/sbin
|
|
${INSTALL_PROGRAM} ${WRKSRC}/replace_data ${PREFIX}/sbin
|
|
|
|
post-install:
|
|
.if !defined(NOPORTDOCS)
|
|
${MKDIR} ${DOCSDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/CHANGES ${DOCSDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/README ${DOCSDIR}
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|