diff options
author | José María Alonso <nimiux@gentoo.org> | 2014-11-26 16:29:08 +0000 |
---|---|---|
committer | José María Alonso <nimiux@gentoo.org> | 2014-11-26 16:29:08 +0000 |
commit | b5d088f32186d838e3592846d4ff3e4760bc51d3 (patch) | |
tree | 89a0062d9ab352337d572db697c1034a6d136909 /app-misc | |
parent | add alunduil as maintainer (diff) | |
download | gentoo-2-b5d088f32186d838e3592846d4ff3e4760bc51d3.tar.gz gentoo-2-b5d088f32186d838e3592846d4ff3e4760bc51d3.tar.bz2 gentoo-2-b5d088f32186d838e3592846d4ff3e4760bc51d3.zip |
Bump to version 0.42. Bug #529606 by Hans Lub
(Portage version: 2.2.8-r2/cvs/Linux x86_64, signed Manifest commit with key F253DB15)
Diffstat (limited to 'app-misc')
-rw-r--r-- | app-misc/rlwrap/ChangeLog | 7 | ||||
-rw-r--r-- | app-misc/rlwrap/rlwrap-0.42.ebuild | 27 |
2 files changed, 33 insertions, 1 deletions
diff --git a/app-misc/rlwrap/ChangeLog b/app-misc/rlwrap/ChangeLog index 258e671c75ce..3610d8d92bc1 100644 --- a/app-misc/rlwrap/ChangeLog +++ b/app-misc/rlwrap/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for app-misc/rlwrap # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-misc/rlwrap/ChangeLog,v 1.29 2014/11/02 11:08:43 nimiux Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-misc/rlwrap/ChangeLog,v 1.30 2014/11/26 16:29:08 nimiux Exp $ + +*rlwrap-0.42 (26 Nov 2014) + + 26 Nov 2014; Chema Alonso <nimiux@gentoo.org> +rlwrap-0.42.ebuild: + Bump to version 0.42. Bug #529606 by Hans Lub *rlwrap-0.41 (02 Nov 2014) diff --git a/app-misc/rlwrap/rlwrap-0.42.ebuild b/app-misc/rlwrap/rlwrap-0.42.ebuild new file mode 100644 index 000000000000..c582431a947d --- /dev/null +++ b/app-misc/rlwrap/rlwrap-0.42.ebuild @@ -0,0 +1,27 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-misc/rlwrap/rlwrap-0.42.ebuild,v 1.1 2014/11/26 16:29:08 nimiux Exp $ + +EAPI=5 + +DESCRIPTION="GNU readline wrapper" +HOMEPAGE="http://utopia.knoware.nl/~hlub/uck/rlwrap/" +SRC_URI="http://utopia.knoware.nl/~hlub/uck/rlwrap/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~mips ~ppc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos" +IUSE="debug" + +RDEPEND="sys-libs/readline" +DEPEND="${RDEPEND}" + +src_configure() { + econf \ + $(use_enable debug) +} + +src_install() { + emake DESTDIR="${D}" install || die + dodoc AUTHORS BUGS ChangeLog NEWS README # PLEA TODO +} |