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/wmdate: wmdate-0.7.ebuild ChangeLog
Date: Sun, 06 Jan 2008 21:01:23
Message-Id: E1JBccS-0000e2-9z@stork.gentoo.org
1 drac 08/01/06 21:01:20
2
3 Modified: wmdate-0.7.ebuild ChangeLog
4 Log:
5 Fix depends wrt #204546. Call xmkmf without -a since it's not needed. Drop false .desktop entry. Respect CC target.
6 (Portage version: 2.1.4_rc14)
7
8 Revision Changes Path
9 1.10 x11-plugins/wmdate/wmdate-0.7.ebuild
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-plugins/wmdate/wmdate-0.7.ebuild?rev=1.10&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-plugins/wmdate/wmdate-0.7.ebuild?rev=1.10&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-plugins/wmdate/wmdate-0.7.ebuild?r1=1.9&r2=1.10
14
15 Index: wmdate-0.7.ebuild
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/x11-plugins/wmdate/wmdate-0.7.ebuild,v
18 retrieving revision 1.9
19 retrieving revision 1.10
20 diff -u -r1.9 -r1.10
21 --- wmdate-0.7.ebuild 24 Jan 2006 22:59:20 -0000 1.9
22 +++ wmdate-0.7.ebuild 6 Jan 2008 21:01:19 -0000 1.10
23 @@ -1,40 +1,39 @@
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/x11-plugins/wmdate/wmdate-0.7.ebuild,v 1.9 2006/01/24 22:59:20 nelchael Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/x11-plugins/wmdate/wmdate-0.7.ebuild,v 1.10 2008/01/06 21:01:19 drac Exp $
29
30 -inherit eutils
31 -
32 -IUSE=""
33 +inherit eutils toolchain-funcs
34
35 DESCRIPTION="yet another date-display dock application"
36 -SRC_URI="http://solfertje.student.utwente.nl/~dalroi/${PN}/files/${P}.tar.gz"
37 HOMEPAGE="http://solfertje.student.utwente.nl/~dalroi/applications.php"
38 +SRC_URI="http://solfertje.student.utwente.nl/~dalroi/${PN}/files/${P}.tar.gz"
39
40 -DEPEND="x11-libs/libdockapp"
41 -
42 +LICENSE="as-is"
43 SLOT="0"
44 -LICENSE="GPL-2"
45 -KEYWORDS="x86 ppc ppc64 ~sparc amd64"
46 +KEYWORDS="amd64 ppc ppc64 ~sparc x86"
47 +IUSE=""
48 +
49 +RDEPEND="x11-libs/libdockapp
50 + x11-libs/libX11
51 + x11-libs/libXext
52 + x11-libs/libXpm"
53 +DEPEND="${RDEPEND}
54 + x11-misc/gccmakedep
55 + x11-misc/imake"
56
57 src_unpack() {
58 unpack ${A}
59 -
60 - cd ${S}
61 - epatch ${FILESDIR}/${PN}-ComplexProgramTargetNoMan.patch
62 + cd "${S}"
63 + epatch "${FILESDIR}"/${PN}-ComplexProgramTargetNoMan.patch
64 }
65
66 src_compile() {
67 - cd ${S}
68 - PATH="$PATH:/usr/X11R6/bin"
69 - xmkmf -a
70 - emake CDEBUGFLAGS="${CFLAGS}" || die "make failed"
71 + xmkmf || die "xmkmf failed."
72 + emake CC="$(tc-getCC)" CDEBUGFLAGS="${CFLAGS}" \
73 + || die "emake failed."
74 }
75
76 src_install() {
77 - einstall DESTDIR=${D} BINDIR=/usr/bin || DIE "make install failed"
78 -
79 - dodoc README
80 -
81 - insinto /usr/share/applications
82 - doins ${FILESDIR}/${PN}.desktop
83 + dobin ${PN}
84 + dodoc Changelog README
85 }
86
87
88
89 1.11 x11-plugins/wmdate/ChangeLog
90
91 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-plugins/wmdate/ChangeLog?rev=1.11&view=markup
92 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-plugins/wmdate/ChangeLog?rev=1.11&content-type=text/plain
93 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-plugins/wmdate/ChangeLog?r1=1.10&r2=1.11
94
95 Index: ChangeLog
96 ===================================================================
97 RCS file: /var/cvsroot/gentoo-x86/x11-plugins/wmdate/ChangeLog,v
98 retrieving revision 1.10
99 retrieving revision 1.11
100 diff -u -r1.10 -r1.11
101 --- ChangeLog 6 Feb 2007 01:59:33 -0000 1.10
102 +++ ChangeLog 6 Jan 2008 21:01:19 -0000 1.11
103 @@ -1,6 +1,11 @@
104 # ChangeLog for x11-plugins/wmdate
105 -# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2
106 -# $Header: /var/cvsroot/gentoo-x86/x11-plugins/wmdate/ChangeLog,v 1.10 2007/02/06 01:59:33 flameeyes Exp $
107 +# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
108 +# $Header: /var/cvsroot/gentoo-x86/x11-plugins/wmdate/ChangeLog,v 1.11 2008/01/06 21:01:19 drac Exp $
109 +
110 + 06 Jan 2008; Samuli Suominen <drac@g.o> -files/wmdate.desktop,
111 + wmdate-0.7.ebuild:
112 + Fix depends wrt #204546. Call xmkmf without -a since it's not needed. Drop
113 + false .desktop entry. Respect CC target.
114
115 06 Feb 2007; Diego Pettenò <flameeyes@g.o> ChangeLog:
116 Regenerate digest in Manifest2 format.
117
118
119
120 --
121 gentoo-commits@l.g.o mailing list