mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-05 06:27:37 +00:00
37 lines
912 B
Makefile
37 lines
912 B
Makefile
# New ports collection makefile for: mcrypt
|
|
# Date created: Mon Jun 28 18:02:04 PDT 1999
|
|
# Whom: nsayer@freebsd.org
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= libmcrypt
|
|
PORTVERSION= 2.5.2
|
|
CATEGORIES= security
|
|
MASTER_SITES= ftp://mcrypt.hellug.gr/pub/mcrypt/libmcrypt/ \
|
|
ftp://ftp.ntua.gr/pub/security/mcrypt/libmcrypt/
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
|
|
BUILD_DEPENDS= autoconf:${PORTSDIR}/devel/autoconf
|
|
LIB_DEPENDS= ltdl.1:${PORTSDIR}/devel/libtool
|
|
|
|
RESTRICTED= "yes - cryptography"
|
|
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_TARGET= --build=${ARCH}-portbld-freebsd${OSREL}
|
|
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
|
|
LIBS="-L${LOCALBASE}/lib"
|
|
INSTALLS_SHLIB= yes
|
|
|
|
MAN3= mcrypt.3
|
|
|
|
pre-patch:
|
|
@${FIND} ${WRKSRC}/modules -name '*.[ch]' | ${XARGS} ${PERL} -pi -e \
|
|
's|#ifdef USE_LTDL|#if defined\(USE_LTDL\) && !defined\(__FreeBSD__\)|g'
|
|
|
|
post-patch:
|
|
@cd ${WRKSRC}/libltdl && ${LOCALBASE}/bin/autoconf
|
|
|
|
.include <bsd.port.mk>
|