diff options
author | Stephanie J. Lockwood-Childs <wormo@gentoo.org> | 2008-10-31 05:51:39 +0000 |
---|---|---|
committer | Stephanie J. Lockwood-Childs <wormo@gentoo.org> | 2008-10-31 05:51:39 +0000 |
commit | 4bcec2a5caa863d5bad9567439c5273550fb28d8 (patch) | |
tree | a1ee40f2401e0ff22a0bc1c88b0049de7583373e /app-portage | |
parent | Stable for HPPA too. (diff) | |
download | gentoo-2-4bcec2a5caa863d5bad9567439c5273550fb28d8.tar.gz gentoo-2-4bcec2a5caa863d5bad9567439c5273550fb28d8.tar.bz2 gentoo-2-4bcec2a5caa863d5bad9567439c5273550fb28d8.zip |
version bump on behalf of Martin (bug #243398)
(Portage version: 2.1.4.5)
Diffstat (limited to 'app-portage')
-rw-r--r-- | app-portage/eix/ChangeLog | 8 | ||||
-rw-r--r-- | app-portage/eix/eix-0.14.2.ebuild | 49 |
2 files changed, 56 insertions, 1 deletions
diff --git a/app-portage/eix/ChangeLog b/app-portage/eix/ChangeLog index b857368d3061..c27688621328 100644 --- a/app-portage/eix/ChangeLog +++ b/app-portage/eix/ChangeLog @@ -1,6 +1,12 @@ # 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.250 2008/10/11 15:06:39 bangert Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-portage/eix/ChangeLog,v 1.251 2008/10/31 05:51:39 wormo Exp $ + +*eix-0.14.2 (30 Oct 2008) + + 30 Oct 2008; Stephanie Lockwood-Childs <wormo@gentoo.org> + +eix-0.14.2.ebuild: + version bump on behalf of Martin Väth (bug #243398) *eix-0.14.1 (11 Oct 2008) diff --git a/app-portage/eix/eix-0.14.2.ebuild b/app-portage/eix/eix-0.14.2.ebuild new file mode 100644 index 000000000000..255faaddfe92 --- /dev/null +++ b/app-portage/eix/eix-0.14.2.ebuild @@ -0,0 +1,49 @@ +# 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.14.2.ebuild,v 1.1 2008/10/31 05:51:39 wormo Exp $ + +DESCRIPTION="Small utility for searching ebuilds with indexing for fast results" +HOMEPAGE="http://eix.sourceforge.net" +SRC_URI="mirror://sourceforge/eix/${P}.tar.lzma" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~sparc-fbsd ~x86 ~x86-fbsd" +IUSE="doc sqlite" + +RDEPEND="sqlite? ( >=dev-db/sqlite-3 ) + app-arch/bzip2" +DEPEND="${RDEPEND} + app-arch/lzma-utils + doc? ( dev-python/docutils )" + +inherit multilib + +src_compile() { + econf --with-bzip2 $(use_with sqlite) $(use_with doc rst) \ + --with-ebuild-sh-default="/usr/$(get_libdir)/portage/bin/ebuild.sh" \ + || die "econf failed" + emake || die "emake failed" +} + +src_install() { + emake DESTDIR="${D}" install || die "emake install failed" + + dodoc AUTHORS ChangeLog doc/format.txt + use doc && dodoc doc/format.html +} + +pkg_postinst() { + 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." + if test -d /var/log && ! test -x /var/log || test -e /var/log/eix-sync.log + then + einfo + einfo "eix-sync no longer supports redirection to /var/log/eix-sync.log" + einfo "You can remove that file." + fi +} |