]> git.bzium.org - embe/overlay.git/commitdiff
Aktualizacja app-portage/eix-9999
authorMichał Bartoszkiewicz <mbartoszkiewicz@gmail.com>
Tue, 25 Oct 2011 14:04:46 +0000 (16:04 +0200)
committerMichał Bartoszkiewicz <mbartoszkiewicz@gmail.com>
Tue, 25 Oct 2011 14:04:46 +0000 (16:04 +0200)
app-portage/eix/Manifest
app-portage/eix/eix-9999.ebuild

index 44f454f4abb7b8ab60108857eb4dd8f226b83f8e..36dc7d434f68298e4efaf869fecf327f21c09aaa 100644 (file)
@@ -1 +1 @@
-EBUILD eix-9999.ebuild 1382 RMD160 123cd573af36ffd77f909dc8ba7da3bf58419cd4 SHA1 19409d629917a693c66fa248b06ef2c2bb4525d0 SHA256 2e3f1a21d91b94061bb07b0f4e46dd36722756524134e09d5177e2c108f5f09f
+EBUILD eix-9999.ebuild 1390 RMD160 94e3361d54f79f2ddb5fb212e6ab07c028a47ced SHA1 bbb968ebb9c6f78df77a09d22bd9d9265cedfa6c SHA256 373ef87fffa389d4e6591d9b696937264ac8e35884eddc3ad3e0a473b3e4b8af
index e5e3ccdc79dbbb24ce70ad5f1886b5489b2989fa..0093a53c6cf34c67a5cc1a84cfc3adc7db36740a 100644 (file)
@@ -1,14 +1,14 @@
 # Copyright 1999-2011 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI="4"
+EAPI=4
 
 ESVN_REPO_URI="https://svn.gentooexperimental.org/eix/trunk/"
 ESVN_BOOTSTRAP="./autogen.sh"
 
 WANT_AUTOMAKE="1.11"
 
-inherit autotools multilib subversion
+inherit autotools multilib subversion bash-completion-r1
 
 DESCRIPTION="Search and query ebuilds, portage incl. local settings, ext. overlays, version changes, and more"
 HOMEPAGE="http://eix.berlios.de"
@@ -16,21 +16,20 @@ HOMEPAGE="http://eix.berlios.de"
 LICENSE="GPL-2"
 SLOT="0"
 KEYWORDS=""
-IUSE="bzip2 debug doc hardened nls optimization strong-optimization sqlite tools zsh-completion"
+IUSE="debug doc nls optimization security strong-optimization sqlite tools zsh-completion"
 
-RDEPEND="sqlite? ( dev-db/sqlite:3 )
+RDEPEND="sqlite? ( >=dev-db/sqlite-3 )
        nls? ( virtual/libintl )
-       bzip2? ( app-arch/bzip2 )
        zsh-completion? ( !!<app-shells/zsh-completion-20091203-r1 )"
 DEPEND="${RDEPEND}
        doc? ( dev-python/docutils )
        sys-devel/gettext"
 
 src_configure() {
-       econf $(use_with bzip2) $(use_with sqlite) $(use_with doc extra-doc) \
+       econf $(use_with sqlite) $(use_with doc extra-doc) \
                $(use_with zsh-completion) \
                $(use_enable nls) $(use_enable tools separate-tools) \
-               $(use_enable hardened security) $(use_enable optimization) \
+               $(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" \
@@ -39,3 +38,8 @@ src_configure() {
                --docdir="${EPREFIX}/usr/share/doc/${PF}" \
                --htmldir="${EPREFIX}/usr/share/doc/${PF}/html"
 }
+
+src_install() {
+       default
+       dobashcomp bash/eix
+}