diff options
author | Stefan Schweizer <genstef@gentoo.org> | 2008-02-21 09:28:32 +0000 |
---|---|---|
committer | Stefan Schweizer <genstef@gentoo.org> | 2008-02-21 09:28:32 +0000 |
commit | f768c322c9a9a7b1fe6bda7503369fa828f5e08a (patch) | |
tree | 8ec22edf44c6754b43411f14aaf1d45cd0601780 /app-portage | |
parent | stable x86, bug 209505 (diff) | |
download | gentoo-2-f768c322c9a9a7b1fe6bda7503369fa828f5e08a.tar.gz gentoo-2-f768c322c9a9a7b1fe6bda7503369fa828f5e08a.tar.bz2 gentoo-2-f768c322c9a9a7b1fe6bda7503369fa828f5e08a.zip |
version bump
(Portage version: 2.1.4.4)
Diffstat (limited to 'app-portage')
-rw-r--r-- | app-portage/eix/ChangeLog | 9 | ||||
-rw-r--r-- | app-portage/eix/eix-0.10.4.ebuild | 38 |
2 files changed, 45 insertions, 2 deletions
diff --git a/app-portage/eix/ChangeLog b/app-portage/eix/ChangeLog index 51b806eecbfe..a4836957de27 100644 --- a/app-portage/eix/ChangeLog +++ b/app-portage/eix/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for app-portage/eix -# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-portage/eix/ChangeLog,v 1.199 2007/12/31 21:15:35 genstef Exp $ +# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-portage/eix/ChangeLog,v 1.200 2008/02/21 09:28:32 genstef Exp $ + +*eix-0.10.4 (15 Feb 2008) + + 15 Feb 2008; Stefan Schweizer <genstef@gentoo.org> +eix-0.10.4.ebuild: + version bump *eix-0.10.3 (31 Dec 2007) diff --git a/app-portage/eix/eix-0.10.4.ebuild b/app-portage/eix/eix-0.10.4.ebuild new file mode 100644 index 000000000000..a617dabfda84 --- /dev/null +++ b/app-portage/eix/eix-0.10.4.ebuild @@ -0,0 +1,38 @@ +# 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.4.ebuild,v 1.1 2008/02/21 09:28:32 genstef Exp $ + +DESCRIPTION="Small utility for searching ebuilds with indexing for fast results" +HOMEPAGE="http://eix.sourceforge.net" +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" + +DEPEND="sqlite? ( >=dev-db/sqlite-3 ) + app-arch/bzip2" +RDEPEND="${DEPEND}" + +src_compile() { + econf --with-bzip2 $(use_with sqlite) || die "econf failed" + emake || die "emake failed" +} + +src_install() { + emake DESTDIR="${D}" install || die "emake install failed" + + dodoc AUTHORS ChangeLog TODO +} + +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. +} |