diff options
author | Markos Chandras <hwoarang@gentoo.org> | 2012-06-21 21:24:37 +0000 |
---|---|---|
committer | Markos Chandras <hwoarang@gentoo.org> | 2012-06-21 21:24:37 +0000 |
commit | de4886002dcbc85467e10ad7c2d9aa5e44b4d872 (patch) | |
tree | f67170f07dd82f64c512210d6ed32f54850713cc /app-shells | |
parent | Remove old. (diff) | |
download | gentoo-2-de4886002dcbc85467e10ad7c2d9aa5e44b4d872.tar.gz gentoo-2-de4886002dcbc85467e10ad7c2d9aa5e44b4d872.tar.bz2 gentoo-2-de4886002dcbc85467e10ad7c2d9aa5e44b4d872.zip |
New revbump which fixes quotation problems
(Portage version: 2.1.10.65/cvs/Linux x86_64)
Diffstat (limited to 'app-shells')
-rw-r--r-- | app-shells/rssh/ChangeLog | 8 | ||||
-rw-r--r-- | app-shells/rssh/rssh-2.3.3-r2.ebuild (renamed from app-shells/rssh/rssh-2.3.3-r1.ebuild) | 8 |
2 files changed, 11 insertions, 5 deletions
diff --git a/app-shells/rssh/ChangeLog b/app-shells/rssh/ChangeLog index c71b00b3520f..c45503965a26 100644 --- a/app-shells/rssh/ChangeLog +++ b/app-shells/rssh/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for app-shells/rssh # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-shells/rssh/ChangeLog,v 1.26 2012/06/17 15:03:33 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-shells/rssh/ChangeLog,v 1.27 2012/06/21 21:24:37 hwoarang Exp $ + +*rssh-2.3.3-r2 (21 Jun 2012) + + 21 Jun 2012; Markos Chandras <hwoarang@gentoo.org> +rssh-2.3.3-r2.ebuild, + -rssh-2.3.3-r1.ebuild: + New revbump which fixes quotation problems 17 Jun 2012; Agostino Sarubbo <ago@gentoo.org> rssh-2.3.3-r1.ebuild: Stable for amd64, wrt bug #415255 diff --git a/app-shells/rssh/rssh-2.3.3-r1.ebuild b/app-shells/rssh/rssh-2.3.3-r2.ebuild index 62d2d79e00fc..e05fae623eb8 100644 --- a/app-shells/rssh/rssh-2.3.3-r1.ebuild +++ b/app-shells/rssh/rssh-2.3.3-r2.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-shells/rssh/rssh-2.3.3-r1.ebuild,v 1.3 2012/06/17 15:03:33 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-shells/rssh/rssh-2.3.3-r2.ebuild,v 1.1 2012/06/21 21:24:37 hwoarang Exp $ EAPI=4 inherit eutils multilib @@ -11,7 +11,7 @@ SRC_URI="mirror://sourceforge/rssh/${P}.tar.gz" LICENSE="BSD" SLOT="0" -KEYWORDS="amd64 ~ppc ~sparc x86" +KEYWORDS="~amd64 ~ppc ~sparc ~x86" IUSE="static" RDEPEND="virtual/ssh" @@ -23,9 +23,9 @@ src_prepare() { src_configure() { econf \ - --libexecdir='$(libdir)/misc' \ + --libexecdir="/usr/$(get_libdir)/misc" \ --with-scp=/usr/bin/scp \ - --with-sftp-server='/usr/$(get_libdir)/misc/sftp-server' \ + --with-sftp-server="/usr/$(get_libdir)/misc/sftp-server" \ $(use_enable static) } |