Gentoo Archives: gentoo-commits

From: "Samuli Suominen (drac)" <drac@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-admin/xstow: xstow-0.5.1.ebuild ChangeLog
Date: Mon, 28 Apr 2008 21:22:23
Message-Id: E1Jqanl-0001dI-Bn@stork.gentoo.org
1 drac 08/04/28 21:22:21
2
3 Modified: xstow-0.5.1.ebuild ChangeLog
4 Log:
5 Fix building with GCC 4.3 wrt #219633, thanks to Peter Alfredsen. Also fix USE ncurses handling and pass --without-curses instead of --without-ncurses to configure.
6 (Portage version: 2.1.5_rc6)
7
8 Revision Changes Path
9 1.4 app-admin/xstow/xstow-0.5.1.ebuild
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-admin/xstow/xstow-0.5.1.ebuild?rev=1.4&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-admin/xstow/xstow-0.5.1.ebuild?rev=1.4&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-admin/xstow/xstow-0.5.1.ebuild?r1=1.3&r2=1.4
14
15 Index: xstow-0.5.1.ebuild
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/app-admin/xstow/xstow-0.5.1.ebuild,v
18 retrieving revision 1.3
19 retrieving revision 1.4
20 diff -u -r1.3 -r1.4
21 --- xstow-0.5.1.ebuild 1 Aug 2006 04:35:31 -0000 1.3
22 +++ xstow-0.5.1.ebuild 28 Apr 2008 21:22:20 -0000 1.4
23 @@ -1,6 +1,6 @@
24 -# Copyright 1999-2006 Gentoo Foundation
25 +# Copyright 1999-2008 Gentoo Foundation
26 # Distributed under the terms of the GNU General Public License v2
27 -# $Header: /var/cvsroot/gentoo-x86/app-admin/xstow/xstow-0.5.1.ebuild,v 1.3 2006/08/01 04:35:31 tsunam Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/app-admin/xstow/xstow-0.5.1.ebuild,v 1.4 2008/04/28 21:22:20 drac Exp $
29
30 inherit eutils
31
32 @@ -10,18 +10,24 @@
33
34 LICENSE="GPL-2"
35 SLOT="0"
36 -KEYWORDS="~ppc x86"
37 +KEYWORDS="~amd64 ~ppc x86"
38 IUSE="ncurses"
39
40 -DEPEND="virtual/libc
41 - ncurses? ( sys-libs/ncurses )"
42 +DEPEND="ncurses? ( sys-libs/ncurses )"
43 +
44 +src_unpack() {
45 + unpack ${A}
46 + cd "${S}"
47 + epatch "${FILESDIR}"/${P}-gcc43.patch
48 +}
49
50 src_compile() {
51 - econf `use_with ncurses` || die
52 - emake || die
53 + econf --disable-dependency-tracking $(use_with ncurses curses)
54 + emake || die "emake failed."
55 }
56
57 src_install() {
58 - dodoc README AUTHORS NEWS README TODO ChangeLog
59 - make DESTDIR=${D} PACKAGE=${P} install || die
60 + emake DESTDIR="${D}" docdir="/usr/share/doc/${PF}/html" \
61 + install || die "emake install failed."
62 + dodoc AUTHORS ChangeLog NEWS README TODO
63 }
64
65
66
67 1.10 app-admin/xstow/ChangeLog
68
69 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-admin/xstow/ChangeLog?rev=1.10&view=markup
70 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-admin/xstow/ChangeLog?rev=1.10&content-type=text/plain
71 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-admin/xstow/ChangeLog?r1=1.9&r2=1.10
72
73 Index: ChangeLog
74 ===================================================================
75 RCS file: /var/cvsroot/gentoo-x86/app-admin/xstow/ChangeLog,v
76 retrieving revision 1.9
77 retrieving revision 1.10
78 diff -u -r1.9 -r1.10
79 --- ChangeLog 21 Feb 2007 19:49:52 -0000 1.9
80 +++ ChangeLog 28 Apr 2008 21:22:20 -0000 1.10
81 @@ -1,6 +1,12 @@
82 # ChangeLog for app-admin/xstow
83 -# Copyright 2000-2007 Gentoo Foundation; Distributed under the GPL v2
84 -# $Header: /var/cvsroot/gentoo-x86/app-admin/xstow/ChangeLog,v 1.9 2007/02/21 19:49:52 peper Exp $
85 +# Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2
86 +# $Header: /var/cvsroot/gentoo-x86/app-admin/xstow/ChangeLog,v 1.10 2008/04/28 21:22:20 drac Exp $
87 +
88 + 28 Apr 2008; Samuli Suominen <drac@g.o>
89 + +files/xstow-0.5.1-gcc43.patch, xstow-0.5.1.ebuild:
90 + Fix building with GCC 4.3 wrt #219633, thanks to Peter Alfredsen. Also fix
91 + USE ncurses handling and pass --without-curses instead of
92 + --without-ncurses to configure.
93
94 21 Feb 2007; Piotr JaroszyƄski <peper@g.o> ChangeLog:
95 Transition to Manifest2.
96
97
98
99 --
100 gentoo-commits@l.g.o mailing list