0ea28b6c45
Ruby OpenID makes it easy to add OpenID authentication to your web applications. This library is a port of the Python OpenID library, and features: * API for verifying OpenID identities (OpenID::Consumer) * API for serving OpenID identities (OpenID::Server) * Consumer and server support for extensions, including simple registration * Yadis 1.0 and OpenID 1.0 service discovery, including server fallback * Does not depend on underlying web framework * Multiple storage implementations (Filesystem, SQL) * Comprehensive test suite * Example code to help you get started, including: o WEBrick based consumer o Ruby on rails based server o OpenIDLoginGenerator for quickly creating a rails app that uses OpenID for authentication o ActiveRecord adapter for using an SQL store in rails WWW: http://www.openidenabled.com/openid/libraries/ruby/
28 lines
731 B
Makefile
28 lines
731 B
Makefile
# New ports collection makefile for: openid
|
|
# Date created: Dec 19, 2006
|
|
# Whom: Cheng-Lung Sung <clsung@FreeBSD.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= openid
|
|
PORTVERSION= 1.1.3
|
|
CATEGORIES= net rubygems
|
|
MASTER_SITES= http://www.openidenabled.com/resources/downloads/ruby-openid/
|
|
DISTNAME= ruby-${PORTNAME}-${PORTVERSION}
|
|
|
|
MAINTAINER= clsung@FreeBSD.org
|
|
COMMENT= A Yadis Service discovery library written in pure Ruby
|
|
|
|
BUILD_DEPENDS= rubygem-yadis>=0.3.3:${PORTSDIR}/net/rubygem-yadis
|
|
RUN_DEPENDS= ${BUILD_DEPENDS}
|
|
|
|
USE_RUBY= yes
|
|
GEM_NAME= ${DISTNAME}
|
|
|
|
post-install:
|
|
@${FIND} ${PREFIX}/${GEM_LIB_DIR} -name "*~" -delete
|
|
|
|
.include <bsd.port.pre.mk>
|
|
.include "${PORTSDIR}/devel/ruby-gems/Makefile.common"
|
|
.include <bsd.port.post.mk>
|