diff options
author | clsung <clsung@FreeBSD.org> | 2006-08-01 21:42:17 +0800 |
---|---|---|
committer | clsung <clsung@FreeBSD.org> | 2006-08-01 21:42:17 +0800 |
commit | d6e1e0ee199c4c65296eb5c161f04d5ec36bb4aa (patch) | |
tree | 000a89e78081271132855940fee92a1f1eb9e1de /security | |
parent | 9269a89ab8be56205287333cbfe63bbfa8fa9bcd (diff) | |
download | freebsd-ports-gnome-d6e1e0ee199c4c65296eb5c161f04d5ec36bb4aa.tar.gz freebsd-ports-gnome-d6e1e0ee199c4c65296eb5c161f04d5ec36bb4aa.tar.zst freebsd-ports-gnome-d6e1e0ee199c4c65296eb5c161f04d5ec36bb4aa.zip |
Add pecl-tcpwrap 1.0, a PECL extension which provides tcpwrappers
binding.
PR: ports/101136
Submitted by: chinsan <chinsan.tw at gmail.com>
Diffstat (limited to 'security')
-rw-r--r-- | security/Makefile | 1 | ||||
-rw-r--r-- | security/pecl-tcpwrap/Makefile | 25 | ||||
-rw-r--r-- | security/pecl-tcpwrap/distinfo | 3 | ||||
-rw-r--r-- | security/pecl-tcpwrap/pkg-descr | 4 |
4 files changed, 33 insertions, 0 deletions
diff --git a/security/Makefile b/security/Makefile index 662597b94ce3..9dc928a35430 100644 --- a/security/Makefile +++ b/security/Makefile @@ -495,6 +495,7 @@ SUBDIR += pecl-gnupg SUBDIR += pecl-hash SUBDIR += pecl-ssh2 + SUBDIR += pecl-tcpwrap SUBDIR += pft SUBDIR += pfw SUBDIR += pgp diff --git a/security/pecl-tcpwrap/Makefile b/security/pecl-tcpwrap/Makefile new file mode 100644 index 000000000000..11636abad694 --- /dev/null +++ b/security/pecl-tcpwrap/Makefile @@ -0,0 +1,25 @@ +# New ports collection makefile for: pecl-tcpwrap +# Date created: 2006/08/01 +# Whom: chinsan <chinsan.tw@gmail.com> +# +# $FreeBSD$ +# + +PORTNAME= tcpwrap +PORTVERSION= 1.0 +CATEGORIES= security pear +MASTER_SITES= http://pecl.php.net/get/ +PKGNAMEPREFIX= pecl- +EXTRACT_SUFX= .tgz +DIST_SUBDIR= PECL + +MAINTAINER= chinsan.tw@gmail.com +COMMENT= A PECL extension which provides tcpwrappers binding + +USE_PHP= yes +USE_PHPEXT= yes + +post-patch: + @${REINPLACE_CMD} -e 's, -ldl,,' ${WRKSRC}/config.m4 + +.include <bsd.port.mk> diff --git a/security/pecl-tcpwrap/distinfo b/security/pecl-tcpwrap/distinfo new file mode 100644 index 000000000000..55956de6e3b5 --- /dev/null +++ b/security/pecl-tcpwrap/distinfo @@ -0,0 +1,3 @@ +MD5 (PECL/tcpwrap-1.0.tgz) = ed68d289c6ce0155b2bd6e62b6ed0996 +SHA256 (PECL/tcpwrap-1.0.tgz) = 8a5a40958f9bf4eec95e3b1463390c50878a2dd4a03a05946e5b8107c19c501d +SIZE (PECL/tcpwrap-1.0.tgz) = 3203 diff --git a/security/pecl-tcpwrap/pkg-descr b/security/pecl-tcpwrap/pkg-descr new file mode 100644 index 000000000000..b7f1c38f8eae --- /dev/null +++ b/security/pecl-tcpwrap/pkg-descr @@ -0,0 +1,4 @@ +This tcpwrap extension for PHP handles /etc/hosts.allow +and /etc/hosts.deny files. + +WWW: http://pecl.php.net/package/tcpwrap/ |