Gentoo Archives: gentoo-commits

From: "Kacper Kowalik (xarthisius)" <xarthisius@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in x11-misc/bbtime: ChangeLog bbtime-0.1.5.ebuild
Date: Sun, 30 May 2010 17:29:29
Message-Id: 20100530172924.303A92CF37@corvid.gentoo.org
1 xarthisius 10/05/30 17:29:24
2
3 Modified: ChangeLog bbtime-0.1.5.ebuild
4 Log:
5 Fixing build with as-needed wrt bug 248555. Thanks Diego for report
6 (Portage version: 2.1.8.3/cvs/Linux x86_64)
7
8 Revision Changes Path
9 1.13 x11-misc/bbtime/ChangeLog
10
11 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/bbtime/ChangeLog?rev=1.13&view=markup
12 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/bbtime/ChangeLog?rev=1.13&content-type=text/plain
13 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/bbtime/ChangeLog?r1=1.12&r2=1.13
14
15 Index: ChangeLog
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/x11-misc/bbtime/ChangeLog,v
18 retrieving revision 1.12
19 retrieving revision 1.13
20 diff -u -r1.12 -r1.13
21 --- ChangeLog 22 Sep 2008 12:59:51 -0000 1.12
22 +++ ChangeLog 30 May 2010 17:29:23 -0000 1.13
23 @@ -1,6 +1,10 @@
24 # ChangeLog for x11-misc/bbtime
25 -# Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
26 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/bbtime/ChangeLog,v 1.12 2008/09/22 12:59:51 omp Exp $
27 +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
28 +# $Header: /var/cvsroot/gentoo-x86/x11-misc/bbtime/ChangeLog,v 1.13 2010/05/30 17:29:23 xarthisius Exp $
29 +
30 + 30 May 2010; Kacper Kowalik <xarthisius@g.o> bbtime-0.1.5.ebuild,
31 + +files/bbtime-0.1.5-asneeded.patch:
32 + Fixing build with as-needed wrt bug 248555. Thanks Diego for report
33
34 22 Sep 2008; David Shakaryan <omp@g.o> metadata.xml:
35 Change herd from commonbox to desktop-wm.
36
37
38
39 1.9 x11-misc/bbtime/bbtime-0.1.5.ebuild
40
41 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/bbtime/bbtime-0.1.5.ebuild?rev=1.9&view=markup
42 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/bbtime/bbtime-0.1.5.ebuild?rev=1.9&content-type=text/plain
43 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/bbtime/bbtime-0.1.5.ebuild?r1=1.8&r2=1.9
44
45 Index: bbtime-0.1.5.ebuild
46 ===================================================================
47 RCS file: /var/cvsroot/gentoo-x86/x11-misc/bbtime/bbtime-0.1.5.ebuild,v
48 retrieving revision 1.8
49 retrieving revision 1.9
50 diff -u -r1.8 -r1.9
51 --- bbtime-0.1.5.ebuild 7 Dec 2006 02:28:31 -0000 1.8
52 +++ bbtime-0.1.5.ebuild 30 May 2010 17:29:23 -0000 1.9
53 @@ -1,6 +1,10 @@
54 -# Copyright 1999-2006 Gentoo Foundation
55 +# Copyright 1999-2010 Gentoo Foundation
56 # Distributed under the terms of the GNU General Public License v2
57 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/bbtime/bbtime-0.1.5.ebuild,v 1.8 2006/12/07 02:28:31 flameeyes Exp $
58 +# $Header: /var/cvsroot/gentoo-x86/x11-misc/bbtime/bbtime-0.1.5.ebuild,v 1.9 2010/05/30 17:29:23 xarthisius Exp $
59 +
60 +EAPI=2
61 +
62 +inherit autotools eutils
63
64 DESCRIPTION="blackbox time watcher"
65 HOMEPAGE="http://bbtools.windsofstorm.net/available.phtml#bbtime"
66 @@ -8,17 +12,25 @@
67
68 LICENSE="GPL-2"
69 SLOT="0"
70 -KEYWORDS="ppc x86 ~x86-fbsd"
71 +KEYWORDS="~amd64 ppc x86 ~x86-fbsd"
72 IUSE=""
73
74 -DEPEND="virtual/blackbox"
75 +DEPEND="x11-libs/libX11"
76 +RDEPEND="${DEPEND}
77 + virtual/blackbox"
78 +
79 +src_prepare() {
80 + epatch "${FILESDIR}"/${P}-asneeded.patch
81 + eautoreconf
82 +}
83
84 src_install () {
85 - make DESTDIR="${D}" install || die "make install failed"
86 - dodoc README COPYING AUTHORS BUGS INSTALL ChangeLog NEWS TODO
87 + emake DESTDIR="${D}" install || die "make install failed"
88 + dodoc README AUTHORS BUGS ChangeLog NEWS TODO data/README.bbtime || die
89
90 + rm "${D}"/usr/share/bbtools/README.bbtime
91 # since multiple bbtools packages provide this file, install
92 # it in /usr/share/doc/${PF}
93 - mv ${D}/usr/share/bbtools/bbtoolsrc.in \
94 - ${D}/usr/share/doc/${PF}/bbtoolsrc.example
95 + mv "${D}/usr/share/bbtools/bbtoolsrc.in" \
96 + "${D}/usr/share/doc/${PF}/bbtoolsrc.example"
97 }