Gentoo Archives: gentoo-commits

From: "Jeremy Olexa (darkside)" <darkside@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-portage/eix: ChangeLog eix-0.22.7.ebuild
Date: Mon, 31 Jan 2011 20:09:04
Message-Id: 20110131200853.98E8D20054@flycatcher.gentoo.org
1 darkside 11/01/31 20:08:53
2
3 Modified: ChangeLog
4 Added: eix-0.22.7.ebuild
5 Log:
6 Version bump from upstream, fixed gentoo bug 350321 and other small fixes
7
8 (Portage version: 2.1.9.35/cvs/Linux i686)
9
10 Revision Changes Path
11 1.361 app-portage/eix/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-portage/eix/ChangeLog?rev=1.361&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-portage/eix/ChangeLog?rev=1.361&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-portage/eix/ChangeLog?r1=1.360&r2=1.361
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/app-portage/eix/ChangeLog,v
20 retrieving revision 1.360
21 retrieving revision 1.361
22 diff -u -r1.360 -r1.361
23 --- ChangeLog 8 Jan 2011 01:30:41 -0000 1.360
24 +++ ChangeLog 31 Jan 2011 20:08:53 -0000 1.361
25 @@ -1,6 +1,11 @@
26 # ChangeLog for app-portage/eix
27 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/app-portage/eix/ChangeLog,v 1.360 2011/01/08 01:30:41 ranger Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/app-portage/eix/ChangeLog,v 1.361 2011/01/31 20:08:53 darkside Exp $
30 +
31 +*eix-0.22.7 (31 Jan 2011)
32 +
33 + 31 Jan 2011; Jeremy Olexa <darkside@g.o> +eix-0.22.7.ebuild:
34 + Version bump from upstream, fixed gentoo bug 350321 and other small fixes
35
36 08 Jan 2011; Brent Baude <ranger@g.o> eix-0.22.5.ebuild:
37 stable ppc, bug 347305
38
39
40
41 1.1 app-portage/eix/eix-0.22.7.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-portage/eix/eix-0.22.7.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-portage/eix/eix-0.22.7.ebuild?rev=1.1&content-type=text/plain
45
46 Index: eix-0.22.7.ebuild
47 ===================================================================
48 # Copyright 1999-2011 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/app-portage/eix/eix-0.22.7.ebuild,v 1.1 2011/01/31 20:08:53 darkside Exp $
51
52 EAPI="4"
53
54 inherit multilib
55
56 DESCRIPTION="Search and query ebuilds, portage incl. local settings, ext. overlays, version changes, and more"
57 HOMEPAGE="http://eix.berlios.de"
58 SRC_URI="mirror://berlios/${PN}/${P}.tar.xz"
59
60 LICENSE="GPL-2"
61 SLOT="0"
62 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"
63 IUSE="bzip2 debug doc hardened nls optimization strong-optimization sqlite tools zsh-completion"
64
65 RDEPEND="sqlite? ( >=dev-db/sqlite-3 )
66 nls? ( virtual/libintl )
67 bzip2? ( app-arch/bzip2 )
68 zsh-completion? ( !!<app-shells/zsh-completion-20091203-r1 )"
69 DEPEND="${RDEPEND}
70 app-arch/xz-utils
71 doc? ( dev-python/docutils )
72 nls? ( sys-devel/gettext )"
73
74 src_configure() {
75 econf $(use_with bzip2) $(use_with sqlite) $(use_with doc rst) \
76 $(use_with zsh-completion) \
77 $(use_enable nls) $(use_enable tools separate-tools) \
78 $(use_enable hardened security) $(use_enable optimization) \
79 $(use_enable strong-optimization) $(use_enable debug debugging) \
80 --with-ebuild-sh-default="/usr/$(get_libdir)/portage/bin/ebuild.sh" \
81 --with-portage-rootpath="${ROOTPATH}" \
82 --with-eprefix-default="${EPREFIX}" \
83 --docdir="${EPREFIX}/usr/share/doc/${PF}"
84 }
85
86 src_install() {
87 default_src_install
88 use doc && cd -- "${ED}" && docompress -x "usr/share/doc/${PF}/"*.html
89 }