3f651573ad
Begin autotools sanitization sequence by requiring ports to explicitly specify which version of {libtool,autoconf,automake} they need, erasing the concept of a "system default". For ports-in-waiting: USE_LIBTOOL=YES -> USE_LIBTOOL_VER=13 USE_AUTOCONF=YES -> USE_AUTOCONF_VER=213 USE_AUTOMAKE=YES -> USE_AUTOMAKE_VER=14 Ports attempting to use the old style system after June 1st 2004 will be sorely disappointed.
45 lines
1.1 KiB
Makefile
45 lines
1.1 KiB
Makefile
# New ports collection makefile for: steghide
|
|
# Date created: 26 February 2001
|
|
# Whom: RaRa Rasputin <rasputin@submonkey.net>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= steghide
|
|
PORTVERSION= 0.5.1
|
|
PORTREVISION= 1
|
|
CATEGORIES= security
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
|
|
MASTER_SITE_SUBDIR= steghide
|
|
DISTNAME= ${PORTNAME}-${PORTVERSION:S/.b/b/}
|
|
|
|
MAINTAINER= arved@FreeBSD.org
|
|
COMMENT= "Steganography tool to hide data in binary files"
|
|
|
|
LIB_DEPENDS= mcrypt.8:${PORTSDIR}/security/libmcrypt \
|
|
mhash.2:${PORTSDIR}/security/mhash
|
|
|
|
USE_GETTEXT= yes
|
|
USE_PERL5= yes
|
|
USE_LIBTOOL_VER=13
|
|
GNU_CONFIGURE= yes
|
|
USE_GCC= 3.3
|
|
CONFIGURE_TARGET=
|
|
CONFIGURE_ARGS= --build=${MACHINE_ARCH}-portbld-freebsd${OSREL}
|
|
USE_GMAKE= yes
|
|
CONFIGURE_ENV= CPPFLAGS="${CFLAGS} -I${LOCALBASE}/include" \
|
|
LIBS="-L${LOCALBASE}/lib -lintl -lmcrypt"
|
|
USE_REINPLACE= yes
|
|
|
|
MAN1= steghide.1
|
|
|
|
post-patch:
|
|
.ifdef(NOPORTDOCS)
|
|
${REINPLACE_CMD} -e 's|install-data-am\: install-docDATA||' \
|
|
${WRKSRC}/Makefile.in
|
|
.endif
|
|
${REINPLACE_CMD} -e 's,SHELL) libtool,SHELL) ${LIBTOOL},' \
|
|
${WRKSRC}/src/Makefile.in
|
|
${REINPLACE_CMD} -e 's,-O2,${CFLAGS},' ${WRKSRC}/configure
|
|
|
|
.include <bsd.port.mk>
|