diff options
author | tv <tv@pkgsrc.org> | 1999-05-24 20:39:35 +0000 |
---|---|---|
committer | tv <tv@pkgsrc.org> | 1999-05-24 20:39:35 +0000 |
commit | 5c60ed579430954635a901b457a1fe4128eaca47 (patch) | |
tree | 65bbd73001946c26475423bf378f0a1854ed3cb6 /net/ntop | |
parent | 42a1a676be446ce3279f0baeeda7b3dcc1002c13 (diff) | |
download | pkgsrc-5c60ed579430954635a901b457a1fe4128eaca47.tar.gz |
Change {ONLY,NOT}_FOR_{ARCH,OPSYS} format to {ONLY,NOT}_FOR_PLATFORM
pattern match format. Minor pkglint along the way.
Diffstat (limited to 'net/ntop')
-rw-r--r-- | net/ntop/Makefile | 34 |
1 files changed, 17 insertions, 17 deletions
diff --git a/net/ntop/Makefile b/net/ntop/Makefile index a5ed53b366d..d60765eb0d6 100644 --- a/net/ntop/Makefile +++ b/net/ntop/Makefile @@ -1,28 +1,28 @@ -# $NetBSD: Makefile,v 1.7 1998/11/04 00:06:32 bad Exp $ +# $NetBSD: Makefile,v 1.8 1999/05/24 20:39:47 tv Exp $ -DISTNAME= ntop-1.0 -CATEGORIES= net -MASTER_SITES= ftp://ftp.unipi.it/pub/local/ntop/source/ -EXTRACT_SUFX= .src.tar.gz +DISTNAME= ntop-1.0 +CATEGORIES= net +MASTER_SITES= ftp://ftp.unipi.it/pub/local/ntop/source/ +EXTRACT_SUFX= .src.tar.gz -MAINTAINER= kim@tac.nyc.ny.us +MAINTAINER= kim@tac.nyc.ny.us -BUILD_DEPENDS+= autoconf:../../devel/autoconf -DEPENDS+= ncurses-1.9.9g:../../devel/ncurses +BUILD_DEPENDS= autoconf:../../devel/autoconf +DEPENDS= ncurses-1.9.9g:../../devel/ncurses -HOMEPAGE= http://www-serra.unipi.it/~ntop/ +HOMEPAGE= http://www-serra.unipi.it/~ntop/ -NOT_FOR_ARCHS= alpha mips # elf problems WRT libcurses +NOT_FOR_PLATFORM= *-*-{alpha,mips} # elf problems WRT libcurses -HAS_CONFIGURE= yes -GNU_CONFIGURE= yes +HAS_CONFIGURE= yes +GNU_CONFIGURE= yes -CFLAGS+= -I${PREFIX}/include -LDFLAGS+= -L${PREFIX}/lib +CFLAGS+= -I${PREFIX}/include +LDFLAGS+= -L${PREFIX}/lib -CONFIGURE_ENV+= CPPFLAGS=-I${PREFIX}/include -CONFIGURE_ENV+= CFLAGS=-I${PREFIX}/include -CONFIGURE_ENV+= LDFLAGS=-L${PREFIX}/lib +CONFIGURE_ENV+= CPPFLAGS=-I${PREFIX}/include +CONFIGURE_ENV+= CFLAGS=-I${PREFIX}/include +CONFIGURE_ENV+= LDFLAGS=-L${PREFIX}/lib pre-configure: (cd ${WRKSRC}; autoconf) |