blob: f70220ad2bf2bb94b5f5f761b55d97f2d08c0e0b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# Maintainer: Kingsqueak <kingsqueak@kingsqueak.org>
# Author: Chip Rosenthal <chip@unicom.com>
# $Header: /var/cvsroot/gentoo-x86/app-admin/xtail/xtail-2.1.ebuild,v 1.1 2002/04/21 22:37:00 mkennedy Exp $
S=${WORKDIR}/${P}
DESCRIPTION="Tail multiple logfiles at once, even if rotated."
SRC_URI="http://www.unicom.com/sw/xtail/${P}.tar.gz"
HOMEPAGE="http://www.unicom.com/sw/xtail/"
DEPEND="virtual/glibc"
src_compile() {
./configure --prefix=/usr \
--host=${CHOST} \
--mandir=/usr/share/man || die
emake || die
}
src_install () {
into /usr
doman xtail.1
dobin xtail
dodoc README
}
|