freebsd-ports/security/ruby-pam/Makefile
Akinori MUSHA 91aeca743e Add ruby-pam, a Ruby extension to use PAM library.
It doesn't work properly yet, but I'd appreciate if someone could
investigate the problem further.  (Seems it always fails to
authenticate due to PAM_MODULE_UNKNOWN)

ALso, note that it doesn't even load a module successfully because
FreeBSD's PAM modules are not linked with libpam.so.  Add -lpam to
LDADD, then rebuild and reinstall PAM modules before trying this
library out.
2001-05-30 16:00:25 +00:00

35 lines
790 B
Makefile

# New ports collection makefile for: Ruby/PAM
# Date created: 29 May 2001
# Whom: Akinori MUSHA aka knu <knu@idaemons.org>
#
# $FreeBSD$
#
PORTNAME= pam
PORTVERSION= 1.1
CATEGORIES= security ruby
MASTER_SITES= http://kt-www.jaist.ac.jp/~ttate/ftp/
PKGNAMEPREFIX= ${RUBY_PKGNAMEPREFIX}
DISTNAME= ruby-${PORTNAME}-${PORTVERSION}
DIST_SUBDIR= ruby
MAINTAINER= knu@FreeBSD.org
USE_RUBY= yes
USE_RUBY_EXTCONF= yes
INSTALL_TARGET= site-install
DOCS_EN= ChangeLog README README.html
post-install:
.if !defined(NOPORTDOCS)
${MKDIR} ${RUBY_DOCDIR}/${PORTNAME}
.for f in ${DOCS_EN}
${INSTALL_DATA} ${WRKSRC}/${f} ${RUBY_DOCDIR}/${PORTNAME}/
.endfor
${MKDIR} ${RUBY_EXAMPLESDIR}/${PORTNAME}
${INSTALL_DATA} ${WRKSRC}/test/* ${RUBY_EXAMPLESDIR}/${PORTNAME}/
.endif
.include <bsd.port.mk>