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/wmcp: wmcp-1.2.8.ebuild ChangeLog
Date: Sun, 06 Jan 2008 14:29:01
Message-Id: E1JBWUi-00052n-VA@stork.gentoo.org
1 drac 08/01/06 14:28:56
2
3 Modified: wmcp-1.2.8.ebuild ChangeLog
4 Log:
5 Fix include directory wrt #204548. Respect CC and CFLAGS targets. Fix compiler QA warnings due to missing include stdlib.h.
6 (Portage version: 2.1.4_rc14)
7
8 Revision Changes Path
9 1.17 x11-plugins/wmcp/wmcp-1.2.8.ebuild
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-plugins/wmcp/wmcp-1.2.8.ebuild?rev=1.17&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-plugins/wmcp/wmcp-1.2.8.ebuild?rev=1.17&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-plugins/wmcp/wmcp-1.2.8.ebuild?r1=1.16&r2=1.17
14
15 Index: wmcp-1.2.8.ebuild
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/x11-plugins/wmcp/wmcp-1.2.8.ebuild,v
18 retrieving revision 1.16
19 retrieving revision 1.17
20 diff -u -r1.16 -r1.17
21 --- wmcp-1.2.8.ebuild 22 Jul 2007 05:16:39 -0000 1.16
22 +++ wmcp-1.2.8.ebuild 6 Jan 2008 14:28:56 -0000 1.17
23 @@ -1,36 +1,40 @@
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/wmcp/wmcp-1.2.8.ebuild,v 1.16 2007/07/22 05:16:39 dberkholz Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/x11-plugins/wmcp/wmcp-1.2.8.ebuild,v 1.17 2008/01/06 14:28:56 drac Exp $
29
30 -inherit eutils
31 +inherit eutils multilib toolchain-funcs
32
33 -IUSE=""
34 DESCRIPTION="A pager dockapp"
35 HOMEPAGE="http://www.dockapps.com/file.php/id/158"
36 SRC_URI="http://linux-sea.tucows.webusenet.com/files/x11/dock/${P}.tar.gz"
37 -SLOT="0"
38 +
39 LICENSE="GPL-2"
40 -KEYWORDS="x86 amd64 ia64 ppc ~sparc alpha hppa ~mips"
41 +SLOT="0"
42 +KEYWORDS="alpha amd64 hppa ia64 ~mips ppc ~sparc x86"
43 +IUSE=""
44
45 -DEPEND="x11-proto/xproto
46 - x11-proto/xextproto
47 - x11-libs/libX11
48 +RDEPEND="x11-libs/libX11
49 x11-libs/libXext
50 x11-libs/libXpm"
51 +DEPEND="${RDEPEND}
52 + x11-proto/xextproto
53 + x11-proto/xproto"
54
55 src_unpack() {
56 unpack ${A}
57 - cd ${S}
58 - epatch ${FILESDIR}/${P}-makefile.patch
59 - epatch ${FILESDIR}/${P}-gcc33.patch
60 + cd "${S}"
61 + epatch "${FILESDIR}"/${P}-gcc33.patch
62 + epatch "${FILESDIR}"/${P}-stdlibh.patch
63 + sed -i -e "s:gcc:$(tc-getCC):g" Makefile
64 }
65
66 src_compile() {
67 - make || die "make failed"
68 + emake -j1 INCLUDES="-I/usr/include/X11" \
69 + LIBINC="-L/usr/$(get_libdir)" \
70 + FLAGS="${CFLAGS}" || die "emake failed."
71 }
72
73 src_install() {
74 - cd ${S}
75 dobin wmcp
76 dodoc README
77 }
78
79
80
81 1.13 x11-plugins/wmcp/ChangeLog
82
83 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-plugins/wmcp/ChangeLog?rev=1.13&view=markup
84 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-plugins/wmcp/ChangeLog?rev=1.13&content-type=text/plain
85 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-plugins/wmcp/ChangeLog?r1=1.12&r2=1.13
86
87 Index: ChangeLog
88 ===================================================================
89 RCS file: /var/cvsroot/gentoo-x86/x11-plugins/wmcp/ChangeLog,v
90 retrieving revision 1.12
91 retrieving revision 1.13
92 diff -u -r1.12 -r1.13
93 --- ChangeLog 22 Jul 2007 05:16:39 -0000 1.12
94 +++ ChangeLog 6 Jan 2008 14:28:56 -0000 1.13
95 @@ -1,6 +1,12 @@
96 # ChangeLog for x11-plugins/wmcp
97 -# Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2
98 -# $Header: /var/cvsroot/gentoo-x86/x11-plugins/wmcp/ChangeLog,v 1.12 2007/07/22 05:16:39 dberkholz Exp $
99 +# Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
100 +# $Header: /var/cvsroot/gentoo-x86/x11-plugins/wmcp/ChangeLog,v 1.13 2008/01/06 14:28:56 drac Exp $
101 +
102 + 06 Jan 2008; Samuli Suominen <drac@g.o>
103 + -files/wmcp-1.2.8-makefile.patch, +files/wmcp-1.2.8-stdlibh.patch,
104 + wmcp-1.2.8.ebuild:
105 + Fix include directory wrt #204548. Respect CC and CFLAGS targets. Fix
106 + compiler QA warnings due to missing include stdlib.h.
107
108 22 Jul 2007; Donnie Berkholz <dberkholz@g.o>; wmcp-1.2.8.ebuild:
109 Drop virtual/x11 references.
110
111
112
113 --
114 gentoo-commits@l.g.o mailing list