mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-26 00:55:14 +00:00
fa3a17c064
minor COMMENT typos and surrounding whitespace fixes. A few Makefiles where not included as they contain Latin-1 characters that break the Phabricator workflow. Categories P-S. CR: D422 Approved by: portmgr (bapt)
30 lines
750 B
Makefile
30 lines
750 B
Makefile
# Created by: Jeremy Shaffner <jeremy@external.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= ipsc
|
|
PORTVERSION= 0.4.3
|
|
CATEGORIES= sysutils
|
|
MASTER_SITES= http://archive.debian.org/debian/pool/main/i/ipsc/
|
|
DISTNAME= ${PORTNAME}_${PORTVERSION}.orig
|
|
|
|
MAINTAINER= cy@FreeBSD.org
|
|
COMMENT= IP Subnet Calculator
|
|
|
|
BUILD_DEPENDS= ${PRIPS_WRKSRC}/prips.o:${PORTSDIR}/sysutils/prips:build
|
|
|
|
WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION}/src
|
|
|
|
ALL_TARGET= ipsc
|
|
PLIST_FILES= bin/ipsc man/man8/ipsc.8.gz
|
|
|
|
PRIPS_WRKSRC!= cd ${.CURDIR}/../prips && ${MAKE} -V WRKSRC
|
|
|
|
post-extract:
|
|
${LN} -s ${PRIPS_WRKSRC} ${WRKDIR}/prips
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/ipsc ${STAGEDIR}${PREFIX}/bin
|
|
${INSTALL_MAN} ${FILESDIR}/ipsc.8 ${STAGEDIR}${MANPREFIX}/man/man8
|
|
|
|
.include <bsd.port.mk>
|