diff options
author | Michael Orlitzky <mjo@gentoo.org> | 2020-07-24 18:09:14 -0400 |
---|---|---|
committer | Michael Orlitzky <mjo@gentoo.org> | 2020-07-24 18:09:14 -0400 |
commit | 33a9f0ebc9c3f95ee8583cf1163996e7635993cc (patch) | |
tree | df2fee0dff4ae5e256dc8e3629fcae340bb795a8 | |
parent | net-mail/postfix-logwatch: maintainer stabilize on amd64/x86. (diff) | |
download | gentoo-33a9f0ebc9c3f95ee8583cf1163996e7635993cc.tar.gz gentoo-33a9f0ebc9c3f95ee8583cf1163996e7635993cc.tar.bz2 gentoo-33a9f0ebc9c3f95ee8583cf1163996e7635993cc.zip |
net-mail/postfix-logwatch: remove old "unused" version.
Package-Manager: Portage-2.3.103, Repoman-2.3.23
Signed-off-by: Michael Orlitzky <mjo@gentoo.org>
-rw-r--r-- | net-mail/postfix-logwatch/postfix-logwatch-1.40.03-r3.ebuild | 44 |
1 files changed, 0 insertions, 44 deletions
diff --git a/net-mail/postfix-logwatch/postfix-logwatch-1.40.03-r3.ebuild b/net-mail/postfix-logwatch/postfix-logwatch-1.40.03-r3.ebuild deleted file mode 100644 index 49ed6220090f..000000000000 --- a/net-mail/postfix-logwatch/postfix-logwatch-1.40.03-r3.ebuild +++ /dev/null @@ -1,44 +0,0 @@ -# Copyright 1999-2019 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -DESCRIPTION="A log analyzer for postfix" -HOMEPAGE="http://logreporters.sourceforge.net/" -SRC_URI="mirror://sourceforge/logreporters/${P}.tgz" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="amd64 x86" - -RDEPEND="dev-lang/perl" - -PATCHES=( - "${FILESDIR}/unescaped-left-brace.patch" - "${FILESDIR}/redundant-argument-to-sprintf.patch" - "${FILESDIR}/multi-digit-enhanced-status.patch" - "${FILESDIR}/all-server-ports-busy-lines.patch" -) - -src_prepare() { - default - # Replace the default config file location with ours. - local cfg_default='/usr/local/etc/${progname_prefix}-logwatch.conf' - local cfg_gentoo='/etc/${progname_prefix}-logwatch.conf'; - sed -i "s~${cfg_default}~${cfg_gentoo}~" ${PN} \ - || die 'failed to update the default config location' -} - -src_compile() { - # The default make target just outputs instructions. We don't want - # the user to see these, so we avoid the default emake. - : -} - -src_install() { - dodoc Bugs Changes README ${PN}.conf-topn - doman ${PN}.1 - dobin ${PN} - insinto /etc - doins ${PN}.conf -} |