mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-31 05:41:08 +00:00
7f11d466fb
extract the part you are interested in, and write it back after you modified it. PR: ports/69555 Submitted by: bugghy <bugghy@phenix.rootshell.be>
30 lines
759 B
Makefile
30 lines
759 B
Makefile
# New ports collection makefile for: manipulate_data
|
|
# Date created: 24 Jul 2004
|
|
# Whom: bugghy <bugghy@SAFe-mail.net>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= manipulate_data
|
|
PORTVERSION= 1.3
|
|
CATEGORIES= security
|
|
MASTER_SITES= http://packetstormsecurity.org/groups/thc/
|
|
|
|
MAINTAINER= bugghy@SAFe-mail.net
|
|
COMMENT= Search/extract/write raw data
|
|
|
|
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>
|