blob: ac51d15f8982f8da9b5ed469ba6e80cc15056066 (
plain) (
blame)
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
|
# Created by: Domas Mituzas <midom@dammit.lt>
# $FreeBSD$
PORTNAME= cidr
PORTVERSION= 2.3.2
PORTREVISION= 1
CATEGORIES= net-mgmt
MASTER_SITES= CRITICAL
MAINTAINER= ehaupt@FreeBSD.org
COMMENT= RFC 1878 subnet calculator / helper
LICENSE= GPLv2
MAN1= cidr.1
PLIST_FILES= bin/cidr
do-build:
${CC} ${CFLAGS} ${WRKSRC}/${PORTNAME}.c -o ${WRKSRC}/${PORTNAME}
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin
${INSTALL_MAN} ${WRKSRC}/${MAN1} ${MANPREFIX}/man/man1
.include <bsd.port.mk>
|