fa6695e7f8
the function it's in is never actually called, so it's not a real problem, add the header anyway so people grepping build logs for possible 64-bit problems don't need to look at this again. - the PKGNAME bump is probably unnecessary, but done anyway since it's cheap.
32 lines
701 B
Makefile
32 lines
701 B
Makefile
# $OpenBSD: Makefile,v 1.8 2008/11/19 23:48:52 sthen Exp $
|
|
|
|
COMMENT= steganography detection tool
|
|
DISTNAME= stegdetect-0.6
|
|
PKGNAME= ${DISTNAME}p0
|
|
CATEGORIES= security graphics
|
|
MASTER_SITES= ${HOMEPAGE}
|
|
|
|
HOMEPAGE= http://www.outguess.org/
|
|
|
|
# BSD
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
WANTLIB= X11 Xext Xi c crypto event gmodule iconv intl m
|
|
|
|
LIB_DEPENDS= jpeg::graphics/jpeg \
|
|
gdk.>=1.2,gtk.>=1.2,glib.>=1.2::x11/gtk+
|
|
|
|
NO_REGRESS= Yes
|
|
USE_X11= Yes
|
|
|
|
CONFIGURE_STYLE=gnu
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/{stegdetect,stegbreak,xsteg} \
|
|
${PREFIX}/bin
|
|
${INSTALL_MAN} ${WRKSRC}/*.1 ${PREFIX}/man/man1
|
|
|
|
.include <bsd.port.mk>
|