diff options
author | Matthew Kennedy <mkennedy@gentoo.org> | 2003-08-27 22:13:03 +0000 |
---|---|---|
committer | Matthew Kennedy <mkennedy@gentoo.org> | 2003-08-27 22:13:03 +0000 |
commit | 157d77fefafeddf5be63a55d00a54843043cff2e (patch) | |
tree | 837f588ffddcb47ed9927c004901493f5481dec7 /app-misc/rlwrap | |
parent | initial import (diff) | |
download | historical-157d77fefafeddf5be63a55d00a54843043cff2e.tar.gz historical-157d77fefafeddf5be63a55d00a54843043cff2e.tar.bz2 historical-157d77fefafeddf5be63a55d00a54843043cff2e.zip |
initial import
Diffstat (limited to 'app-misc/rlwrap')
-rw-r--r-- | app-misc/rlwrap/Manifest | 4 | ||||
-rw-r--r-- | app-misc/rlwrap/files/digest-rlwrap-0.16 | 1 | ||||
-rw-r--r-- | app-misc/rlwrap/rlwrap-0.16.ebuild | 25 |
3 files changed, 28 insertions, 2 deletions
diff --git a/app-misc/rlwrap/Manifest b/app-misc/rlwrap/Manifest index 2d8098dce8f5..e9c6813d18c3 100644 --- a/app-misc/rlwrap/Manifest +++ b/app-misc/rlwrap/Manifest @@ -1,3 +1,3 @@ -MD5 e0d039af8dccbe4a14bc23d1d7de3a13 rlwrap-0.16.ebuild~ 6007 -MD5 1b9978b8fbfce766aa80a38a4c805f94 rlwrap-0.16.ebuild 1586 +MD5 8b1621ed895924a717920e9bdddf9b1d rlwrap-0.16.ebuild 916 +MD5 aaee11bf96f4990cb31164769b2437d6 ChangeLog 317 MD5 04395c7e842bf7ff90bd2710e02b430f files/digest-rlwrap-0.16 63 diff --git a/app-misc/rlwrap/files/digest-rlwrap-0.16 b/app-misc/rlwrap/files/digest-rlwrap-0.16 new file mode 100644 index 000000000000..c6dc22d26007 --- /dev/null +++ b/app-misc/rlwrap/files/digest-rlwrap-0.16 @@ -0,0 +1 @@ +MD5 1b303883d78f279a36bb35e8094e1490 rlwrap-0.16.tar.gz 101840 diff --git a/app-misc/rlwrap/rlwrap-0.16.ebuild b/app-misc/rlwrap/rlwrap-0.16.ebuild new file mode 100644 index 000000000000..5644eeb0c5f7 --- /dev/null +++ b/app-misc/rlwrap/rlwrap-0.16.ebuild @@ -0,0 +1,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.1 2003/08/27 22:12:55 mkennedy 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 +} |