7d2a81c6ca
- Fix multiple buffer overflows. Patch from Jaromir Capik - Fix multiple spelling errors. Suggestions from Ross Richardson PR: 192480 Submitted by: tkato432@yahoo.com
26 lines
591 B
Makefile
26 lines
591 B
Makefile
# Created by: Janos.Mohacsi@dante.org.uk
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= sipcalc
|
|
PORTVERSION= 1.1.6
|
|
CATEGORIES= net-mgmt ipv6
|
|
MASTER_SITES= http://www.routemeister.net/projects/sipcalc/files/
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= IP subnet calculator with IPv6 support
|
|
|
|
GNU_CONFIGURE= yes
|
|
|
|
PORTDOCS= *
|
|
PLIST_FILES= bin/sipcalc man/man1/sipcalc.1.gz
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
post-install:
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
(cd ${WRKSRC} && ${INSTALL_DATA} ChangeLog README \
|
|
${STAGEDIR}${DOCSDIR})
|
|
(cd ${WRKSRC}/doc && ${INSTALL_DATA} sipcalc.txt \
|
|
${STAGEDIR}${DOCSDIR})
|
|
|
|
.include <bsd.port.mk>
|