diff options
author | Johannes Huber <johu@gentoo.org> | 2018-05-26 13:06:30 +0200 |
---|---|---|
committer | Johannes Huber <johu@gentoo.org> | 2018-05-26 13:06:44 +0200 |
commit | fde91a885e23f555ce706c9e742ab3b04d513724 (patch) | |
tree | f6639a02de823e1c374b07172acdeeea6b4dbc5a /app-admin/logcheck | |
parent | media-libs/taglib: Force C++11 (diff) | |
download | gentoo-fde91a885e23f555ce706c9e742ab3b04d513724.tar.gz gentoo-fde91a885e23f555ce706c9e742ab3b04d513724.tar.bz2 gentoo-fde91a885e23f555ce706c9e742ab3b04d513724.zip |
app-admin/logcheck: Remove 1.3.15-r2
Uses deprecated EAPI 4 and overshadowed by 1.3.18-r1.
Package-Manager: Portage-2.3.40, Repoman-2.3.9
Diffstat (limited to 'app-admin/logcheck')
-rw-r--r-- | app-admin/logcheck/Manifest | 1 | ||||
-rw-r--r-- | app-admin/logcheck/logcheck-1.3.15-r2.ebuild | 51 |
2 files changed, 0 insertions, 52 deletions
diff --git a/app-admin/logcheck/Manifest b/app-admin/logcheck/Manifest index 1cad282969c3..e8956e92deef 100644 --- a/app-admin/logcheck/Manifest +++ b/app-admin/logcheck/Manifest @@ -1,2 +1 @@ -DIST logcheck_1.3.15.tar.gz 162397 BLAKE2B 111e16f482c8610ffc39c518b3fd523abaa9720e7873bcadba58d85bd13bd7a8a9d93881e64f5d8cc5cb30c8254f2216fe97d1b77fe1cf77d5e14859ec701621 SHA512 45c9e779fc1d1f417aea3f02e70eff4dbc7cd0b45e04f7efc458a4552866686cbb095d0b5ebaf32a57d423a3753b4573277a464f5539789350b087569e025abf DIST logcheck_1.3.18.tar.xz 131252 BLAKE2B 024259d965c02d5f27a82f1df1e947d48e4b1bad705882243c4b743a1c061012f2437ecab1a97265f5a330fdec2f813a36c078dca282f54fdfaab03833340320 SHA512 3ab75969f732efa123d9df2c8b44557e4a7eddef8332a8357463930714148a13130c763c22e562bd60e106abf5e18cf39b3572e0c048727a117fbc67430b7e3f diff --git a/app-admin/logcheck/logcheck-1.3.15-r2.ebuild b/app-admin/logcheck/logcheck-1.3.15-r2.ebuild deleted file mode 100644 index 956fbe890976..000000000000 --- a/app-admin/logcheck/logcheck-1.3.15-r2.ebuild +++ /dev/null @@ -1,51 +0,0 @@ -# Copyright 1999-2016 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI="4" - -inherit user - -DESCRIPTION="Mails anomalies in the system logfiles to the administrator" -HOMEPAGE="http://packages.debian.org/sid/logcheck" -SRC_URI="mirror://debian/pool/main/l/${PN}/${PN}_${PV}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="amd64 ~ppc ~sparc x86" -IUSE="" - -DEPEND="" -RDEPEND="!app-admin/logsentry - app-misc/lockfile-progs - dev-lang/perl - dev-perl/mime-construct - virtual/mailx - ${DEPEND}" - -pkg_setup() { - enewgroup logcheck - enewuser logcheck -1 -1 -1 logcheck -} - -src_install() { - emake DESTDIR="${D}" install - - # Do not install /var/lock, bug #449968 . Use rmdir to make sure - # the directories removed are empty. - rmdir "${D}/var/lock/logcheck" || die - rmdir "${D}/var/lock" || die - - keepdir /var/lib/logcheck - dodoc AUTHORS CHANGES CREDITS TODO docs/README.* - doman docs/logtail.8 docs/logtail2.8 - - exeinto /etc/cron.hourly - doexe "${FILESDIR}/${PN}.cron" -} - -pkg_postinst() { - chown -R logcheck:logcheck /etc/logcheck /var/lib/logcheck || die - - elog "Please read the guide at https://wiki.gentoo.org/wiki/Logcheck" - elog "for installation instructions." -} |