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.20.4.ebuild
Date: Thu, 22 Apr 2010 17:51:28
Message-Id: 20100422175125.DD1B228AEE@corvid.gentoo.org
1 darkside 10/04/22 17:51:25
2
3 Modified: ChangeLog
4 Added: eix-0.20.4.ebuild
5 Log:
6 Version bump with bug fixes for bugs: 315611, 313267, 305737 and other small issues
7 (Portage version: 2.1.8.3/cvs/Linux armv7l)
8
9 Revision Changes Path
10 1.331 app-portage/eix/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-portage/eix/ChangeLog?rev=1.331&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-portage/eix/ChangeLog?rev=1.331&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-portage/eix/ChangeLog?r1=1.330&r2=1.331
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/app-portage/eix/ChangeLog,v
19 retrieving revision 1.330
20 retrieving revision 1.331
21 diff -u -r1.330 -r1.331
22 --- ChangeLog 31 Mar 2010 14:26:27 -0000 1.330
23 +++ ChangeLog 22 Apr 2010 17:51:25 -0000 1.331
24 @@ -1,6 +1,12 @@
25 # ChangeLog for app-portage/eix
26 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/app-portage/eix/ChangeLog,v 1.330 2010/03/31 14:26:27 idl0r Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/app-portage/eix/ChangeLog,v 1.331 2010/04/22 17:51:25 darkside Exp $
29 +
30 +*eix-0.20.4 (22 Apr 2010)
31 +
32 + 22 Apr 2010; Jeremy Olexa <darkside@g.o> +eix-0.20.4.ebuild:
33 + Version bump with bug fixes for bugs: 315611, 313267, 305737 and other
34 + small issues
35
36 31 Mar 2010; Christian Ruppert <idl0r@g.o>
37 -files/eix-0.19.0-security.patch:
38
39
40
41 1.1 app-portage/eix/eix-0.20.4.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-portage/eix/eix-0.20.4.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-portage/eix/eix-0.20.4.ebuild?rev=1.1&content-type=text/plain
45
46 Index: eix-0.20.4.ebuild
47 ===================================================================
48 # Copyright 1999-2010 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.20.4.ebuild,v 1.1 2010/04/22 17:51:25 darkside Exp $
51
52 EAPI=3
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"
64
65 RDEPEND="sqlite? ( >=dev-db/sqlite-3 )
66 nls? ( virtual/libintl )
67 bzip2? ( app-arch/bzip2 )"
68 DEPEND="${RDEPEND}
69 app-arch/xz-utils
70 doc? ( dev-python/docutils )
71 nls? ( sys-devel/gettext )"
72
73 src_configure() {
74 econf $(use_with bzip2) $(use_with sqlite) $(use_with doc rst) \
75 $(use_enable nls) $(use_enable tools separate-tools) \
76 $(use_enable hardened security) $(use_enable optimization) \
77 $(use_enable strong-optimization) $(use_enable debug debugging) \
78 --with-ebuild-sh-default="/usr/$(get_libdir)/portage/bin/ebuild.sh" \
79 --with-portage-rootpath="${ROOTPATH}" \
80 --with-eprefix-default="${EPREFIX}" \
81 --docdir="${EPREFIX}/usr/share/doc/${PF}" \
82 --htmldir="${EPREFIX}/usr/share/doc/${PF}/html"
83 }
84
85 src_install() {
86 emake DESTDIR="${D}" install || die "emake install failed"
87 prepalldocs
88 }