Date: Sat, 21 Jan 2017 13:10:32 +0000 (UTC) From: Palle Girgensohn <girgen@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r432031 - in head/security: . pecl-krb5 pecl-krb5/files Message-ID: <201701211310.v0LDAWtx032572@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: girgen Date: Sat Jan 21 13:10:31 2017 New Revision: 432031 URL: https://svnweb.freebsd.org/changeset/ports/432031 Log: Add port of php kerberos An interface for maintaining credential caches (KRB5CCache), that can be used for authenticating against a kerberos5 realm. Bindings for nearly the complete GSSAPI (RFC2744). The administrative interface (KADM5). Support for HTTP Negotiate authentication via GSSAPI. WWW: https://pecl.php.net/package/krb5 Added: head/security/pecl-krb5/ head/security/pecl-krb5/Makefile (contents, props changed) head/security/pecl-krb5/distinfo (contents, props changed) head/security/pecl-krb5/files/ head/security/pecl-krb5/files/patch-krb5.c (contents, props changed) head/security/pecl-krb5/pkg-descr (contents, props changed) Modified: head/security/Makefile Modified: head/security/Makefile ============================================================================== --- head/security/Makefile Sat Jan 21 12:56:45 2017 (r432030) +++ head/security/Makefile Sat Jan 21 13:10:31 2017 (r432031) @@ -761,6 +761,7 @@ SUBDIR += pecl-crack SUBDIR += pecl-crypto SUBDIR += pecl-gnupg + SUBDIR += pecl-krb5 SUBDIR += pecl-libsodium SUBDIR += pecl-pam SUBDIR += pecl-scrypt Added: head/security/pecl-krb5/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/pecl-krb5/Makefile Sat Jan 21 13:10:31 2017 (r432031) @@ -0,0 +1,21 @@ +# Created by: girgen@FreeBSD.org +# $FreeBSD$ + +PORTNAME= krb5 +PORTVERSION= 1.1.1 +CATEGORIES= security pear +MASTER_SITES= http://pecl.php.net/get/ +PKGNAMEPREFIX= pecl- + +MAINTAINER= girgen@FreeBSD.org +COMMENT= PECL classes for PAM integration + +LICENSE= BSD3CLAUSE + +LIB_DEPENDS= libkrb5support.so:security/krb5 + +USES= php:ext tar:tgz + +CONFIGURE_ARGS= --with-krb5config=${LOCALBASE}/bin/krb5-config + +.include <bsd.port.mk> Added: head/security/pecl-krb5/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/pecl-krb5/distinfo Sat Jan 21 13:10:31 2017 (r432031) @@ -0,0 +1,3 @@ +TIMESTAMP = 1484941940 +SHA256 (krb5-1.1.1.tgz) = ba6474541ff5b6fdd4054969ead047645b669fff0e628ed6965214800c371024 +SIZE (krb5-1.1.1.tgz) = 36568 Added: head/security/pecl-krb5/files/patch-krb5.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/pecl-krb5/files/patch-krb5.c Sat Jan 21 13:10:31 2017 (r432031) @@ -0,0 +1,10 @@ +--- krb5.c.orig 2016-11-12 14:17:44 UTC ++++ krb5.c +@@ -39,6 +39,7 @@ + + #include <sys/time.h> + #include <arpa/inet.h> ++#include <netinet/in.h> + + #ifdef HAVE_KADM5 + #include "kdb.h" Added: head/security/pecl-krb5/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/pecl-krb5/pkg-descr Sat Jan 21 13:10:31 2017 (r432031) @@ -0,0 +1,7 @@ +An interface for maintaining credential caches (KRB5CCache), +that can be used for authenticating against a kerberos5 realm. +Bindings for nearly the complete GSSAPI (RFC2744). +The administrative interface (KADM5). +Support for HTTP Negotiate authentication via GSSAPI. + +WWW: https://pecl.php.net/package/krb5
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201701211310.v0LDAWtx032572>