From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1120077-garchives=archives.gentoo.org@lists.gentoo.org> Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id E6A5F138334 for <garchives@archives.gentoo.org>; Sat, 2 Nov 2019 21:40:38 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 00FB3E08AB; Sat, 2 Nov 2019 21:40:38 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id D6D4FE08AB for <gentoo-commits@lists.gentoo.org>; Sat, 2 Nov 2019 21:40:37 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 32ADB34C724 for <gentoo-commits@lists.gentoo.org>; Sat, 2 Nov 2019 21:40:36 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1D0C8890 for <gentoo-commits@lists.gentoo.org>; Sat, 2 Nov 2019 21:40:34 +0000 (UTC) From: "Robin H. Johnson" <robbat2@gentoo.org> To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Robin H. Johnson" <robbat2@gentoo.org> Message-ID: <1572730824.995223f937ca2dbfb7b15e09fdae4adbbf93f536.robbat2@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-mail/qlogtools/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-mail/qlogtools/qlogtools-3.1-r1.ebuild X-VCS-Directories: net-mail/qlogtools/ X-VCS-Committer: robbat2 X-VCS-Committer-Name: Robin H. Johnson X-VCS-Revision: 995223f937ca2dbfb7b15e09fdae4adbbf93f536 X-VCS-Branch: master Date: Sat, 2 Nov 2019 21:40:34 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: d051b2e3-7840-4eca-8bb9-63ec59a9fb92 X-Archives-Hash: 42e72da895b31696ae748f312f77c2e2 commit: 995223f937ca2dbfb7b15e09fdae4adbbf93f536 Author: Robin H. Johnson <robbat2 <AT> gentoo <DOT> org> AuthorDate: Sat Nov 2 21:40:03 2019 +0000 Commit: Robin H. Johnson <robbat2 <AT> gentoo <DOT> org> CommitDate: Sat Nov 2 21:40:24 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=995223f9 net-mail/qlogtools: Update to EAPI7 Package-Manager: Portage-2.3.78, Repoman-2.3.17 Signed-off-by: Robin H. Johnson <robbat2 <AT> gentoo.org> Bug: https://bugs.gentoo.org/show_bug.cgi?id=697246 net-mail/qlogtools/qlogtools-3.1-r1.ebuild | 39 ++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) diff --git a/net-mail/qlogtools/qlogtools-3.1-r1.ebuild b/net-mail/qlogtools/qlogtools-3.1-r1.ebuild new file mode 100644 index 00000000000..df13e770840 --- /dev/null +++ b/net-mail/qlogtools/qlogtools-3.1-r1.ebuild @@ -0,0 +1,39 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit eutils toolchain-funcs + +DESCRIPTION="Qmail Log processing tools" +HOMEPAGE="http://untroubled.org/qlogtools/" +SRC_URI="http://untroubled.org/qlogtools/archive/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~sparc ~x86" +IUSE="" + +DEPEND="" +RDEPEND="!app-text/multitail" + +PATCHES=( + "${FILESDIR}"/qlogtools-3.1-errno.patch +) + +src_configure() { + echo "$(tc-getCC) ${CFLAGS}" > conf-cc + echo "$(tc-getCC) ${LDFLAGS}" > conf-ld + echo "${D}/usr/bin" > conf-bin + echo "${D}/usr/share/man/" > conf-man +} + +src_install() { + dodir /usr/bin /usr/share/man/ + ./installer || die "Installer failed" + dodoc ANNOUNCEMENT FILES NEWS README TARGETS VERSION +} + +pkg_postinst() { + elog "Please see /usr/share/doc/${PF}/README for configuration information" +}