mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-04 22:33:27 +00:00
6ec75e7f8e
This is a small command-line utility to turn one file into two, each indistinguishable from noise, and put them back together into the original. PR: 19778 Submitted by: Trevor Johnson <trevor@jpj.net>
33 lines
712 B
Makefile
33 lines
712 B
Makefile
# New ports collection makefile for: pad
|
|
# Date created: 8 July 2000
|
|
# Whom: Trevor Johnson
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= pad
|
|
PORTVERSION= 0.5
|
|
CATEGORIES= security
|
|
MASTER_SITES= http://www.lammah.com/pad/
|
|
EXTRACT_SUFX= .tgz
|
|
|
|
MAINTAINER= trevor@jpj.net
|
|
|
|
post-extract:
|
|
@${RM} ${WRKSRC}/install-sh ${WRKSRC}/mkinstalldirs \
|
|
${WRKSRC}/missing ${WRKSRC}/INSTALL ${WRKSRC}/COPYING
|
|
@${TOUCH} ${WRKSRC}/install-sh ${WRKSRC}/mkinstalldirs \
|
|
${WRKSRC}/missing ${WRKSRC}/INSTALL ${WRKSRC}/COPYING
|
|
|
|
GNU_CONFIGURE= yes
|
|
USE_AUTOMAKE= yes
|
|
USE_GMAKE= yes
|
|
|
|
post-install:
|
|
.if !defined(NOPORTDOCS)
|
|
@${MKDIR} ${PREFIX}/share/doc/pad
|
|
@${INSTALL_DATA} ${WRKSRC}/README ${PREFIX}/share/doc/pad
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|