diff options
author | Leonardo Hernández Hernández <leohdz172@proton.me> | 2023-09-10 17:25:49 -0600 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2023-09-13 04:48:02 +0100 |
commit | b5a79d22b1f12db72db0be77dbeed56180a415b1 (patch) | |
tree | e6e18ede7abad2c5946549e509483b056b04998e /app-admin/cronolog | |
parent | app-admin/aws-elb-tools: update EAPI 6 -> 8 (diff) | |
download | gentoo-b5a79d22b1f12db72db0be77dbeed56180a415b1.tar.gz gentoo-b5a79d22b1f12db72db0be77dbeed56180a415b1.tar.bz2 gentoo-b5a79d22b1f12db72db0be77dbeed56180a415b1.zip |
app-admin/cronolog: update EAPI 6 -> 8
Signed-off-by: Leonardo Hernández Hernández <leohdz172@proton.me>
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'app-admin/cronolog')
-rw-r--r-- | app-admin/cronolog/cronolog-1.6.2-r6.ebuild | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/app-admin/cronolog/cronolog-1.6.2-r6.ebuild b/app-admin/cronolog/cronolog-1.6.2-r6.ebuild new file mode 100644 index 000000000000..56e9b547b8f6 --- /dev/null +++ b/app-admin/cronolog/cronolog-1.6.2-r6.ebuild @@ -0,0 +1,26 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit autotools + +DESCRIPTION="Log rotation software" +HOMEPAGE="https://github.com/fordmason/cronolog" +SRC_URI="http://cronolog.org/download/${P}.tar.gz" + +LICENSE="GPL-2+ Apache-1.0" +SLOT="0" +KEYWORDS="~amd64 ~arm ~ppc ~x86" + +PATCHES=( + "${FILESDIR}"/${PV}-patches + # rename and move into ${PV}-patches after -r3 removal + "${FILESDIR}"/${P}-umask.patch +) + +src_prepare() { + default + mv configure.{in,ac} || die + eautoreconf +} |