1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-30 01:15:52 +00:00
freebsd-ports/net/icpld/Makefile
Martin Wilke 1e48ead47e - Respect DESTDIR for all my ports
Reviewed by:	gabor
Approved by:	krion (mentor)
2006-08-07 07:58:28 +00:00

53 lines
1.3 KiB
Makefile

# New ports collection makefile for: icpld
# Date created: 04.01.2004
# Whom: krion@FreeBSD.org
#
# $FreeBSD$
#
PORTNAME= icpld
PORTVERSION= 1.1.4
CATEGORIES= net ipv6
MASTER_SITES= http://www.ibiblio.org/icpld/download/ \
http://freebsd.unixfreunde.de/sources/
MAINTAINER= miwi@FreeBSD.org
COMMENT= Internet connection performance logging daemon
USE_BZIP2= yes
GNU_CONFIGURE= yes
CONFIGURE_TARGET=--build=${MACHINE_ARCH}-portbld-freebsd${OSREL}
MAN1= ${PORTNAME}.1
PORTDOCS= README
PLIST_FILES= bin/icpld etc/icpld.conf.sample etc/rc.d/icpld.sh.sample
OPTIONS= IPV6 "IPv6 internet support" off \
.include <bsd.port.pre.mk>
.if defined(WITH_IPV6)
CONFIGURE_ARGS+= --enable-ipv6
.else
CONFIGURE_ARGS+= --disable-ipv6
.endif
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/src/${PORTNAME} ${TARGETDIR}/bin
${INSTALL_MAN} ${WRKSRC}/man/${PORTNAME}.1 ${MANPREFIX}/man/man1
@${ECHO_MSG} '===> Installing ${TARGETDIR}/etc/icpld.conf.sample file.'
${INSTALL_DATA} ${WRKSRC}/icpld.conf.sample ${TARGETDIR}/etc
@${ECHO_MSG} '===> Installing ${TARGETDIR}/etc/rc.d/icpld.sh.sample'
${INSTALL_SCRIPT} ${WRKSRC}/contrib/icpld.sh.sample ${TARGETDIR}/etc/rc.d
post-install:
.if !defined(NOPORTDOCS)
@${MKDIR} ${DOCSDIR}
.for i in README
${INSTALL_DATA} ${WRKSRC}/${i} ${DOCSDIR}
.endfor
.endif
.include <bsd.port.post.mk>