6963a4f758
Suggested by: skv
42 lines
847 B
Makefile
42 lines
847 B
Makefile
# New ports collection makefile for: braa
|
|
# Date created: 31.05.2003
|
|
# Whom: Kirill Ponomarew <ponomarew@oberon.net>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= braa
|
|
PORTVERSION= 0.81
|
|
PORTREVISION= 1
|
|
CATEGORIES= net-mgmt
|
|
MASTER_SITES= http://s-tech.elsat.net.pl/braa/
|
|
|
|
MAINTAINER= stas@FreeBSD.org
|
|
COMMENT= Tool for making SNMP queries
|
|
|
|
LIB_DEPENDS= netsnmp.10:${PORTSDIR}/net-mgmt/net-snmp
|
|
|
|
USE_GMAKE= yes
|
|
LDFLAGS+= -lcompat
|
|
|
|
PORTDOCS= README
|
|
PLIST_FILES= bin/braa
|
|
|
|
post-patch:
|
|
.for file in Makefile
|
|
@${REINPLACE_CMD} -e \
|
|
's|CFLAGS =|CFLAGS+=${CFLAGS}|g ; \
|
|
s|LDFLAGS =|LDFLAGS?=${LDFLAGS}|g ; \
|
|
s|strip $$(OUT)||g' ${WRKSRC}/${file}
|
|
.endfor
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin
|
|
|
|
post-install:
|
|
.if !defined(NOPORTDOCS)
|
|
${MKDIR} ${DOCSDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/README ${DOCSDIR}
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|