mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-29 01:13:08 +00:00
29 lines
512 B
Makefile
29 lines
512 B
Makefile
# Created by: Kirill Ponomarew <krion@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= hidentd
|
|
PORTVERSION= 0.4
|
|
CATEGORIES= net
|
|
MASTER_SITES= http://core.segfault.pl/~hobbit/hidentd/dist/
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Simple and secure ident (RFC1413) server
|
|
|
|
GNU_CONFIGURE= yes
|
|
|
|
MAN8= hidentd.8
|
|
|
|
PORTDOCS= README
|
|
PLIST_FILES= sbin/hidentd
|
|
|
|
NO_STAGE= yes
|
|
post-install:
|
|
.if !defined(NOPORTDOCS)
|
|
${MKDIR} ${DOCSDIR}
|
|
.for i in README
|
|
${INSTALL_DATA} ${WRKSRC}/${i} ${DOCSDIR}
|
|
.endfor
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|