26 lines
690 B
Makefile
26 lines
690 B
Makefile
# $NetBSD: Makefile,v 1.4 2004/01/25 02:32:54 grantbeattie Exp $
|
|
|
|
DISTNAME= net-tools-1.60
|
|
CATEGORIES= net sysutils
|
|
MASTER_SITES= http://www.tazenda.demon.co.uk/phil/net-tools/
|
|
EXTRACT_SUFX= .tar.bz2
|
|
|
|
MAINTAINER= reed@reedmedia.net
|
|
#HOMEPAGE
|
|
COMMENT= Network configuration and status tools for Linux
|
|
|
|
USE_GNU_TOOLS+= make
|
|
# build uses linux/if_ether.h for example
|
|
ONLY_FOR_PLATFORM= Linux-*-*
|
|
|
|
do-configure:
|
|
cd ${WRKSRC} && yes "" | ${GMAKE} BASEDIR=${PREFIX} config
|
|
|
|
do-build:
|
|
cd ${WRKSRC} && yes "" | ${GMAKE} BASEDIR=${PREFIX}
|
|
|
|
do-install:
|
|
# XXX "make install" backs up files; use "make update"
|
|
cd ${WRKSRC} && ${GMAKE} BASEDIR=${PREFIX} update
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|