diff options
Diffstat (limited to 'net-analyzer/mrtg/mrtg-2.13.2-r1.ebuild')
-rw-r--r-- | net-analyzer/mrtg/mrtg-2.13.2-r1.ebuild | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/net-analyzer/mrtg/mrtg-2.13.2-r1.ebuild b/net-analyzer/mrtg/mrtg-2.13.2-r1.ebuild new file mode 100644 index 000000000000..2394435c28f7 --- /dev/null +++ b/net-analyzer/mrtg/mrtg-2.13.2-r1.ebuild @@ -0,0 +1,41 @@ +# Copyright 1999-2006 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/mrtg/mrtg-2.13.2-r1.ebuild,v 1.1 2006/05/11 11:03:09 dragonheart Exp $ + +DESCRIPTION="A tool to monitor the traffic load on network-links" +HOMEPAGE="http://ee-staff.ethz.ch/~oetiker/webtools/mrtg/" +SRC_URI="http://ee-staff.ethz.ch/~oetiker/webtools/mrtg/pub/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~hppa ~ppc ~ppc64 ~sparc ~x86" +IUSE="doc" + +DEPEND="virtual/libc + dev-lang/perl + >=media-libs/gd-1.8.4" + +src_install () { + keepdir /var/lib/mrtg + + make DESTDIR="${D}" install || die "make install failed" + rm -fr ${D}/usr/share/doc/mrtg2 + + newinitd ${FILESDIR}/mrtg.rc ${PN} + newconfd ${FILESDIR}/mrtg.confd ${PN} + + dodoc ANNOUNCE CHANGES COPYRIGHT MANIFEST README THANKS + + if use doc ; then + docinto txt ; dodoc doc/*.txt + cp -pPR contrib ${D}/usr/share/doc/${PF}/contrib + prepalldocs + dohtml -r doc/*.html images/* + fi +} + +pkg_postinst(){ + einfo "You must configure mrtg before being able to run it. Try cfgmaker." + einfo "The following thread may be useful:" + einfo "http://forums.gentoo.org/viewtopic-t-105862.html" +} |