1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-26 00:55:14 +00:00
freebsd-ports/net/apinger/Makefile
Michael Landin f6686eeca4 - move message to pkg-message so users installing by a package recieve the
message
- add a new rc script which is installed via USE_RC_SUBR

PR:		ports/143102
Submitted by:	Sevan Janiyan <venture37@geeklan.co.uk>
2010-01-25 12:24:06 +00:00

47 lines
1.0 KiB
Makefile

# ex:ts=8
# Ports collection makefile for: apinger
# Date created: Tue Jul 17, 2002
# Whom: Michael L. Hostbaek (mich@freebsdcluster.org)
#
# $FreeBSD$
#
PORTNAME= apinger
PORTVERSION= 0.6.1
PORTREVISION= 2
CATEGORIES= net ipv6
MASTER_SITES= http://freebsdcluster.org/~mich/software/ \
http://www.bnet.pl/~jajcus/apinger/
MAINTAINER= mich@FreeBSD.org
COMMENT= An IP device monitoring tool
GNU_CONFIGURE= yes
USE_RC_SUBR= apinger
SUB_FILES= pkg-message
OPTIONS= IPV6 "With support for IPv6" on
.include <bsd.port.options.mk>
.if !defined(WITH_IPV6)
CONFIGURE_ARGS+= --disable-ipv6
.endif
.include <bsd.port.pre.mk>
post-install:
${INSTALL_DATA} ${WRKSRC}/src/apinger.conf ${PREFIX}/etc/apinger.conf.sample
.if !defined(BATCH)
@${CAT} ${PKGMESSAGE}
.endif
.if !defined(NOPORTDOCS)
@${MKDIR} ${DOCSDIR}
${INSTALL_DATA} ${WRKSRC}/README ${DOCSDIR}/README
${INSTALL_DATA} ${WRKSRC}/NEWS ${DOCSDIR}/NEWS
${INSTALL_DATA} ${WRKSRC}/AUTHORS ${DOCSDIR}/AUTHORS
.endif
.include <bsd.port.post.mk>