mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-28 10:08:24 +00:00
6ca0d8a6b0
Notified by: arrowd
23 lines
500 B
Makefile
23 lines
500 B
Makefile
PORTNAME= cidr
|
|
DISTVERSION= 2.3.2
|
|
PORTREVISION= 2
|
|
CATEGORIES= net-mgmt
|
|
MASTER_SITES= LOCAL/ehaupt
|
|
|
|
MAINTAINER= ehaupt@FreeBSD.org
|
|
COMMENT= RFC 1878 subnet calculator / helper
|
|
|
|
LICENSE= GPLv2
|
|
|
|
PLIST_FILES= bin/cidr \
|
|
share/man/man1/cidr.1.gz
|
|
|
|
do-build:
|
|
${CC} ${CFLAGS} ${WRKSRC}/${PORTNAME}.c -o ${WRKSRC}/${PORTNAME}
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin
|
|
${INSTALL_MAN} ${WRKSRC}/${PORTNAME}.1 ${STAGEDIR}${PREFIX}/share/man/man1
|
|
|
|
.include <bsd.port.mk>
|