38 lines
773 B
Makefile
38 lines
773 B
Makefile
# $OpenBSD: Makefile,v 1.3 2009/10/13 18:38:47 pirofti Exp $
|
|
|
|
SHARED_ONLY = Yes
|
|
|
|
COMMENT = Ruby binding for the bcrypt() password hashing algorithm
|
|
|
|
VERSION = 2.1.2
|
|
DISTNAME = bcrypt-ruby-${VERSION}
|
|
PKGNAME = ruby-bcrypt-${VERSION}
|
|
CATEGORIES = security
|
|
|
|
HOMEPAGE = http://bcrypt-ruby.rubyforge.org/
|
|
|
|
# MIT
|
|
PERMIT_PACKAGE_CDROM = Yes
|
|
PERMIT_PACKAGE_FTP = Yes
|
|
PERMIT_DISTFILES_CDROM = Yes
|
|
PERMIT_DISTFILES_FTP = Yes
|
|
|
|
MASTER_SITES = ${MASTER_SITE_RUBYFORGE:=bcrypt-ruby/}
|
|
|
|
MODULES = lang/ruby
|
|
|
|
WANTLIB = c m
|
|
LIB_DEPENDS = ${MODRUBY_LIB_DEPENDS}
|
|
|
|
CONFIGURE_STYLE = ruby gem
|
|
|
|
REGRESS_DEPENDS = ::devel/ruby-rake \
|
|
::devel/ruby-rspec \
|
|
::devel/ruby-rcov \
|
|
::devel/ruby-diff-lcs \
|
|
:${PKGNAME}:${BASE_PKGPATH}
|
|
|
|
MODRUBY_REGRESS = rake rspec
|
|
|
|
.include <bsd.port.mk>
|