31e8f0bdcd
While pam(8) refers Linux-PAM Guides at ``SEE ALSO'' section, it seems no documentation is in ports/ tree. I think reading those docs takes good understanding of PAM in RELENG_4, and also OpenPAM in HEAD. PR: ports/53490 Submitted by: Hideyuki KURASHINA <rushani@FreeBSD.org>
26 lines
609 B
Makefile
26 lines
609 B
Makefile
# New ports collection makefile for: Linux-PAM offline documentation
|
|
# Date created: 19 Jun 2003
|
|
# Whom: Hideyuki KURASHINA <rushani@FreeBSD.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= linux-pam-docs
|
|
PORTVERSION= 0.76
|
|
CATEGORIES= security
|
|
MASTER_SITES= http://www.kernel.org/pub/linux/libs/pam/pre/doc/
|
|
DISTNAME= Linux-PAM-${PORTVERSION}-docs
|
|
|
|
MAINTAINER= rushani@FreeBSD.org
|
|
COMMENT= Linux-PAM offline documentation
|
|
|
|
NO_WRKSUBDIR= yes
|
|
NO_BUILD= yes
|
|
CPIO= cpio --quiet -pdum -R
|
|
|
|
do-install:
|
|
@ ${MKDIR} ${DOCSDIR}
|
|
@ cd ${WRKSRC} && ${FIND} * \
|
|
| ${CPIO} ${SHAREOWN}:${SHAREGRP} ${DOCSDIR}
|
|
|
|
.include <bsd.port.mk>
|