diff options
author | avl <avl@FreeBSD.org> | 2009-06-29 15:33:26 +0800 |
---|---|---|
committer | avl <avl@FreeBSD.org> | 2009-06-29 15:33:26 +0800 |
commit | 4c080afc19ee4aa4017cc4b1fca86ad7f872f513 (patch) | |
tree | ebbd4de2c65cfac631041c47c16748818d79b3cc /devel | |
parent | b335c8ddc8f70c58aa5fde54ecbf3d9504933916 (diff) | |
download | freebsd-ports-gnome-4c080afc19ee4aa4017cc4b1fca86ad7f872f513.tar.gz freebsd-ports-gnome-4c080afc19ee4aa4017cc4b1fca86ad7f872f513.tar.zst freebsd-ports-gnome-4c080afc19ee4aa4017cc4b1fca86ad7f872f513.zip |
Framework agnostic object based authentication solution that handles all of the
non sense for you. It's as easy as ActiveRecord is with a database.
WWW: http://rubyforge.org/projects/authlogic/
Approved by: glarkin (mentor)
Diffstat (limited to 'devel')
-rw-r--r-- | devel/Makefile | 1 | ||||
-rw-r--r-- | devel/rubygem-authlogic/Makefile | 21 | ||||
-rw-r--r-- | devel/rubygem-authlogic/distinfo | 3 | ||||
-rw-r--r-- | devel/rubygem-authlogic/pkg-descr | 4 |
4 files changed, 29 insertions, 0 deletions
diff --git a/devel/Makefile b/devel/Makefile index 162e0931b914..34c33274468b 100644 --- a/devel/Makefile +++ b/devel/Makefile @@ -2596,6 +2596,7 @@ SUBDIR += rubygem-activesupport SUBDIR += rubygem-analogger SUBDIR += rubygem-arrayfields + SUBDIR += rubygem-authlogic SUBDIR += rubygem-bioruby SUBDIR += rubygem-builder SUBDIR += rubygem-chronic diff --git a/devel/rubygem-authlogic/Makefile b/devel/rubygem-authlogic/Makefile new file mode 100644 index 000000000000..680eba622e6c --- /dev/null +++ b/devel/rubygem-authlogic/Makefile @@ -0,0 +1,21 @@ +# Ports collection makefile for: rubygem-authlogic +# Date created: 24 June 2009 +# Whom: Alexander Logvinov <avl@FreeBSD.org> +# +# $FreeBSD$ + +PORTNAME= authlogic +PORTVERSION= 2.1.0 +CATEGORIES= devel rubygems +MASTER_SITES= RF + +MAINTAINER= avl@FreeBSD.org +COMMENT= A clean, simple, and unobtrusive Ruby authentication solution + +RUN_DEPENDS= rubygem-activesupport>=2.0.2:${PORTSDIR}/devel/rubygem-activesupport + +USE_RUBY= yes +USE_RUBYGEMS= yes +RUBYGEM_AUTOPLIST= yes + +.include <bsd.port.mk> diff --git a/devel/rubygem-authlogic/distinfo b/devel/rubygem-authlogic/distinfo new file mode 100644 index 000000000000..0ac3467071b4 --- /dev/null +++ b/devel/rubygem-authlogic/distinfo @@ -0,0 +1,3 @@ +MD5 (rubygem/authlogic-2.1.0.gem) = 79aa4aeb4e8a08212d937a220dbb9957 +SHA256 (rubygem/authlogic-2.1.0.gem) = 61c89d82743148e8396ff79e6b397bb77f2cdf85c59d8e3280d26fe466eb7c2c +SIZE (rubygem/authlogic-2.1.0.gem) = 71168 diff --git a/devel/rubygem-authlogic/pkg-descr b/devel/rubygem-authlogic/pkg-descr new file mode 100644 index 000000000000..ab7ff40316e3 --- /dev/null +++ b/devel/rubygem-authlogic/pkg-descr @@ -0,0 +1,4 @@ +Framework agnostic object based authentication solution that handles all of the +non sense for you. It's as easy as ActiveRecord is with a database. + +WWW: http://rubyforge.org/projects/authlogic/ |