From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1026491-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 300A6138330 for <garchives@archives.gentoo.org>; Sun, 27 May 2018 12:01:07 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 39FCBE089E; Sun, 27 May 2018 12:01:06 +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 10F75E089E for <gentoo-commits@lists.gentoo.org>; Sun, 27 May 2018 12:01:06 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 DE5E6335C29 for <gentoo-commits@lists.gentoo.org>; Sun, 27 May 2018 12:01:04 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4651B40 for <gentoo-commits@lists.gentoo.org>; Sun, 27 May 2018 12:01:03 +0000 (UTC) From: "Pacho Ramos" <pacho@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, "Pacho Ramos" <pacho@gentoo.org> Message-ID: <1527422450.c8ae91cbf788bd7be35f66071395cc02c86d1547.pacho@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-admin/logsentry/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-admin/logsentry/logsentry-1.1.1.ebuild X-VCS-Directories: app-admin/logsentry/ X-VCS-Committer: pacho X-VCS-Committer-Name: Pacho Ramos X-VCS-Revision: c8ae91cbf788bd7be35f66071395cc02c86d1547 X-VCS-Branch: master Date: Sun, 27 May 2018 12:01:03 +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-Archives-Salt: 5b0854ca-3774-4ef5-a270-0d1a72f4a06f X-Archives-Hash: 9e9a00e6917b24d95a965995881e054a commit: c8ae91cbf788bd7be35f66071395cc02c86d1547 Author: Pacho Ramos <pacho <AT> gentoo <DOT> org> AuthorDate: Sun May 27 11:46:29 2018 +0000 Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org> CommitDate: Sun May 27 12:00:50 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c8ae91cb app-admin/logsentry: Drop old Package-Manager: Portage-2.3.38, Repoman-2.3.9 app-admin/logsentry/logsentry-1.1.1.ebuild | 67 ------------------------------ 1 file changed, 67 deletions(-) diff --git a/app-admin/logsentry/logsentry-1.1.1.ebuild b/app-admin/logsentry/logsentry-1.1.1.ebuild deleted file mode 100644 index ac050f8053e..00000000000 --- a/app-admin/logsentry/logsentry-1.1.1.ebuild +++ /dev/null @@ -1,67 +0,0 @@ -# Copyright 1999-2018 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=0 - -inherit toolchain-funcs - -DESCRIPTION="Automatically monitor system logs and mail security violations" -# Seems that the project has been discontinued by CISCO? -HOMEPAGE="https://sourceforge.net/projects/sentrytools/" -SRC_URI="mirror://gentoo/${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="amd64 arm ~mips ppc s390 sh sparc x86" -IUSE="" - -DEPEND=">=sys-apps/sed-4" -RDEPEND="virtual/mailx" - -S="${WORKDIR}"/logcheck-${PV} - -src_compile() { - einfo "compile and install mixed in the package makefile" -} - -src_install() { - dodir /usr/bin /etc/logcheck/tmp - cp systems/linux/logcheck.sh{,.orig} - sed -i \ - -e 's:/usr/local/bin:/usr/bin:' \ - -e 's:/usr/local/etc:/etc/logcheck:' \ - systems/linux/logcheck.sh || \ - die "sed logcheck.sh failed" - sed -i \ - -e "s:/usr/local/bin:${D}/usr/bin:" \ - -e "s:/usr/local/etc:${D}/etc/logcheck:" \ - -e "s:\$(CC):& \$(LDFLAGS):" \ - Makefile || die "sed Makefile failed" - make CC="$(tc-getCC)" CFLAGS="${CFLAGS}" linux || die - - dodoc README* CHANGES CREDITS - dodoc systems/linux/README.* - - cat << EOF > "${S}"/logsentry.cron -#!/bin/sh -# -# Uncomment the following if you want -# logsentry (logcheck) to run hourly -# -# this is part of the logsentry package -# -# - -#/bin/sh /etc/logcheck/logcheck.sh -EOF - - exeinto /etc/cron.hourly - doexe logsentry.cron -} - -pkg_postinst() { - elog - elog "Uncomment the logcheck line in /etc/cron.hourly/logsentry.cron," - elog "or add directly to root's crontab" - elog -}