Gentoo Archives: gentoo-commits

From: "Samuli Suominen (drac)" <drac@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in x11-plugins/wmdots: wmdots-0.2_beta.ebuild ChangeLog
Date: Sun, 06 Jan 2008 13:30:09
Message-Id: E1JBVZm-0004P4-Nq@stork.gentoo.org
1 drac 08/01/06 13:30:06
2
3 Modified: wmdots-0.2_beta.ebuild ChangeLog
4 Log:
5 Run make clean to remove i386 objects before building wrt #204544. Respect CC and CFLAGS targets. Fix QA compiler warnings due to missing include string.h.
6 (Portage version: 2.1.4_rc14)
7
8 Revision Changes Path
9 1.12 x11-plugins/wmdots/wmdots-0.2_beta.ebuild
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-plugins/wmdots/wmdots-0.2_beta.ebuild?rev=1.12&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-plugins/wmdots/wmdots-0.2_beta.ebuild?rev=1.12&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-plugins/wmdots/wmdots-0.2_beta.ebuild?r1=1.11&r2=1.12
14
15 Index: wmdots-0.2_beta.ebuild
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/x11-plugins/wmdots/wmdots-0.2_beta.ebuild,v
18 retrieving revision 1.11
19 retrieving revision 1.12
20 diff -u -r1.11 -r1.12
21 --- wmdots-0.2_beta.ebuild 22 Jul 2007 05:11:15 -0000 1.11
22 +++ wmdots-0.2_beta.ebuild 6 Jan 2008 13:30:06 -0000 1.12
23 @@ -1,16 +1,16 @@
24 -# Copyright 1999-2007 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/x11-plugins/wmdots/wmdots-0.2_beta.ebuild,v 1.11 2007/07/22 05:11:15 dberkholz Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/x11-plugins/wmdots/wmdots-0.2_beta.ebuild,v 1.12 2008/01/06 13:30:06 drac Exp $
29
30 -MY_P=wmdots-0.2beta
31 -S=${WORKDIR}/${PN}
32 -DESCRIPTION="Multi shape 3d rotating dots"
33 -SRC_URI="http://dockapps.org/download.php/id/153/${MY_P}.tar.gz"
34 +inherit eutils multilib toolchain-funcs
35 +
36 +DESCRIPTION="multishape 3d rotating dots"
37 HOMEPAGE="http://dockapps.org/file.php/id/116"
38 +SRC_URI="http://dockapps.org/download.php/id/153/${P/_/}.tar.gz"
39 +
40 LICENSE="GPL-2"
41 -KEYWORDS="x86 amd64 -ppc"
42 SLOT="0"
43 -
44 +KEYWORDS="amd64 -ppc x86"
45 IUSE=""
46
47 RDEPEND="x11-libs/libX11
48 @@ -18,8 +18,21 @@
49 x11-libs/libXpm"
50 DEPEND="${RDEPEND}"
51
52 -src_install () {
53 +S=${WORKDIR}/${PN}
54 +
55 +src_unpack() {
56 + unpack ${A}
57 + cd "${S}"
58 + epatch "${FILESDIR}"/${P}-stringh.patch
59 + sed -e "s:cc:$(tc-getCC):g" \
60 + -e "s:-g -O2:${CFLAGS}:g" -i Makefile
61 +}
62
63 - dobin ${S}/wmdots
64 +src_compile() {
65 + emake clean || die "emake clean failed."
66 + emake LIBDIR="-L/usr/$(get_libdir)" || die "emake failed."
67 +}
68
69 +src_install() {
70 + dobin wmdots
71 }
72
73
74
75 1.9 x11-plugins/wmdots/ChangeLog
76
77 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-plugins/wmdots/ChangeLog?rev=1.9&view=markup
78 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-plugins/wmdots/ChangeLog?rev=1.9&content-type=text/plain
79 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-plugins/wmdots/ChangeLog?r1=1.8&r2=1.9
80
81 Index: ChangeLog
82 ===================================================================
83 RCS file: /var/cvsroot/gentoo-x86/x11-plugins/wmdots/ChangeLog,v
84 retrieving revision 1.8
85 retrieving revision 1.9
86 diff -u -r1.8 -r1.9
87 --- ChangeLog 22 Jul 2007 05:11:15 -0000 1.8
88 +++ ChangeLog 6 Jan 2008 13:30:06 -0000 1.9
89 @@ -1,6 +1,12 @@
90 # ChangeLog for x11-plugins/wmdots
91 -# Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2
92 -# $Header: /var/cvsroot/gentoo-x86/x11-plugins/wmdots/ChangeLog,v 1.8 2007/07/22 05:11:15 dberkholz Exp $
93 +# Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
94 +# $Header: /var/cvsroot/gentoo-x86/x11-plugins/wmdots/ChangeLog,v 1.9 2008/01/06 13:30:06 drac Exp $
95 +
96 + 06 Jan 2008; Samuli Suominen <drac@g.o>
97 + +files/wmdots-0.2_beta-stringh.patch, wmdots-0.2_beta.ebuild:
98 + Run make clean to remove i386 objects before building wrt #204544. Respect
99 + CC and CFLAGS targets. Fix QA compiler warnings due to missing include
100 + string.h.
101
102 22 Jul 2007; Donnie Berkholz <dberkholz@g.o>;
103 wmdots-0.2_beta.ebuild:
104
105
106
107 --
108 gentoo-commits@l.g.o mailing list