1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-01 01:17:02 +00:00
freebsd-ports/net-mgmt/NeTraMet/Makefile
Ade Lovett 54a0b86543 Mass-conversion to the USE_AUTOTOOLS New World Order. The code present
in bsd.autotools.mk essentially makes this a no-op given that all the
old variables set a USE_AUTOTOOLS_COMPAT variable, which is parsed in
exactly the same way as USE_AUTOTOOLS itself.

Moreover, USE_AUTOTOOLS has already been extensively tested by the GNOME
team -- all GNOME 2.12.x ports use it.

Preliminary documentation can be found at:
	http://people.FreeBSD.org/~ade/autotools.txt

which is in the process of being SGMLized before introduction into the
Porters Handbook.

Light blue touch-paper.  Run.
2005-11-15 06:52:12 +00:00

51 lines
1.2 KiB
Makefile

# New ports collection makefile for: NeTraMet
# Date created: 24-Feb-2001
# Whom: Jimmy Olgeni <olgeni@FreeBSD.org>
#
# $FreeBSD$
#
PORTNAME= NeTraMet
PORTVERSION= 4.4
PORTREVISION= 3
CATEGORIES= net-mgmt
MASTER_SITES= ftp://ftp.auckland.ac.nz/pub/iawg/NeTraMet/ \
http://www2.auckland.ac.nz/net/Accounting/
DISTFILES+= NeTraMet${PORTVERSION:S/.//}${EXTRACT_SUFX} \
${NETRAMET_DOCS}
DIST_SUBDIR= netramet
EXTRACT_ONLY= NeTraMet${PORTVERSION:S/.//}${EXTRACT_SUFX}
MAINTAINER= olgeni@FreeBSD.org
COMMENT= Implementation of the Internet Accounting Architecture
NETRAMET_DOCS= usguide.pdf srlguide.pdf ntmref.pdf nm_rc.pdf \
nifty.pdf fdutil.pdf
WRKSRC= ${WRKDIR}/NeTraMet${PORTVERSION:S/.//}
USE_REINPLACE= yes
USE_AUTOTOOLS= autoconf:213
USE_GMAKE= yes
.if defined(WITH_MOTIF)
USE_MOTIF= yes
CONFIGURE_ENV+= MOTIF_LIB="${MOTIFLIB}"
PLIST_SUB= MOTIF=""
.else
PLIST_SUB= MOTIF="@comment "
.endif
post-patch:
@${REINPLACE_CMD} -e "s|"/etc/mib.txt"|${LOCALBASE}/share/NeTraMet/mibs/mib.txt|g;" ${WRKSRC}/src/snmplib/mib.c
post-install:
.if !defined(NOPORTDOCS)
@${MKDIR} ${DOCSDIR}
.for FILE in ${NETRAMET_DOCS}
@${INSTALL_DATA} ${DISTDIR}/${DIST_SUBDIR}/${FILE} ${DOCSDIR}
.endfor
.endif
.include <bsd.port.mk>