Gentoo Archives: gentoo-commits

From: "Robin H. Johnson (robbat2)" <robbat2@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in x11-misc/ipager: ipager-1.1.0.ebuild ChangeLog
Date: Tue, 09 Sep 2008 03:48:30
Message-Id: E1KcuDL-0004u7-3g@stork.gentoo.org
1 robbat2 08/09/09 03:48:27
2
3 Modified: ipager-1.1.0.ebuild ChangeLog
4 Log:
5 Fix ipager to actually build.
6 (Portage version: 2.2_rc8/cvs/Linux 2.6.27-rc5-00283-g70bb089 x86_64)
7
8 Revision Changes Path
9 1.2 x11-misc/ipager/ipager-1.1.0.ebuild
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-misc/ipager/ipager-1.1.0.ebuild?rev=1.2&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-misc/ipager/ipager-1.1.0.ebuild?rev=1.2&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-misc/ipager/ipager-1.1.0.ebuild?r1=1.1&r2=1.2
14
15 Index: ipager-1.1.0.ebuild
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/x11-misc/ipager/ipager-1.1.0.ebuild,v
18 retrieving revision 1.1
19 retrieving revision 1.2
20 diff -p -w -b -B -u -u -r1.1 -r1.2
21 --- ipager-1.1.0.ebuild 9 Sep 2008 02:26:49 -0000 1.1
22 +++ ipager-1.1.0.ebuild 9 Sep 2008 03:48:26 -0000 1.2
23 @@ -1,6 +1,6 @@
24 # Copyright 1999-2008 Gentoo Foundation
25 # Distributed under the terms of the GNU General Public License v2
26 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/ipager/ipager-1.1.0.ebuild,v 1.1 2008/09/09 02:26:49 lack Exp $
27 +# $Header: /var/cvsroot/gentoo-x86/x11-misc/ipager/ipager-1.1.0.ebuild,v 1.2 2008/09/09 03:48:26 robbat2 Exp $
28
29 inherit eutils
30
31 @@ -14,6 +14,7 @@ KEYWORDS="~x86 ~amd64"
32 IUSE="xinerama"
33
34 RDEPEND="media-libs/imlib2
35 + x11-libs/libXmu
36 xinerama? ( x11-libs/libXinerama )"
37 DEPEND="dev-util/scons
38 ${RDEPEND}"
39 @@ -21,15 +22,30 @@ DEPEND="dev-util/scons
40 src_unpack() {
41 unpack ${A}
42 cd "${S}"
43 - epatch "${FILESDIR}/${P}-scons_imlib2.patch"
44 + epatch "${FILESDIR}"/${P}-scons_imlib2.patch
45 + epatch "${FILESDIR}"/${P}-gcc43.patch
46 + epatch "${FILESDIR}"/${P}-scons_flags.patch
47 }
48
49 src_compile() {
50 CONFIG_OPTS="xinerama=false"
51 - use xinerama && CONFIG_OPTS="xinerama=true"
52 - scons PREFIX="/usr" ${CONFIG_OPTS} || die "scons build failed"
53 + use xinerama && CONFIG_OPTS="${CONFIG_OPTS} xinerama=true"
54 + # FYI: Passing debug=true only adds -ggdb inside the SConstruct
55 +
56 + scons \
57 + --cache-disable \
58 + PREFIX="/usr" \
59 + ${CONFIG_OPTS} \
60 + || die "scons configure failed"
61 }
62
63 src_install() {
64 - scons DESTDIR="${D}" install || die "scons install failed"
65 + scons \
66 + --cache-disable \
67 + PREFIX="/usr" \
68 + DESTDIR="${D}" \
69 + install \
70 + || die "scons install failed"
71 + dodoc ToDo ChangeLog README
72 + dodoc themes/*.conf
73 }
74
75
76
77 1.2 x11-misc/ipager/ChangeLog
78
79 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-misc/ipager/ChangeLog?rev=1.2&view=markup
80 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-misc/ipager/ChangeLog?rev=1.2&content-type=text/plain
81 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-misc/ipager/ChangeLog?r1=1.1&r2=1.2
82
83 Index: ChangeLog
84 ===================================================================
85 RCS file: /var/cvsroot/gentoo-x86/x11-misc/ipager/ChangeLog,v
86 retrieving revision 1.1
87 retrieving revision 1.2
88 diff -p -w -b -B -u -u -r1.1 -r1.2
89 --- ChangeLog 9 Sep 2008 02:26:49 -0000 1.1
90 +++ ChangeLog 9 Sep 2008 03:48:26 -0000 1.2
91 @@ -1,6 +1,11 @@
92 # ChangeLog for x11-misc/ipager
93 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
94 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/ipager/ChangeLog,v 1.1 2008/09/09 02:26:49 lack Exp $
95 +# $Header: /var/cvsroot/gentoo-x86/x11-misc/ipager/ChangeLog,v 1.2 2008/09/09 03:48:26 robbat2 Exp $
96 +
97 + 09 Sep 2008; Robin H. Johnson <robbat2@g.o>
98 + +files/ipager-1.1.0-gcc43.patch, +files/ipager-1.1.0-scons_flags.patch,
99 + ipager-1.1.0.ebuild:
100 + Fix ipager to actually build.
101
102 *ipager-1.1.0 (09 Sep 2008)