mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-02 01:20:54 +00:00
dc18a21420
Approved by: portmgr blanket
34 lines
669 B
Makefile
34 lines
669 B
Makefile
# Created by: Sergey Matveychuk <sem@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= whoson
|
|
PORTVERSION= 2.05
|
|
PORTREVISION= 1
|
|
CATEGORIES= mail
|
|
MASTER_SITES= SF
|
|
|
|
MAINTAINER= sem@FreeBSD.org
|
|
COMMENT= Implementation of `WHO iS ONline' protocol
|
|
|
|
USES= libtool
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS= --with-config=${PREFIX}/etc/whoson.conf
|
|
USE_LDCONFIG= yes
|
|
|
|
USE_RC_SUBR= whoson
|
|
|
|
PORTDOCS= README ChangeLog
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
post-install:
|
|
.if ${PORT_OPTIONS:MDOCS}
|
|
@${MKDIR} ${STAGEDIR}/${DOCSDIR}
|
|
${INSTALL_DATA} ${PORTDOCS:S,^,${WRKSRC}/,} ${STAGEDIR}${DOCSDIR}
|
|
.endif
|
|
${STRIP_CMD} ${STAGEDIR}/${PREFIX}/lib/libwhoson.so.0
|
|
|
|
.include <bsd.port.mk>
|