diff options
author | Arthur Zamarin <arthurzam@gentoo.org> | 2024-03-08 15:50:26 +0200 |
---|---|---|
committer | Arthur Zamarin <arthurzam@gentoo.org> | 2024-03-08 15:50:26 +0200 |
commit | 55af99eea290cf993a0df73f033a039bf02e1e1a (patch) | |
tree | e258ed8e083b075d2102907a449a8e0ee6f793e5 /sys-process | |
parent | x11-apps/luit: drop 20230201 (diff) | |
download | gentoo-55af99eea290cf993a0df73f033a039bf02e1e1a.tar.gz gentoo-55af99eea290cf993a0df73f033a039bf02e1e1a.tar.bz2 gentoo-55af99eea290cf993a0df73f033a039bf02e1e1a.zip |
sys-process/anacron: drop 2.3-r4
Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
Diffstat (limited to 'sys-process')
-rw-r--r-- | sys-process/anacron/anacron-2.3-r4.ebuild | 68 |
1 files changed, 0 insertions, 68 deletions
diff --git a/sys-process/anacron/anacron-2.3-r4.ebuild b/sys-process/anacron/anacron-2.3-r4.ebuild deleted file mode 100644 index 0f206cd67fdc..000000000000 --- a/sys-process/anacron/anacron-2.3-r4.ebuild +++ /dev/null @@ -1,68 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit toolchain-funcs - -DESCRIPTION="a periodic command scheduler" -HOMEPAGE="http://anacron.sourceforge.net/" -SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" - -LICENSE="GPL-2+" -SLOT="0" -KEYWORDS="amd64 ~arm ppc ~riscv x86" -IUSE="" - -DEPEND=" - sys-process/cronbase" - -RDEPEND=" - ${DEPEND} - virtual/mta" - -PATCHES=( - "${FILESDIR}"/${P}-compile-fix-from-debian.patch - "${FILESDIR}"/${P}-headers.patch -) - -src_prepare() { - default - - sed -i \ - -e '/^CFLAGS/{s:=:+=:;s:-O2::}' \ - Makefile || die -} - -src_configure() { - tc-export CC -} - -src_install() { - # This does not work if the directory already exists. - diropts -m0750 -o root -g cron - keepdir "/var/spool/${PN}" - - doman "${PN}tab.5" "${PN}.8" - newinitd "${FILESDIR}/${PN}.rc6" "${PN}" - dodoc ChangeLog README TODO - dosbin "${PN}" - - insinto /etc - doins "${FILESDIR}/${PN}tab" -} - -pkg_postinst() { - if [[ -z ${REPLACING_VERSIONS} ]] ; then - elog "Schedule the command \"anacron -s\" as a daily cron-job (preferably" - elog "at some early morning hour). This will make sure that jobs are run" - elog "when the systems is left running for a night." - echo - elog "Update /etc/anacrontab to include what you want anacron to run." - - echo - elog "You may wish to read the Gentoo Linux Cron Guide, which can be" - elog "found online at:" - elog " https://wiki.gentoo.org/wiki/Cron" - fi -} |