30 lines
689 B
Makefile
30 lines
689 B
Makefile
|
COMMENT = extendable encryption program that supports many ciphers
|
||
|
|
||
|
DISTNAME = mcrypt-2.6.8
|
||
|
REVISION = 6
|
||
|
CATEGORIES = security
|
||
|
|
||
|
HOMEPAGE = http://mcrypt.sf.net/
|
||
|
|
||
|
MAINTAINER = Benoit Lecocq <benoit@openbsd.org>
|
||
|
|
||
|
# GPLv3
|
||
|
PERMIT_PACKAGE = Yes
|
||
|
|
||
|
WANTLIB = c iconv intl ltdl mcrypt mhash z
|
||
|
|
||
|
MASTER_SITES = ${MASTER_SITE_SOURCEFORGE:=mcrypt/}
|
||
|
|
||
|
USE_GMAKE = Yes
|
||
|
LIB_DEPENDS = security/libmcrypt \
|
||
|
security/mhash \
|
||
|
devel/gettext,-runtime \
|
||
|
devel/libtool,-ltdl
|
||
|
|
||
|
CONFIGURE_STYLE = gnu
|
||
|
CONFIGURE_ARGS += --enable-static --with-catgets
|
||
|
CONFIGURE_ENV += CPPFLAGS="-I${LOCALBASE}/include" \
|
||
|
LDFLAGS="-L${LOCALBASE}/lib -lintl -liconv -lltdl"
|
||
|
|
||
|
.include <bsd.port.mk>
|