svn commit: r430526 - in head/security: . rubygem-timfel-krb5 rubygem-timfel-krb5/files

Steve Wills swills at FreeBSD.org
Wed Jan 4 01:22:42 UTC 2017


Author: swills
Date: Wed Jan  4 01:22:40 2017
New Revision: 430526
URL: https://svnweb.freebsd.org/changeset/ports/430526

Log:
  security/rubygem-timfel-krb5: create port
  
  timfel-krb5-auth - ruby wrapper for KRB5
  
  WWW: https://github.com/timfel/krb5-auth
  
  PR:		199695
  Submitted by:	yerenkow at gmail.com

Added:
  head/security/rubygem-timfel-krb5/
  head/security/rubygem-timfel-krb5/Makefile   (contents, props changed)
  head/security/rubygem-timfel-krb5/distinfo   (contents, props changed)
  head/security/rubygem-timfel-krb5/files/
  head/security/rubygem-timfel-krb5/files/patch-ext_extconf.rb   (contents, props changed)
  head/security/rubygem-timfel-krb5/pkg-descr   (contents, props changed)
Modified:
  head/security/Makefile

Modified: head/security/Makefile
==============================================================================
--- head/security/Makefile	Tue Jan  3 22:48:31 2017	(r430525)
+++ head/security/Makefile	Wed Jan  4 01:22:40 2017	(r430526)
@@ -1050,6 +1050,7 @@
     SUBDIR += rubygem-six
     SUBDIR += rubygem-sshkey
     SUBDIR += rubygem-sshkit
+    SUBDIR += rubygem-timfel-krb5
     SUBDIR += rubygem-twitter_oauth
     SUBDIR += s2n
     SUBDIR += safesh

Added: head/security/rubygem-timfel-krb5/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/security/rubygem-timfel-krb5/Makefile	Wed Jan  4 01:22:40 2017	(r430526)
@@ -0,0 +1,17 @@
+# $FreeBSD$
+
+PORTNAME=	timfel-krb5-auth
+PORTVERSION=	0.8.3
+CATEGORIES=	security rubygems
+MASTER_SITES=	RG
+
+MAINTAINER=	ruby at FreeBSD.org
+COMMENT=	KRB5 for Ruby
+
+BUILD_DEPENDS=	krb5>0:security/krb5
+RUN_DEPENDS=	krb5>0:security/krb5
+
+USE_RUBY=		yes
+USES=			gem
+
+.include <bsd.port.mk>

Added: head/security/rubygem-timfel-krb5/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/security/rubygem-timfel-krb5/distinfo	Wed Jan  4 01:22:40 2017	(r430526)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1483485734
+SHA256 (rubygem/timfel-krb5-auth-0.8.3.gem) = ab388c9d747fa3cd95baf2cc1c03253e372d8c680adcc543670f4f099854bb80
+SIZE (rubygem/timfel-krb5-auth-0.8.3.gem) = 10240

Added: head/security/rubygem-timfel-krb5/files/patch-ext_extconf.rb
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/security/rubygem-timfel-krb5/files/patch-ext_extconf.rb	Wed Jan  4 01:22:40 2017	(r430526)
@@ -0,0 +1,15 @@
+--- ext/extconf.rb.orig	2017-01-04 01:13:32 UTC
++++ ext/extconf.rb
+@@ -4,8 +4,8 @@ RbConfig::MAKEFILE_CONFIG['CC'] = ENV['C
+ extension_name = 'krb5_auth'
+ dir_config(extension_name)
+ have_library("c", "main")
+-raise "Cannot find krb5 library" unless have_library("krb5","krb5_init_context")
+-raise "Cannot find krb5 headers" unless have_header("krb5.h")
+-have_library("com_err","error_message")
+-have_header("com_err.h")
++raise "Cannot find krb5 library" unless find_library("krb5","krb5_init_context")
++raise "Cannot find krb5 headers" unless find_header("krb5.h")
++find_library("com_err","error_message")
++find_header("com_err.h")
+ create_makefile('krb5_auth')

Added: head/security/rubygem-timfel-krb5/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/security/rubygem-timfel-krb5/pkg-descr	Wed Jan  4 01:22:40 2017	(r430526)
@@ -0,0 +1,3 @@
+timfel-krb5-auth - ruby wrapper for KRB5
+
+WWW: https://github.com/timfel/krb5-auth


More information about the svn-ports-head mailing list