Portage is a package management system used by Gentoo Linux
# ChangeLog for net-mail/qmrtg
# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2
# $Header: /var/cvsroot/gentoo-x86/net-mail/qmrtg/ChangeLog,v 1.2 2007/06/12 13:05:16 genone Exp $
12 Jun 2007; Marius Mauch
Replacing einfo with elog
*qmrtg-2.1 (08 Oct 2006)
08 Oct 2006; Markus Ullmann
+files/qmrtg.conf.sample.patch, +metadata.xml, +qmrtg-2.1.ebuild:
Initial import wrt bug #71417 thanks to Angelo Leto and Gudleik Rasch for
providing the ebuild in bug #71417
AUX mrtg.cfg.patch 3569 RMD160 e0736737f96d7c095b10b003f8287a681572e5cc SHA1 7ecc60d8fad2ad673a3830e3d526694106104a3d SHA256 adf0c8b78e70f045a247ee5e28dc68bdf74062dcf2660bfff4a6ff14ccf97e61
AUX qmrtg.conf.sample.patch 603 RMD160 2f8d397fef05d5c6db30988ffdf466deee3b8b66 SHA1 63da4ce472788aee1a3f32dde94f3aec8c642b96 SHA256 f3de43849b7e60743fb009b8f27aec082e543730a9dd1241e9712417d0ffc652
DIST qmrtg-2.1.tar.gz 97255 RMD160 6c9f6f9b8176b885a0277a6738715e8651740be2 SHA1 a929ddd5659d9613f6966e81852064b02dec4b18 SHA256 6f8cd553f2c2ae66c7177694e96d6ee78e4892bdfd2b6227bffda184d1dcb5dd
EBUILD qmrtg-2.1.ebuild 1246 RMD160 dca8f4ddfa861e7752ba146ac4a1073a6d879a9e SHA1 9fa79793edd1162a881ce89ab1353eb9c43c42e7 SHA256 92eef33ca74235b38004368961146f14568ba20e254cb26b6995bdd781d3b43b
MISC ChangeLog 576 RMD160 ddd4f46e3332f1734ccbb4714c266d3bb6d63335 SHA1 15b96b482770ef188befe1261fe460a9122b70fd SHA256 4e2854af4cb3da54ff46dc336f94bc1fb225274d71ad539b1b6cd352030c5181
MISC metadata.xml 159 RMD160 28e799fe0fd02aaab9d4bbe5595f133101606f5b SHA1 9f5df3eabd621951a959cc8e0e2e0d352cd1fe1e SHA256 b75c711bd971e46f0ec957e833c60879b0c5023e0bb94409a6255781b69f6dc6
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-mail/qmrtg/qmrtg-2.1.ebuild,v 1.3 2007/07/14 22:22:19 mr_bones_ Exp $
inherit eutils
DESCRIPTION="A tool to analyze qmail's activity with the goal to graph everything through MRTG."
HOMEPAGE="http://dev.publicshout.org/qmrtg"
SRC_URI="${HOMEPAGE}/download/${PN}-${PV}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="doc"
DEPEND="virtual/libc"
RDEPEND="net-analyzer/mrtg"
src_unpack() {
unpack ${A}
cd "${S}/examples"
epatch "${FILESDIR}/mrtg.cfg.patch"
epatch "${FILESDIR}/qmrtg.conf.sample.patch"
}
src_compile () {
econf || die "econf failed"
emake || die "emake failed"
}
src_install () {
emake install DESTDIR=${D} || die "emake install failed"
keepdir /var/lib/qmrtg
dodoc INSTALL.txt
if use doc ; then
docinto txt
dodoc doc/*.txt
docinto html
dohtml -r html/*
fi
insinto /usr/share/qmrtg2
doins examples/*
}
pkg_postinst () {
elog
elog "You need to configure manually qmrtg in order to run it."
elog "The configuration templates in /usr/share/qmrtg2/ and"
elog "the file in /usr/share/doc/qmrtg-2.1/INSTALL.txt.gz"
elog "will be useful."
elog
}