Gentoo Archives: gentoo-commits

From: "Jeroen Roovers (jer)" <jer@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sys-apps/pv: pv-1.3.1.ebuild ChangeLog
Date: Thu, 28 Jun 2012 01:15:33
Message-Id: 20120628011523.9DFF42004B@flycatcher.gentoo.org
1 jer 12/06/28 01:15:23
2
3 Modified: ChangeLog
4 Added: pv-1.3.1.ebuild
5 Log:
6 Version bump.
7
8 (Portage version: 2.2.0_alpha113/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.32 sys-apps/pv/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/pv/ChangeLog?rev=1.32&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/pv/ChangeLog?rev=1.32&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/pv/ChangeLog?r1=1.31&r2=1.32
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/sys-apps/pv/ChangeLog,v
20 retrieving revision 1.31
21 retrieving revision 1.32
22 diff -u -r1.31 -r1.32
23 --- ChangeLog 22 Jun 2012 15:38:51 -0000 1.31
24 +++ ChangeLog 28 Jun 2012 01:15:23 -0000 1.32
25 @@ -1,6 +1,11 @@
26 # ChangeLog for sys-apps/pv
27 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/pv/ChangeLog,v 1.31 2012/06/22 15:38:51 ranger Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/sys-apps/pv/ChangeLog,v 1.32 2012/06/28 01:15:23 jer Exp $
30 +
31 +*pv-1.3.1 (28 Jun 2012)
32 +
33 + 28 Jun 2012; Jeroen Roovers <jer@g.o> +pv-1.3.1.ebuild:
34 + Version bump.
35
36 22 Jun 2012; Brent Baude <ranger@g.o> pv-1.2.0-r1.ebuild:
37 Marking pv-1.2.0-r1 ppc64 for bug 422187
38
39
40
41 1.1 sys-apps/pv/pv-1.3.1.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/pv/pv-1.3.1.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/pv/pv-1.3.1.ebuild?rev=1.1&content-type=text/plain
45
46 Index: pv-1.3.1.ebuild
47 ===================================================================
48 # Copyright 1999-2012 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/sys-apps/pv/pv-1.3.1.ebuild,v 1.1 2012/06/28 01:15:23 jer Exp $
51
52 EAPI="4"
53
54 inherit toolchain-funcs
55
56 DESCRIPTION="Pipe Viewer: a tool for monitoring the progress of data through a pipe"
57 HOMEPAGE="http://www.ivarch.com/programs/pv.shtml"
58 SRC_URI="http://www.ivarch.com/programs/sources/${P}.tar.gz"
59
60 LICENSE="Artistic-2"
61 SLOT="0"
62 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc64-solaris ~x86-solaris"
63
64 IUSE="nls"
65 PV_LINGUAS="de fr pl pt"
66 for lingua in ${PV_LINGUAS}; do
67 IUSE+=" linguas_${lingua}"
68 done
69
70 DOCS=( README doc/NEWS doc/TODO )
71
72 src_configure() {
73 local lingua
74 for lingua in ${PV_LINGUAS}; do
75 if ! use linguas_${lingua}; then
76 sed -i configure -e "/ALL_LINGUAS=/s:${lingua}::g" || die
77 fi
78 done
79 econf $(use_enable nls)
80 }
81
82 src_compile() {
83 emake LD="$(tc-getLD)"
84 }
85
86 src_install() {
87 default
88 # local lingua=""
89 # for lingua in ${PV_LINGUAS}; do
90 # if ! use linguas_$lingua; then
91 # rm -rf "${D}"/usr/share/locale/$lingua || die
92 # fi
93 # done
94 }