summaryrefslogtreecommitdiff
path: root/app-admin/logsentry
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2018-05-29 03:22:09 +0100
committerV3n3RiX <venerix@redcorelinux.org>2018-05-29 03:22:09 +0100
commitd4bd6695641f6d2ec7ff8681913d304e995902f5 (patch)
tree6ec8d4c38152bb4f2bb4b93277236ebd9fbbd21d /app-admin/logsentry
parent22910f5d14da606bd7f06e19a2f61c5d1a8fc94b (diff)
gentoo resync : 29.05.2018
Diffstat (limited to 'app-admin/logsentry')
-rw-r--r--app-admin/logsentry/Manifest1
-rw-r--r--app-admin/logsentry/logsentry-1.1.1.ebuild67
2 files changed, 0 insertions, 68 deletions
diff --git a/app-admin/logsentry/Manifest b/app-admin/logsentry/Manifest
index c39990c4653b..8b5990801421 100644
--- a/app-admin/logsentry/Manifest
+++ b/app-admin/logsentry/Manifest
@@ -1,4 +1,3 @@
DIST logsentry-1.1.1.tar.gz 30267 BLAKE2B e81fb68484fb05f40d61e2d34bc6e0953e99a46b299f4384592bb4a5a1b53874ca382dfaf68f60ee232d56a9c23ec4840ddc71033fb20b88f653d2fc00384869 SHA512 4be045289259655e7b4da05dd1a07c649b2289fbc6f15dd424dc48ab980478f3ae49501f0e9e2035fddb9a40acaf2f4ab310ff8d95355196d82d41d6fc860143
EBUILD logsentry-1.1.1-r2.ebuild 1672 BLAKE2B 2fe664d750585d2c9bf6ed4917a8f75e5c9d2fba637d5b216328ed9030bc1bc35bab12a55f3b0f87eff6d4a35095a5eed3c58a8dbcd3b0d0555373cd0fe6c4d0 SHA512 037e49a772278c28745bbe72c5d8cdae5bdb3f77476bf0a55c1b26fa3f9aeb321f33be358c13dd07a0d3186860c6beb85f9678fd81d1d76ab269caeeee0cad48
-EBUILD logsentry-1.1.1.ebuild 1546 BLAKE2B 575f68fa889a9abf784551a7b1ed7b29b090fb9c0ba1df1786790a1f4eeef7e2ce4803d2c79d916b2c68bd18525b9a422424a699f92d6db1e150b345e8fb6a0a SHA512 6837787b0b1c866a0e7cf00cae5acf85230ae11e101a8b3cc9ec8b765647ceafa576794bae284cc543c697aa7f62563c739584f43ff9aaf93a173a13fb60d1df
MISC metadata.xml 248 BLAKE2B 495eba242dfadfd944d3f74a526162dc04de2d8fcebcb6d5dce43c20500407485c24fe61d537f8015739463543b53ed6fbd9d07242a45782df2c2a8d68e053ab SHA512 52d286d2ecc5d8b66e2468683db28439cdcbcc96c88d8dba8a415049def3c53bc130783853aee9918c6b0dc4ae295aba44d601687d440196399903b25e92b5f9
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 ac050f8053e1..000000000000
--- 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
-}