blob: 72d71cf4f818c742c08644d17e80388c8fbf70e3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
# Created by: Martin Matuska <mm@FreeBSD.org>
# $FreeBSD$
PORTNAME= Horde_Crypt_Blowfish
PORTVERSION= 1.0.2
CATEGORIES= security www pear
PKGNAMEPREFIX= pear-
MAINTAINER= horde@FreeBSD.org
COMMENT= Horde blowfish encryption for PHP string data
USE_HORDE_RUN= Horde_Exception \
Horde_Support
OPTIONS_DEFINE= MHASH OPENSSL
MHASH_DESC= Depend on mhash PHP extension
OPENSSL_DESC= Depend on OpenSSL PHP extension
NO_STAGE= yes
.include <bsd.port.pre.mk>
.if ${PORT_OPTIONS:MMHASH}
USE_PHP+= mhash
.endif
.if ${PORT_OPTIONS:MOPENSSL}
USE_PHP+= openssl
.endif
.include "${PORTSDIR}/devel/pear-channel-horde/bsd.horde.mk"
.include <bsd.port.post.mk>
|