blob: 2bae830b28da041aa3a88494d38cdb6634d8a225 (
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
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-text/multitail/multitail-2.8.ebuild,v 1.3 2003/09/05 22:37:22 msterret Exp $
S=${WORKDIR}/${P}
DESCRIPTION="Tail with multiple windows."
HOMEPAGE="http://www.vanheusden.com/multitail/index.html"
KEYWORDS="x86"
SRC_URI="http://www.vanheusden.com/multitail/${P}.tgz"
LICENSE="GPL-2"
SLOT="0"
IUSE=""
DEPEND=""
src_compile() {
make all || die
}
src_install () {
dobin multitail
dodoc INSTALL license.txt readme.txt
doman multitail.1
}
|