blob: 2e562f72e0704e656c6fe71fd53ba5e102499a6e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
# New ports collection makefile for: sipcalc
# Date created: 24.03.2002
# Whom: Janos.Mohacsi@dante.org.uk
#
# $FreeBSD$
#
PORTNAME= sipcalc
PORTVERSION= 1.1.1
CATEGORIES= net ipv6
MASTER_SITES= http://www.routemeister.net/projects/sipcalc/files/
MAINTAINER= Janos.Mohacsi@bsd.hu
COMMENT= Sipcalc is an IP subnet calculator with IPv6 and CGI interface support
LIB_DEPENDS= gnugetopt.1:${PORTSDIR}/devel/libgnugetopt
GNU_CONFIGURE= yes
MAN1= sipcalc.1
DOC_FILES= doc/sipcalc.txt
post-install:
.ifndef(NOPORTDOCS)
@${MKDIR} ${DOCSDIR}
.for file in ${DOC_FILES}
@${INSTALL_DATA} ${WRKSRC}/${file} ${DOCSDIR}
.endfor
.endif
.include <bsd.port.mk>
|