diff options
author | 2017-09-05 09:27:09 -0400 | |
---|---|---|
committer | 2017-09-05 09:27:29 -0400 | |
commit | dc1f3a7260ac66a9eddeccd01e60cb1fe7b780fb (patch) | |
tree | 8331c810c5e5919fd6bb9a24a6b2f8d98f9ce610 /net-mail/postfix-logwatch/postfix-logwatch-1.40.03-r2.ebuild | |
parent | dev-libs/libuv: Version bump. (diff) | |
download | gentoo-dc1f3a7260ac66a9eddeccd01e60cb1fe7b780fb.tar.gz gentoo-dc1f3a7260ac66a9eddeccd01e60cb1fe7b780fb.tar.bz2 gentoo-dc1f3a7260ac66a9eddeccd01e60cb1fe7b780fb.zip |
net-mail/postfix-logwatch: new revision with another new bugfix patch.
Package-Manager: Portage-2.3.6, Repoman-2.3.1
Diffstat (limited to 'net-mail/postfix-logwatch/postfix-logwatch-1.40.03-r2.ebuild')
-rw-r--r-- | net-mail/postfix-logwatch/postfix-logwatch-1.40.03-r2.ebuild | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/net-mail/postfix-logwatch/postfix-logwatch-1.40.03-r2.ebuild b/net-mail/postfix-logwatch/postfix-logwatch-1.40.03-r2.ebuild new file mode 100644 index 000000000000..b798aeb3512f --- /dev/null +++ b/net-mail/postfix-logwatch/postfix-logwatch-1.40.03-r2.ebuild @@ -0,0 +1,43 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +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" +) + +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 +} |