c33edccf6e
ipcalc is a small tool that operates on IPv4 networks. It can operate in one of four modes: network describing, netmask describing, finding or splitting. From Pierre-Yves Ritschard <pyr at spootnik dot org> ok steven@
27 lines
500 B
Makefile
27 lines
500 B
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2006/10/24 11:57:05 ajacoutot Exp $
|
|
|
|
COMMENT= "small network calculator"
|
|
|
|
DISTNAME= ipcalc-1.1
|
|
CATEGORIES= net
|
|
|
|
HOMEPAGE= http://spootnik.org/ipcalc/
|
|
|
|
MAINTAINER= Pierre-Yves Ritschard <pyr@spootnik.org>
|
|
|
|
# BSD
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
MASTER_SITES= ${HOMEPAGE}
|
|
|
|
NO_REGRESS= Yes
|
|
WANTLIB= c
|
|
|
|
do-configure:
|
|
@perl -pi -e 's,/usr/local,${PREFIX},g' ${WRKSRC}/Makefile
|
|
|
|
.include <bsd.port.mk>
|