blob: 4fa188c277bb1f856ada3cbd9d3382ed8b5a8cc0 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
# Created by: trevor
PORTNAME= outguess
PORTVERSION= 0.2
CATEGORIES= security
MASTER_SITES= http://www.outguess.org/ \
http://www.internet2.edu/~shalunov/mirror/ \
http://cimarron.river.com/mirrors/www.outguess.org/ \
http://munitions.vipul.net/software/steganography/ \
http://the25200-1.gw.connect.com.au/security/steganography/ \
PACKETSTORM/crypt/stego
MAINTAINER= ports@FreeBSD.org
COMMENT= Steganographic tool
LICENSE= BSD4CLAUSE
DEPRECATED= Abandonware, dead upstream and last release in 2001
EXPIRATION_DATE=2022-03-31
CONFLICTS_INSTALL= csound libextractor # bin/extract
GNU_CONFIGURE= yes
WRKSRC= ${WRKDIR}/outguess
PORTDOCS= ChangeLog README STIRMARK-README TODO
OPTIONS_DEFINE= DOCS
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/outguess ${STAGEDIR}${PREFIX}/bin
${LN} -sf outguess ${STAGEDIR}${PREFIX}/bin/extract
${INSTALL_MAN} ${WRKSRC}/outguess.1 ${STAGEDIR}${MAN1PREFIX}/man/man1
do-install-DOCS-on:
@${MKDIR} ${STAGEDIR}${DOCSDIR}
.for i in ${PORTDOCS}
${INSTALL_DATA} ${WRKSRC}/${i} ${STAGEDIR}${DOCSDIR}
.endfor
.include <bsd.port.mk>
|