diff options
author | Stefan Schweizer <genstef@gentoo.org> | 2008-05-13 08:31:24 +0000 |
---|---|---|
committer | Stefan Schweizer <genstef@gentoo.org> | 2008-05-13 08:31:24 +0000 |
commit | 2bc05030a1b970b7e8cec2b95ba083348369f61b (patch) | |
tree | e2aba7d4add39414f163fd81f99c312ced02a891 /app-portage | |
parent | Moving app-doc/chmlib -> dev-libs/chmlib, bug #220741. (diff) | |
download | gentoo-2-2bc05030a1b970b7e8cec2b95ba083348369f61b.tar.gz gentoo-2-2bc05030a1b970b7e8cec2b95ba083348369f61b.tar.bz2 gentoo-2-2bc05030a1b970b7e8cec2b95ba083348369f61b.zip |
version bump
(Portage version: 2.1.4.4)
Diffstat (limited to 'app-portage')
-rw-r--r-- | app-portage/eix/ChangeLog | 5 | ||||
-rw-r--r-- | app-portage/eix/eix-0.10.5.ebuild | 30 |
2 files changed, 19 insertions, 16 deletions
diff --git a/app-portage/eix/ChangeLog b/app-portage/eix/ChangeLog index a05fa164e3a0..d4152796acc1 100644 --- a/app-portage/eix/ChangeLog +++ b/app-portage/eix/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for app-portage/eix # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-portage/eix/ChangeLog,v 1.217 2008/04/13 20:57:04 genstef Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-portage/eix/ChangeLog,v 1.218 2008/05/13 08:31:24 genstef Exp $ + + 13 May 2008; Stefan Schweizer <genstef@gentoo.org> eix-0.10.5.ebuild: + version bump *eix-0.12.4 (13 Apr 2008) diff --git a/app-portage/eix/eix-0.10.5.ebuild b/app-portage/eix/eix-0.10.5.ebuild index aa04b8167e96..6f48129a3305 100644 --- a/app-portage/eix/eix-0.10.5.ebuild +++ b/app-portage/eix/eix-0.10.5.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2008 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-portage/eix/eix-0.10.5.ebuild,v 1.6 2008/03/21 14:32:41 ranger Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-portage/eix/eix-0.10.5.ebuild,v 1.7 2008/05/13 08:31:24 genstef Exp $ DESCRIPTION="Small utility for searching ebuilds with indexing for fast results" HOMEPAGE="http://eix.sourceforge.net" @@ -8,31 +8,31 @@ SRC_URI="mirror://sourceforge/eix/${P}.tar.bz2" LICENSE="GPL-2" SLOT="0" -KEYWORDS="alpha amd64 ~arm hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 ~x86-fbsd" -IUSE="sqlite" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd" +IUSE="doc sqlite" -DEPEND="sqlite? ( >=dev-db/sqlite-3 ) +RDEPEND="sqlite? ( >=dev-db/sqlite-3 ) app-arch/bzip2" -RDEPEND="${DEPEND}" +DEPEND="${RDEPEND} + doc? ( dev-python/docutils )" src_compile() { - econf --with-bzip2 $(use_with sqlite) || die "econf failed" + econf --with-bzip2 $(use_with sqlite) $(use_with doc rst) || die "econf failed" emake || die "emake failed" } src_install() { emake DESTDIR="${D}" install || die "emake install failed" - dodoc AUTHORS ChangeLog TODO + dodoc AUTHORS ChangeLog doc/format.txt + use doc && dodoc doc/format.html } pkg_postinst() { - elog "As of >=eix-0.5.4, \"metadata\" is the new default cache." - elog "It's independent of the portage-version and the cache used by portage." - - elog /etc/eixrc will not get updated anymore by the eix ebuild. - elog Upstream strongly recommends to remove this file resp. to keep - elog only those entries which you want to differ from the defaults. - elog Use options --dump or --dump-defaults to get an output analogous - elog to previous /etc/eixrc files. + ewarn + ewarn "Security Warning:" + ewarn + ewarn "Since >=eix-0.12.0, eix uses by default OVERLAY_CACHE_METHOD=\"parse|ebuild*\"" + ewarn "This is rather reliable, but ebuilds may be executed by user \"portage\". Set" + ewarn "OVERLAY_CACHE_METHOD=parse in /etc/eixrc if you do not trust the ebuilds." } |