blob: 8a2ea5af5a064a7bfadc232c51c344a17085ea9a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
|
# 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.12 1999/03/29 17:09:03 jfitz Exp $
#
DISTNAME= mrtg-2.8.6
CATEGORIES= net
MASTER_SITES= http://ee-staff.ethz.ch/~oetiker/webtools/mrtg/pub/
MAINTAINER= jfitz@FreeBSD.ORG
BUILD_DEPENDS= ${PREFIX}/lib/libgd.a:${PORTSDIR}/graphics/gd
USE_PERL5= YES
MAKE_ENV+= PERL=${PERL}
GNU_CONFIGURE= YES
CONFIGURE_ARGS= --with-gd-lib=${PREFIX}/lib \
--with-gd-inc=${PREFIX}/include/gd
CONFIGURE_ENV= PERL=${PERL}
do-install:
${MKDIR} -m 755 ${PREFIX}/etc/mrtg
${MKDIR} -m 755 ${PREFIX}/lib/perl5/site_perl/${PERL_VER}
${MKDIR} -m 755 ${PREFIX}/share/mrtg
.if !defined(NOPORTDOCS)
${MKDIR} -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
.endif
${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 cfgmaker_ip indexmaker; do \
${INSTALL_SCRIPT} ${WRKSRC}/run/$$file ${PREFIX}/bin/; \
done
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 #"
@${ECHO} "############################################################################"
.endif
.include <bsd.port.mk>
|