blob: 36d5894375c48a807901e95295e95cfcc0f08eb9 (
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
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-misc/rlwrap/rlwrap-0.16.ebuild,v 1.2 2003/09/05 12:10:36 msterret Exp $
DESCRIPTION="rlwrap is a 'readline wrapper' which uses the GNU readline library to allow the editing of keyboard input for any command. Input history is remembered across invocations, separately for each command, history completion and -search work as in bash and completion word lists can be specified on the command line."
HOMEPAGE="http://utopia.knoware.nl/~hlub/uck/rlwrap/"
SRC_URI="http://utopia.knoware.nl/~hlub/uck/rlwrap/rlwrap-0.16.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86"
IUSE=""
DEPEND="sys-libs/readline"
S=${WORKDIR}/${P}
src_compile() {
econf || die
emake || die
}
src_install() {
einstall || die
dodoc AUTHORS BUGS COPYING ChangeLog INSTALL NEWS README
}
|