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.19.0.ebuild
Date: Tue, 01 Dec 2009 01:10:28
Message-Id: E1NFHG3-0006ua-Nx@stork.gentoo.org
1 darkside 09/12/01 01:10:23
2
3 Modified: ChangeLog
4 Added: eix-0.19.0.ebuild
5 Log:
6 Version bump. Many internal changes but not many visible to the end user. Turn off IUSE defaults because enough people complained. Remove deprecated IUSE flag because it has been enough time to phase out.
7 (Portage version: 2.1.7.4/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.310 app-portage/eix/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-portage/eix/ChangeLog?rev=1.310&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-portage/eix/ChangeLog?rev=1.310&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-portage/eix/ChangeLog?r1=1.309&r2=1.310
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/app-portage/eix/ChangeLog,v
19 retrieving revision 1.309
20 retrieving revision 1.310
21 diff -u -r1.309 -r1.310
22 --- ChangeLog 29 Oct 2009 18:15:01 -0000 1.309
23 +++ ChangeLog 1 Dec 2009 01:10:23 -0000 1.310
24 @@ -1,6 +1,13 @@
25 # ChangeLog for app-portage/eix
26 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/app-portage/eix/ChangeLog,v 1.309 2009/10/29 18:15:01 darkside Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/app-portage/eix/ChangeLog,v 1.310 2009/12/01 01:10:23 darkside Exp $
29 +
30 +*eix-0.19.0 (01 Dec 2009)
31 +
32 + 01 Dec 2009; Jeremy Olexa <darkside@g.o> +eix-0.19.0.ebuild:
33 + Version bump. Many internal changes but not many visible to the end user.
34 + Turn off IUSE defaults because enough people complained. Remove deprecated
35 + IUSE flag because it has been enough time to phase out.
36
37 *eix-0.18.3 (29 Oct 2009)
38
39
40
41
42 1.1 app-portage/eix/eix-0.19.0.ebuild
43
44 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-portage/eix/eix-0.19.0.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-portage/eix/eix-0.19.0.ebuild?rev=1.1&content-type=text/plain
46
47 Index: eix-0.19.0.ebuild
48 ===================================================================
49 # Copyright 1999-2009 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/app-portage/eix/eix-0.19.0.ebuild,v 1.1 2009/12/01 01:10:23 darkside Exp $
52
53 EAPI="2"
54
55 inherit multilib autotools
56
57 DESCRIPTION="Search and query ebuilds, portage incl. local settings, ext. overlays, version changes, and more"
58 HOMEPAGE="http://eix.sourceforge.net"
59 SRC_URI="mirror://sourceforge/eix/${P}.tar.xz"
60
61 LICENSE="GPL-2"
62 SLOT="0"
63 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"
64 IUSE="+bzip2 debug doc hardened nls optimization strong-optimization sqlite tools"
65
66 RDEPEND="sqlite? ( >=dev-db/sqlite-3 )
67 nls? ( virtual/libintl )
68 bzip2? ( app-arch/bzip2 )"
69 DEPEND="${RDEPEND}
70 app-arch/xz-utils
71 doc? ( dev-python/docutils )
72 nls? ( sys-devel/gettext )"
73
74 src_unpack() {
75 local i s
76 for i in ${A}
77 do
78 s="${DISTDIR%/}/${i}"
79 einfo "Unpacking ${s} to ${PWD}"
80 test -s "${s}" || die "${s} does not exist"
81 xz -dc -- "${s}" | tar xof - || die "Unpacking ${s} failed"
82 done
83 }
84
85 src_configure() {
86 econf $(use_with bzip2) $(use_with sqlite) $(use_with doc rst) \
87 $(use_enable nls) $(use_enable tools separate-tools) \
88 $(use_enable hardened security) $(use_enable optimization) \
89 $(use_enable strong-optimization) $(use_enable debug debugging) \
90 --with-ebuild-sh-default="/usr/$(get_libdir)/portage/bin/ebuild.sh" \
91 --with-portage-rootpath="${ROOTPATH}" \
92 --with-eprefix-default="${EPREFIX}" \
93 --docdir="${EPREFIX}/usr/share/doc/${PF}"
94 }
95
96 src_install() {
97 emake DESTDIR="${D}" install || die "emake install failed"
98 prepalldocs
99 }