Gentoo Archives: gentoo-commits

From: "Ulrich Mueller (ulm)" <ulm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-portage/eix: ChangeLog eix-0.23.5.ebuild eix-0.23.4.ebuild
Date: Sun, 01 Jan 2012 23:21:27
Message-Id: 20120101232116.6C3CE2004B@flycatcher.gentoo.org
1 ulm 12/01/01 23:21:16
2
3 Modified: ChangeLog
4 Added: eix-0.23.5.ebuild
5 Removed: eix-0.23.4.ebuild
6 Log:
7 Non-maintainer commit: Version bump, bug 396729.
8
9 (Portage version: 2.1.10.44/cvs/Linux x86_64)
10
11 Revision Changes Path
12 1.392 app-portage/eix/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-portage/eix/ChangeLog?rev=1.392&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-portage/eix/ChangeLog?rev=1.392&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-portage/eix/ChangeLog?r1=1.391&r2=1.392
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/app-portage/eix/ChangeLog,v
21 retrieving revision 1.391
22 retrieving revision 1.392
23 diff -u -r1.391 -r1.392
24 --- ChangeLog 25 Dec 2011 16:10:09 -0000 1.391
25 +++ ChangeLog 1 Jan 2012 23:21:16 -0000 1.392
26 @@ -1,6 +1,12 @@
27 # ChangeLog for app-portage/eix
28 -# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/app-portage/eix/ChangeLog,v 1.391 2011/12/25 16:10:09 darkside Exp $
30 +# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
31 +# $Header: /var/cvsroot/gentoo-x86/app-portage/eix/ChangeLog,v 1.392 2012/01/01 23:21:16 ulm Exp $
32 +
33 +*eix-0.23.5 (01 Jan 2012)
34 +
35 + 01 Jan 2012; Ulrich Mueller <ulm@g.o> -eix-0.23.4.ebuild,
36 + +eix-0.23.5.ebuild:
37 + Non-maintainer commit: Version bump, bug 396729.
38
39 *eix-0.23.4 (25 Dec 2011)
40
41
42
43
44 1.1 app-portage/eix/eix-0.23.5.ebuild
45
46 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-portage/eix/eix-0.23.5.ebuild?rev=1.1&view=markup
47 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-portage/eix/eix-0.23.5.ebuild?rev=1.1&content-type=text/plain
48
49 Index: eix-0.23.5.ebuild
50 ===================================================================
51 # Copyright 1999-2012 Gentoo Foundation
52 # Distributed under the terms of the GNU General Public License v2
53 # $Header: /var/cvsroot/gentoo-x86/app-portage/eix/eix-0.23.5.ebuild,v 1.1 2012/01/01 23:21:16 ulm Exp $
54
55 EAPI=4
56
57 inherit multilib bash-completion-r1
58
59 DESCRIPTION="Search and query ebuilds, portage incl. local settings, ext. overlays, version changes, and more"
60 HOMEPAGE="http://eix.berlios.de"
61 SRC_URI="mirror://berlios/${PN}/${P}.tar.xz"
62
63 LICENSE="GPL-2"
64 SLOT="0"
65 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"
66 IUSE="debug doc nls optimization security strong-optimization sqlite tools zsh-completion"
67
68 RDEPEND="sqlite? ( >=dev-db/sqlite-3 )
69 nls? ( virtual/libintl )
70 zsh-completion? ( !!<app-shells/zsh-completion-20091203-r1 )"
71 DEPEND="${RDEPEND}
72 app-arch/xz-utils
73 nls? ( sys-devel/gettext )"
74
75 src_configure() {
76 econf $(use_with sqlite) $(use_with doc extra-doc) \
77 $(use_with zsh-completion) \
78 $(use_enable nls) $(use_enable tools separate-tools) \
79 $(use_enable security) $(use_enable optimization) \
80 $(use_enable strong-optimization) $(use_enable debug debugging) \
81 $(use_with prefix always-accept-keywords) \
82 --without-bzip2 \
83 --with-ebuild-sh-default="/usr/$(get_libdir)/portage/bin/ebuild.sh" \
84 --with-portage-rootpath="${ROOTPATH}" \
85 --with-eprefix-default="${EPREFIX}" \
86 --docdir="${EPREFIX}/usr/share/doc/${PF}" \
87 --htmldir="${EPREFIX}/usr/share/doc/${PF}/html"
88 }
89
90 src_install() {
91 default
92 dobashcomp bash/eix
93 }