Gentoo Archives: gentoo-commits

From: "Peter Volkov (pva)" <pva@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sys-apps/bar: ChangeLog bar-1.10.9.ebuild bar-1.10.2.ebuild
Date: Tue, 27 Jan 2009 08:09:36
Message-Id: E1LRj0n-00077Q-Fx@stork.gentoo.org
1 pva 09/01/27 08:09:33
2
3 Modified: ChangeLog
4 Added: bar-1.10.9.ebuild
5 Removed: bar-1.10.2.ebuild
6 Log:
7 Version bump. Don't pre-stripped executable, bug #241242, thank Diego E. 'Flameeyes' Pettenò for report.
8 (Portage version: 2.2_rc23/cvs/Linux i686)
9
10 Revision Changes Path
11 1.19 sys-apps/bar/ChangeLog
12
13 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/bar/ChangeLog?rev=1.19&view=markup
14 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/bar/ChangeLog?rev=1.19&content-type=text/plain
15 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/bar/ChangeLog?r1=1.18&r2=1.19
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/sys-apps/bar/ChangeLog,v
20 retrieving revision 1.18
21 retrieving revision 1.19
22 diff -u -r1.18 -r1.19
23 --- ChangeLog 18 Apr 2007 20:06:47 -0000 1.18
24 +++ ChangeLog 27 Jan 2009 08:09:33 -0000 1.19
25 @@ -1,6 +1,13 @@
26 # ChangeLog for sys-apps/bar
27 -# Copyright 2000-2007 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/bar/ChangeLog,v 1.18 2007/04/18 20:06:47 welp Exp $
29 +# Copyright 2000-2009 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/sys-apps/bar/ChangeLog,v 1.19 2009/01/27 08:09:33 pva Exp $
31 +
32 +*bar-1.10.9 (27 Jan 2009)
33 +
34 + 27 Jan 2009; Peter Volkov <pva@g.o> -bar-1.10.2.ebuild,
35 + +bar-1.10.9.ebuild:
36 + Version bump. Don't pre-stripped executable, bug #241242, thank Diego E.
37 + 'Flameeyes' Pettenò for report.
38
39 18 Apr 2007; <welp@g.o> bar-1.10.3.ebuild:
40 Stable on amd64 wrt bug 175087
41
42
43
44 1.1 sys-apps/bar/bar-1.10.9.ebuild
45
46 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/bar/bar-1.10.9.ebuild?rev=1.1&view=markup
47 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/bar/bar-1.10.9.ebuild?rev=1.1&content-type=text/plain
48
49 Index: bar-1.10.9.ebuild
50 ===================================================================
51 # Copyright 1999-2009 Gentoo Foundation
52 # Distributed under the terms of the GNU General Public License v2
53 # $Header: /var/cvsroot/gentoo-x86/sys-apps/bar/bar-1.10.9.ebuild,v 1.1 2009/01/27 08:09:33 pva Exp $
54
55 inherit autotools
56
57 DESCRIPTION="Console Progress Bar"
58 HOMEPAGE="http://clpbar.sourceforge.net/"
59 SRC_URI="mirror://sourceforge/clpbar/${PN}_${PV}.tar.gz"
60
61 LICENSE="GPL-2"
62 SLOT="0"
63 KEYWORDS="~amd64 ~sparc ~x86"
64 IUSE="doc"
65
66 DEPEND="doc? ( >=app-doc/doxygen-1.3.5 )"
67 RDEPEND=""
68
69 src_unpack() {
70 unpack ${A}
71 cd "${S}"
72 sed -e '/^LDFLAGS/d' \
73 -e '/cd $(WEB_DIR) && $(MAKE)/d' -i Makefile.am
74 eautomake
75 }
76
77 src_compile() {
78 local myconf
79
80 # Fix wrt #113392
81 use sparc && myconf="${myconf} --disable-use-memalign"
82 econf ${myconf}
83
84 emake CFLAGS="${CFLAGS}" || die "emake failed"
85 if use doc; then
86 mkdir -p ../www/doxygen/${PV}
87 emake update-web || die "make doc failed" ;
88 fi
89 }
90
91 src_install() {
92 make DESTDIR="${D}" install || die "make install failed"
93 dodoc AUTHORS TODO TROUBLESHOOTING debian/changelog || die "dodoc failed"
94 newdoc ChangeLog ChangeLog.old || die
95 if use doc ; then
96 dohtml -r ../www/doxygen/${PV}/html/*
97 fi
98 }