diff options
-rw-r--r-- | app-portage/eix/ChangeLog | 8 | ||||
-rw-r--r-- | app-portage/eix/eix-0.23.1.ebuild (renamed from app-portage/eix/eix-0.23.0.ebuild) | 17 |
2 files changed, 17 insertions, 8 deletions
diff --git a/app-portage/eix/ChangeLog b/app-portage/eix/ChangeLog index 8d70930acdd9..f5195c96c963 100644 --- a/app-portage/eix/ChangeLog +++ b/app-portage/eix/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for app-portage/eix # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-portage/eix/ChangeLog,v 1.378 2011/09/06 12:43:58 darkside Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-portage/eix/ChangeLog,v 1.379 2011/09/13 16:37:51 darkside Exp $ + +*eix-0.23.1 (13 Sep 2011) + + 13 Sep 2011; Jeremy Olexa <darkside@gentoo.org> -eix-0.23.0.ebuild, + +eix-0.23.1.ebuild: + Version bump from upstream to fix bugs 382539 & 304819 *eix-0.23.0 (05 Sep 2011) diff --git a/app-portage/eix/eix-0.23.0.ebuild b/app-portage/eix/eix-0.23.1.ebuild index 85b7c578d85b..3504e7bdf478 100644 --- a/app-portage/eix/eix-0.23.0.ebuild +++ b/app-portage/eix/eix-0.23.1.ebuild @@ -1,10 +1,10 @@ # Copyright 1999-2011 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-portage/eix/eix-0.23.0.ebuild,v 1.1 2011/09/05 20:48:30 darkside Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-portage/eix/eix-0.23.1.ebuild,v 1.1 2011/09/13 16:37:51 darkside Exp $ EAPI=4 -inherit multilib +inherit multilib bash-completion-r1 DESCRIPTION="Search and query ebuilds, portage incl. local settings, ext. overlays, version changes, and more" HOMEPAGE="http://eix.berlios.de" @@ -13,20 +13,22 @@ SRC_URI="mirror://berlios/${PN}/${P}.tar.xz" LICENSE="GPL-2" SLOT="0" KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~ia64-hpux ~x86-interix ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x86-solaris" -IUSE="debug doc nls optimization security strong-optimization sqlite tools" +IUSE="debug doc nls optimization security strong-optimization sqlite tools zsh-completion" RDEPEND="sqlite? ( >=dev-db/sqlite-3 ) - nls? ( virtual/libintl )" + nls? ( virtual/libintl ) + zsh-completion? ( !!<app-shells/zsh-completion-20091203-r1 )" DEPEND="${RDEPEND} app-arch/xz-utils - doc? ( dev-python/docutils ) nls? ( sys-devel/gettext )" src_configure() { - econf $(use_with sqlite) $(use_with doc rst) \ + econf $(use_with sqlite) $(use_with doc extra-doc) \ + $(use_with zsh-completion) \ $(use_enable nls) $(use_enable tools separate-tools) \ $(use_enable security) $(use_enable optimization) \ $(use_enable strong-optimization) $(use_enable debug debugging) \ + $(use_with prefix always-accept-keywords) \ --with-ebuild-sh-default="/usr/$(get_libdir)/portage/bin/ebuild.sh" \ --with-portage-rootpath="${ROOTPATH}" \ --with-eprefix-default="${EPREFIX}" \ @@ -35,5 +37,6 @@ src_configure() { } src_install() { - emake DESTDIR="${D}" install + default + dobashcomp bash/eix } |