1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-05 22:43:24 +00:00
freebsd-ports/net/mrtg/Makefile

58 lines
2.0 KiB
Makefile
Raw Normal View History

# New ports collection makefile for: MRTG
# Version required: 2.6.6
# Date created: April 18th 1997
# Whom: James FitzGibbon <jfitz@FreeBSD.org>
#
# $Id: Makefile,v 1.10 1998/10/10 02:09:30 smace Exp $
#
DISTNAME= mrtg-2.6.6
CATEGORIES= net
1997-07-05 03:19:18 +00:00
MASTER_SITES= http://ee-staff.ethz.ch/~oetiker/webtools/mrtg/pub/
MAINTAINER= jfitz@FreeBSD.ORG
1997-07-05 03:19:18 +00:00
BUILD_DEPENDS= ${PREFIX}/lib/libgd.a:${PORTSDIR}/graphics/gd
1997-07-05 03:19:18 +00:00
USE_PERL5= YES
1998-10-10 02:09:30 +00:00
MAKE_ENV+= PERL=${PERL}
1997-07-05 03:19:18 +00:00
GNU_CONFIGURE= YES
CONFIGURE_ARGS= --with-gd-lib=${PREFIX}/lib \
--with-gd-inc=${PREFIX}/include/gd
CONFIGURE_ENV= PERL=${PERL}
do-install:
${MKDIR} -p -m 755 ${PREFIX}/etc/mrtg
1998-08-30 15:49:44 +00:00
${MKDIR} -p -m 755 ${PREFIX}/lib/perl5/site_perl/${PERL_VER}
${MKDIR} -p -m 755 ${PREFIX}/share/mrtg
${MKDIR} -p -m 755 ${PREFIX}/share/doc/mrtg
for file in ANNOUNCE CHANGES COPYING COPYRIGHT MANIFEST README doc/config.html doc/config.pod doc/config.txt doc/htaccess.txt doc/logfile-format.txt doc/manual.html doc/manual.txt doc/mibhelp.txt doc/squid.txt ; do \
${INSTALL_DATA} ${WRKSRC}/$$file ${PREFIX}/share/doc/mrtg/; \
done
${INSTALL_DATA} ${WRKSRC}/doc/sample-mrtg.cfg ${PREFIX}/etc/mrtg
for file in ${WRKSRC}/images/*.gif; do \
${INSTALL_DATA} $$file ${PREFIX}/share/mrtg/; \
done
for file in SNMP_Session.pm SNMP_util.pm BER.pm; do \
${INSTALL_DATA} ${WRKSRC}/run/$$file ${PREFIX}/lib/perl5/site_perl/${PERL_VER}; \
done
${INSTALL_PROGRAM} ${WRKSRC}/run/rateup ${PREFIX}/bin/
for file in mrtg cfgmaker indexmaker; do \
${INSTALL_SCRIPT} ${WRKSRC}/run/$$file ${PREFIX}/bin/; \
done
1998-09-28 17:11:24 +00:00
post-install:
.if !defined(BATCH)
@${ECHO} ""
@${ECHO} "############################################################################"
@${ECHO} "# Please create a MRTG config file in ${PREFIX}/etc/mrtg #"
@${ECHO} "# A configuration file can be automatically generated with cfgmaker #"
@${ECHO} "# A sample configuration file is installed as sample-mrtg.cfg #"
1998-09-28 17:11:24 +00:00
@${ECHO} "############################################################################"
.endif
.include <bsd.port.mk>