diff options
author | Andrej Kacian <ticho@gentoo.org> | 2007-11-14 19:29:52 +0000 |
---|---|---|
committer | Andrej Kacian <ticho@gentoo.org> | 2007-11-14 19:29:52 +0000 |
commit | f4785ebc8de52ec7c1f5b45ddf8edb465c151871 (patch) | |
tree | 04d07e1852a0741f7f770e330aac14b049421319 /net-mail/mailgraph/mailgraph-1.12.ebuild | |
parent | amd64 stable wrt #193991 (diff) | |
download | gentoo-2-f4785ebc8de52ec7c1f5b45ddf8edb465c151871.tar.gz gentoo-2-f4785ebc8de52ec7c1f5b45ddf8edb465c151871.tar.bz2 gentoo-2-f4785ebc8de52ec7c1f5b45ddf8edb465c151871.zip |
Version cleanup. Get rid of logrotate USE flag - bug #198901.
(Portage version: 2.1.3.18)
Diffstat (limited to 'net-mail/mailgraph/mailgraph-1.12.ebuild')
-rw-r--r-- | net-mail/mailgraph/mailgraph-1.12.ebuild | 57 |
1 files changed, 0 insertions, 57 deletions
diff --git a/net-mail/mailgraph/mailgraph-1.12.ebuild b/net-mail/mailgraph/mailgraph-1.12.ebuild deleted file mode 100644 index 020f4f6abe0c..000000000000 --- a/net-mail/mailgraph/mailgraph-1.12.ebuild +++ /dev/null @@ -1,57 +0,0 @@ -# Copyright 1999-2007 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-mail/mailgraph/mailgraph-1.12.ebuild,v 1.7 2007/04/01 18:27:52 ticho Exp $ - -inherit eutils webapp - -DESCRIPTION="A mail statistics RRDtool frontend for Postfix" -HOMEPAGE="http://people.ee.ethz.ch/~dws/software/mailgraph/" -SRC_URI="http://people.ee.ethz.ch/~dws/software/${PN}/pub/${P}.tar.gz" - -LICENSE="GPL-2" -KEYWORDS="~amd64 ~ppc ppc64 x86" -IUSE="" - -RDEPEND="dev-lang/perl - dev-perl/File-Tail - >=net-analyzer/rrdtool-1.2.2" -DEPEND=">=sys-apps/sed-4 - >=net-analyzer/rrdtool-1.2.2" - -pkg_setup() { - webapp_pkg_setup - built_with_use net-analyzer/rrdtool perl \ - || die "net-analyzer/rrdtool must be built with USE=perl" -} - -src_unpack() { - unpack ${A} - cd ${S} - sed -i \ - -e "s|\(my \$rrd = '\).*'|\1/var/lib/mailgraph/mailgraph.rrd'|" \ - -e "s|\(my \$rrd_virus = '\).*'|\1/var/lib/mailgraph/mailgraph_virus.rrd'|" \ - mailgraph.cgi || die "sed mailgraph.cgi failed" -} - -src_install() { - webapp_src_preinst - - # for the RRDs - keepdir /var/lib/mailgraph - - # mailgraph daemon - newbin mailgraph.pl mailgraph - - # mailgraph CGI script - exeinto ${MY_CGIBINDIR} - doexe mailgraph.cgi - - # init/conf files for mailgraph daemon - newinitd ${FILESDIR}/mailgraph.initd mailgraph - newconfd ${FILESDIR}/mailgraph.confd mailgraph - - # docs - dodoc README CHANGES - - webapp_src_install -} |