diff options
author | Markos Chandras <hwoarang@gentoo.org> | 2012-04-01 11:54:41 +0000 |
---|---|---|
committer | Markos Chandras <hwoarang@gentoo.org> | 2012-04-01 11:54:41 +0000 |
commit | 4c83d57690abb150af250efa31a9616f0364c71c (patch) | |
tree | 87f7cdfef78e38c2eef666027eae695bd989d2d1 /app-admin/xtail/xtail-2.1-r1.ebuild | |
parent | alpha/ia64/m68k/s390/sh/sparc stable wrt #405377 (diff) | |
download | gentoo-2-4c83d57690abb150af250efa31a9616f0364c71c.tar.gz gentoo-2-4c83d57690abb150af250efa31a9616f0364c71c.tar.bz2 gentoo-2-4c83d57690abb150af250efa31a9616f0364c71c.zip |
EAPI4, more upstream patches. Thanks to Iván <gentoo.power@gmail.com>. Bug #406679
(Portage version: 2.2.0_alpha94/cvs/Linux x86_64)
Diffstat (limited to 'app-admin/xtail/xtail-2.1-r1.ebuild')
-rw-r--r-- | app-admin/xtail/xtail-2.1-r1.ebuild | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/app-admin/xtail/xtail-2.1-r1.ebuild b/app-admin/xtail/xtail-2.1-r1.ebuild new file mode 100644 index 000000000000..dee9a3107083 --- /dev/null +++ b/app-admin/xtail/xtail-2.1-r1.ebuild @@ -0,0 +1,36 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-admin/xtail/xtail-2.1-r1.ebuild,v 1.1 2012/04/01 11:54:41 hwoarang Exp $ + +EAPI=4 + +inherit eutils toolchain-funcs + +DESCRIPTION="Tail multiple logfiles at once, even if rotated" +HOMEPAGE="http://www.unicom.com/sw/xtail/" +SRC_URI="http://www.unicom.com/sw/xtail/${P}.tar.gz + http://www.unicom.com/files/20120219-patch-aalto.zip" + +LICENSE="as-is" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" +DEPEND="app-arch/unzip" + +src_prepare() { + epatch ../0001-Use-ISO8601-Fix-Gcc-header-Use-C-c.patch + epatch ../0001-xtail.1-remove-SIGQUIT.patch + epatch ../xtail_2.1-5-debian-local-changes.patch +} + +src_compile() { + tc-export CC + emake +} + +src_install() { + dobin xtail + doman xtail.1 + dodoc README + newdoc ../README README.patches +} |