mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-23 00:43:28 +00:00
483ca3bd36
- The reference source for the CVM interface - Diagnostic and benchmark CVM clients - A checkpassword interface CVM client - A UNIX/POSIX system module (uses getpwnam) - A flat-file module - A library for client writers - A set of libraries for module writers Author: Bruce Guenter <bruceg@em.ca> WWW: http://untroubled.org/cvm/ This port in needed to unbreak build of mail/mailfront and ftp/twoftpd.
39 lines
908 B
Makefile
39 lines
908 B
Makefile
# New ports collection makefile for: cvm
|
|
# Date created: 2003-12-24
|
|
# Whom: Sergei Kolobov <sergei@FreeBSD.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= cvm
|
|
PORTVERSION= 0.18
|
|
CATEGORIES= security
|
|
MASTER_SITES= http://untroubled.org/${PORTNAME}/
|
|
|
|
MAINTAINER= sergei@FreeBSD.org
|
|
COMMENT= Credential Validation Modules
|
|
|
|
BUILD_DEPENDS= ${LOCALBASE}/lib/libbg-unix.a:${PORTSDIR}/devel/bglibs
|
|
|
|
CONFLICTS= bglibs-1.00*
|
|
|
|
LDFLAGS?= -s
|
|
|
|
DOCS= NEWS README TODO *.html
|
|
|
|
do-configure:
|
|
${ECHO_CMD} "${PREFIX}" > ${WRKSRC}/conf-home
|
|
${ECHO_CMD} "${CC} ${CFLAGS}" > ${WRKSRC}/conf-cc
|
|
${ECHO_CMD} "${CC} ${LDFLAGS}" > ${WRKSRC}/conf-ld
|
|
${ECHO_CMD} "${LOCALBASE}/include/bglibs" > ${WRKSRC}/conf-bgincs
|
|
${ECHO_CMD} "${LOCALBASE}/lib" > ${WRKSRC}/conf-bglibs
|
|
|
|
do-install:
|
|
cd ${WRKSRC} && ./installer
|
|
.if !defined(NOPORTDOCS)
|
|
@${MKDIR} ${DOCSDIR}
|
|
cd ${WRKSRC} && ${INSTALL_DATA} ${DOCS} ${DOCSDIR}
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|