diff options
Diffstat (limited to 'app-admin/cronolog/cronolog-1.6.2-r5.ebuild')
-rw-r--r-- | app-admin/cronolog/cronolog-1.6.2-r5.ebuild | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/app-admin/cronolog/cronolog-1.6.2-r5.ebuild b/app-admin/cronolog/cronolog-1.6.2-r5.ebuild new file mode 100644 index 000000000000..121f6cf721a3 --- /dev/null +++ b/app-admin/cronolog/cronolog-1.6.2-r5.ebuild @@ -0,0 +1,32 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +inherit eutils autotools + +DESCRIPTION="Log rotation software" +HOMEPAGE="https://github.com/fordmason/cronolog" +SRC_URI="http://cronolog.org/download/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~arm ~ppc ~x86" + +PATCHES=( + "${FILESDIR}/${PV}-patches"/*.txt + "${FILESDIR}/${P}-umask.patch" +) + +DOCS=( AUTHORS ChangeLog INSTALL NEWS README TODO ) + +src_prepare() { + default + eautoreconf +} + +src_install() { + emake DESTDIR="${D}" install + einstalldocs +} |