f935a609c5
supports them. This is determined by running ``configure --help'' in do-configure target and set the shell variable _LATE_CONFIGURE_ARGS which is then passed to CONFIGURE_ARGS. - Remove --mandir and --infodir in ports' Makefile where applicable Few ports use REINPLACE_CMD to achieve the same effect, remove them too. - Correct some manual pages location from PREFIX/man to MANPREFIX/man - Define INFO_PATH where necessary - Document that .info files are installed in a subdirectory relative to PREFIX/INFO_PATH and slightly change add-plist-info to use INFO_PATH and subdirectory detection. PR: ports/111470 Approved by: portmgr Discussed with: stas (Mk/*), gerald (info related stuffs) Tested by: pointyhat exp run
31 lines
629 B
Makefile
31 lines
629 B
Makefile
# New ports collection makefile for: sipcalc
|
|
# Date created: 24.03.2002
|
|
# Whom: Janos.Mohacsi@dante.org.uk
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= sipcalc
|
|
PORTVERSION= 1.1.4
|
|
CATEGORIES= net-mgmt ipv6
|
|
MASTER_SITES= http://www.routemeister.net/projects/sipcalc/files/
|
|
|
|
MAINTAINER= janos.mohacsi@bsd.hu
|
|
COMMENT= Sipcalc is an IP subnet calculator with IPv6 support
|
|
|
|
USE_GETOPT_LONG= yes
|
|
|
|
GNU_CONFIGURE= yes
|
|
MAN1= sipcalc.1
|
|
|
|
DOC_FILES= doc/sipcalc.txt ChangeLog README
|
|
|
|
post-install:
|
|
.ifndef(NOPORTDOCS)
|
|
@${MKDIR} ${DOCSDIR}
|
|
.for file in ${DOC_FILES}
|
|
@${INSTALL_DATA} ${WRKSRC}/${file} ${DOCSDIR}
|
|
.endfor
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|