d650824bb5
Stegdetect is an automated tool for detecting steganographic content in images. It is capable of detecting several different steganographic methods to embed hidden information in JPEG images. ok sturm@
35 lines
780 B
Makefile
35 lines
780 B
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2003/07/01 23:14:23 jolan Exp $
|
|
|
|
COMMENT= "steganography detection tool"
|
|
DISTNAME= stegdetect-0.5
|
|
CATEGORIES= security graphics
|
|
MASTER_SITES= ${HOMEPAGE}
|
|
|
|
HOMEPAGE= http://www.outguess.org/
|
|
|
|
MAINTAINER= Jolan Luff <jolan@openbsd.org>
|
|
|
|
# BSD
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
LIB_DEPENDS= gdk.1.2,gtk.1.2,glib.1.2::x11/gtk+
|
|
|
|
NO_REGRESS= Yes
|
|
USE_X11= Yes
|
|
|
|
WRKDIST=${WRKDIR}/stegdetect
|
|
|
|
CONFIGURE_STYLE=gnu
|
|
|
|
do-install:
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/stegbreak
|
|
${INSTALL_DATA} ${WRKSRC}/rules.ini ${PREFIX}/share/stegbreak
|
|
${INSTALL_PROGRAM} ${WRKSRC}/{stegdetect,stegbreak,xsteg} \
|
|
${PREFIX}/bin
|
|
${INSTALL_MAN} ${WRKSRC}/*.1 ${PREFIX}/man/man1
|
|
|
|
.include <bsd.port.mk>
|