1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-21 04:06:46 +00:00
freebsd-ports/net-mgmt/nettop/Makefile
Yen-Ming Lee 46947502dd - fix build in 7-CURRENT
Noticed by:	kris mail
2007-04-01 03:09:43 +00:00

40 lines
1006 B
Makefile

# New ports collection makefile for: nettop
# Date created: 21 April 2006
# Whom: Yen-Ming Lee <leeym@FreeBSD.org>
#
# $FreeBSD$
#
PORTNAME= nettop
PORTVERSION= 0.2.3
CATEGORIES= net-mgmt
MASTER_SITES= http://srparish.net/scripts/
MAINTAINER= leeym@FreeBSD.org
COMMENT= A program which looks like top, but is for network packets
LIB_DEPENDS= slang.1:${PORTSDIR}/devel/libslang
GNU_CONFIGURE= yes
CONFIGURE_ARGS= --with-slang-libraries=${LOCALBASE}/lib \
--with-slang-includes=${LOCALBASE}/include
CONFIGURE_ENV= LDFLAGS="-lcurses"
PLIST_FILES= bin/nettop
PORTDOCS= README THANKS ChangeLog
post-patch:
${REINPLACE_CMD} -e '/count.*size/s/(int) //g' ${WRKSRC}/nettop.c
.if !exists(/usr/lib/libpthread.so)
${REINPLACE_CMD} -e 's/lpthread/lc_r/g' ${WRKSRC}/${CONFIGURE_SCRIPT}
.endif
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin/
.if !defined(NOPORTDOCS)
${MKDIR} ${DOCSDIR}
cd ${WRKSRC} && ${INSTALL_DATA} ${PORTDOCS} ${DOCSDIR}
.endif
.include <bsd.port.mk>