Gentoo Archives: gentoo-commits

From: "Mike Frysinger (vapier)" <vapier@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-libs/libcaptury: libcaptury-0.3.0_pre200712251-r2.ebuild ChangeLog
Date: Sun, 02 Nov 2008 07:17:08
Message-Id: E1KwXCs-0008Q4-KS@stork.gentoo.org
1 vapier 08/11/02 07:17:06
2
3 Modified: libcaptury-0.3.0_pre200712251-r2.ebuild ChangeLog
4 Log:
5 Add ppc/ppc64 love for KDE 4.
6 (Portage version: 2.2_rc12/cvs/Linux 2.6.26.2 x86_64)
7
8 Revision Changes Path
9 1.2 media-libs/libcaptury/libcaptury-0.3.0_pre200712251-r2.ebuild
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/libcaptury/libcaptury-0.3.0_pre200712251-r2.ebuild?rev=1.2&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/libcaptury/libcaptury-0.3.0_pre200712251-r2.ebuild?rev=1.2&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/libcaptury/libcaptury-0.3.0_pre200712251-r2.ebuild?r1=1.1&r2=1.2
14
15 Index: libcaptury-0.3.0_pre200712251-r2.ebuild
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/media-libs/libcaptury/libcaptury-0.3.0_pre200712251-r2.ebuild,v
18 retrieving revision 1.1
19 retrieving revision 1.2
20 diff -u -r1.1 -r1.2
21 --- libcaptury-0.3.0_pre200712251-r2.ebuild 13 Oct 2008 19:55:19 -0000 1.1
22 +++ libcaptury-0.3.0_pre200712251-r2.ebuild 2 Nov 2008 07:17:06 -0000 1.2
23 @@ -1,28 +1,29 @@
24 # Copyright 1999-2008 Gentoo Foundation
25 # Distributed under the terms of the GNU General Public License v2
26 -# $Header: /var/cvsroot/gentoo-x86/media-libs/libcaptury/libcaptury-0.3.0_pre200712251-r2.ebuild,v 1.1 2008/10/13 19:55:19 trapni Exp $
27 +# $Header: /var/cvsroot/gentoo-x86/media-libs/libcaptury/libcaptury-0.3.0_pre200712251-r2.ebuild,v 1.2 2008/11/02 07:17:06 vapier Exp $
28
29 inherit multilib flag-o-matic
30
31 DESCRIPTION="Captury Framework Library"
32 HOMEPAGE="http://rm-rf.in/projects/captury/"
33 SRC_URI="http://upstream.rm-rf.in./captury/captury-${PV}.tar.bz2"
34 +
35 LICENSE="LGPL-2.1"
36 SLOT="0"
37 -KEYWORDS="~amd64 ~x86"
38 +KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
39 IUSE="debug multilib"
40
41 RDEPEND=">=media-libs/capseo-0.3.0_pre200712251
42 - x11-libs/libX11
43 - x11-libs/libXfixes
44 - virtual/opengl
45 - amd64? ( multilib? (
46 - app-emulation/emul-linux-x86-xlibs
47 - app-emulation/emul-linux-x86-medialibs
48 - ) )"
49 + x11-libs/libX11
50 + x11-libs/libXfixes
51 + virtual/opengl
52 + amd64? ( multilib? (
53 + >=app-emulation/emul-linux-x86-xlibs-20071114
54 + app-emulation/emul-linux-x86-medialibs
55 + ) )"
56
57 DEPEND="${RDEPEND}
58 - dev-util/pkgconfig"
59 + dev-util/pkgconfig"
60
61 EMULTILIB_PKG="true"
62
63 @@ -35,26 +36,20 @@
64 }
65
66 setup_env() {
67 - LD_LIBRARY_PATH=
68 - LDFLAGS=
69 -
70 - # keep backwards compatibility as long as I *have* to.
71 - if use amd64 && [[ ${ABI} = "x86" ]]; then
72 - if has_version '<app-emulation/emul-linux-x86-xlibs-7.0-r8'; then
73 - LDFLAGS="-L/emul/linux/x86/usr/lib"
74 - LD_LIBRARY_PATH="/emul/linux/x86/usr/lib"
75 - fi
76 - fi
77 -
78 - export LDFLAGS
79 - export LD_LIBRARY_PATH
80 -
81 # workaround for users having FEATURES=ccache set, as ccache doesn't, play
82 # nice to multilib builds (see bug 206822)
83 filter-flags -DABI=*
84 append-flags -DABI=${ABI}
85 }
86
87 +src_unpack() {
88 + unpack ${A}
89 + cd "${S}"
90 + if [[ ! -f configure ]]; then
91 + ./autogen.sh || die "autogen.sh failed"
92 + fi
93 +}
94 +
95 src_compile() {
96 if [[ -z ${OABI} ]] && has_multilib_profile; then
97 use debug && append-flags -O0 -g3
98 @@ -72,10 +67,6 @@
99
100 cd "${S}"
101
102 - if [[ ! -f configure ]]; then
103 - ./autogen.sh || die "autogen.sh failed"
104 - fi
105 -
106 ABI=${ABI:-default}
107
108 setup_env
109
110
111
112 1.8 media-libs/libcaptury/ChangeLog
113
114 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/libcaptury/ChangeLog?rev=1.8&view=markup
115 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/libcaptury/ChangeLog?rev=1.8&content-type=text/plain
116 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/libcaptury/ChangeLog?r1=1.7&r2=1.8
117
118 Index: ChangeLog
119 ===================================================================
120 RCS file: /var/cvsroot/gentoo-x86/media-libs/libcaptury/ChangeLog,v
121 retrieving revision 1.7
122 retrieving revision 1.8
123 diff -u -r1.7 -r1.8
124 --- ChangeLog 13 Oct 2008 19:55:19 -0000 1.7
125 +++ ChangeLog 2 Nov 2008 07:17:06 -0000 1.8
126 @@ -1,6 +1,10 @@
127 # ChangeLog for media-libs/libcaptury
128 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
129 -# $Header: /var/cvsroot/gentoo-x86/media-libs/libcaptury/ChangeLog,v 1.7 2008/10/13 19:55:19 trapni Exp $
130 +# $Header: /var/cvsroot/gentoo-x86/media-libs/libcaptury/ChangeLog,v 1.8 2008/11/02 07:17:06 vapier Exp $
131 +
132 + 02 Nov 2008; Mike Frysinger <vapier@g.o>
133 + libcaptury-0.3.0_pre200712251-r2.ebuild:
134 + Add ppc/ppc64 love for KDE 4.
135
136 *libcaptury-0.3.0_pre200712251-r2 (13 Oct 2008)