mirror of
https://git.FreeBSD.org/ports.git
synced 2024-10-31 21:57:12 +00:00
0b58639d25
Obtained from: OpenBSD
47 lines
1.2 KiB
Makefile
47 lines
1.2 KiB
Makefile
# New ports collection makefile for: outguess
|
|
# Date created: 2000-12-31
|
|
# Whom: trevor
|
|
# based on the OpenBSD port by Dug Song <dugsong@monkey.org>
|
|
#
|
|
# $OpenBSD: Makefile,v 1.7 2000/10/22 15:43:25 espie Exp $
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= outguess
|
|
PORTVERSION= 0.13b
|
|
CATEGORIES= security
|
|
MASTER_SITES= ftp://ftp.cryptoarchive.net/pub/cryptoarchive/mirrors/www-sites/www.outguess.org/ \
|
|
http://www.physnet.uni-hamburg.de/provos/ \
|
|
http://munitions.vipul.net/software/steganography/
|
|
|
|
MAINTAINER= Trevor Johnson <trevor@FreeBSD.org>
|
|
|
|
DOCDIR= share/doc/outguess
|
|
DOCS= ChangeLog README STIRMARK-README TODO
|
|
|
|
GNU_CONFIGURE= yes
|
|
MAN1= outguess.1
|
|
PLIST= ${WRKDIR}/pkg-plist
|
|
WRKSRC= ${WRKDIR}/outguess
|
|
|
|
pre-install:
|
|
${ECHO} bin/outguess > ${PLIST}
|
|
.if !defined(NOPORTDOCS)
|
|
.for i in ${DOCS}
|
|
${ECHO} ${DOCDIR}/${i} >> ${PLIST}
|
|
.endfor
|
|
${ECHO} @dirrm ${DOCDIR} >> ${PLIST}
|
|
.endif
|
|
|
|
do-install:
|
|
.if !defined(NOPORTDOCS)
|
|
${MKDIR} ${PREFIX}/${DOCDIR}
|
|
.for i in ${DOCS}
|
|
${INSTALL_DATA} ${WRKSRC}/${i} ${PREFIX}/${DOCDIR}
|
|
.endfor
|
|
.endif
|
|
${INSTALL_PROGRAM} ${WRKSRC}/outguess ${PREFIX}/bin
|
|
${INSTALL_MAN} ${FILESDIR}/outguess.1 ${PREFIX}/man/man1
|
|
|
|
.include <bsd.port.mk>
|