mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-25 00:51:21 +00:00
cb58c72603
- Remove DEPRECATED/EXPIRATION_DATE since port fetches now - Convert to new options framework - Trim Makefile header PR: ports/172055 Submitted by: KATO Tsuguru <tkato432@yahoo.com> Approved by: makc, avilla (mentors, implicit) Feature safe: yes
28 lines
669 B
Makefile
28 lines
669 B
Makefile
# Created by: nsayer@quack.kfu.com
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= identify
|
|
PORTVERSION= 0.7
|
|
CATEGORIES= security
|
|
MASTER_SITES= http://ftp.nluug.nl/ftp/pub/pub/security/coast/daemons/pidentd/tools/ \
|
|
http://www.scn.rain.com/pub/security/authent/
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Client side ident protocol daemon wrapper
|
|
|
|
BUILD_DEPENDS= ${LOCALBASE}/lib/libident.a:${PORTSDIR}/security/libident
|
|
|
|
PORTDOCS= README
|
|
PLIST_FILES= libexec/identify
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/identify ${PREFIX}/libexec
|
|
.if ${PORT_OPTIONS:MDOCS}
|
|
@${MKDIR} ${DOCSDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/README ${DOCSDIR}
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|