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.0.ebuild
Date: Thu, 04 Feb 2010 14:58:10
Message-Id: E1Nd39h-0006SW-KN@stork.gentoo.org
1 darkside 10/02/04 14:58:05
2
3 Modified: ChangeLog
4 Added: eix-0.20.0.ebuild
5 Log:
6 Version bump to 0.20.0. Minor changes of which most are internal coding styles. Intorduce brace command line parsing.
7 (Portage version: 2.1.7.17/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.317 app-portage/eix/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-portage/eix/ChangeLog?rev=1.317&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-portage/eix/ChangeLog?rev=1.317&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-portage/eix/ChangeLog?r1=1.316&r2=1.317
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/app-portage/eix/ChangeLog,v
19 retrieving revision 1.316
20 retrieving revision 1.317
21 diff -u -r1.316 -r1.317
22 --- ChangeLog 12 Jan 2010 06:22:05 -0000 1.316
23 +++ ChangeLog 4 Feb 2010 14:58:04 -0000 1.317
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.316 2010/01/12 06:22:05 darkside Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/app-portage/eix/ChangeLog,v 1.317 2010/02/04 14:58:04 darkside Exp $
29 +
30 +*eix-0.20.0 (04 Feb 2010)
31 +
32 + 04 Feb 2010; Jeremy Olexa <darkside@g.o> +eix-0.20.0.ebuild:
33 + Version bump to 0.20.0. Minor changes of which most are internal coding
34 + styles. Intorduce brace command line parsing.
35
36 12 Jan 2010; Jeremy Olexa <darkside@g.o> eix-0.17.0.ebuild:
37 Add dep on xz-utils or lzma-utils since xz is in the stable tree now.
38
39
40
41 1.1 app-portage/eix/eix-0.20.0.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-portage/eix/eix-0.20.0.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-portage/eix/eix-0.20.0.ebuild?rev=1.1&content-type=text/plain
45
46 Index: eix-0.20.0.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.0.ebuild,v 1.1 2010/02/04 14:58:04 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.sourceforge.net"
58 SRC_URI="mirror://sourceforge/eix/${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 }