Gentoo Archives: gentoo-commits

From: "Pacho Ramos (pacho)" <pacho@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-gfx/DFBPoint: DFBPoint-0.7.2.ebuild ChangeLog
Date: Sun, 22 Jun 2014 09:40:17
Message-Id: 20140622094013.CAE8F2004E@flycatcher.gentoo.org
1 pacho 14/06/22 09:40:13
2
3 Modified: DFBPoint-0.7.2.ebuild ChangeLog
4 Log:
5 Fix building due DEPRECATED warnings (#514050)
6
7 (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key A188FBD4)
8
9 Revision Changes Path
10 1.17 media-gfx/DFBPoint/DFBPoint-0.7.2.ebuild
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/DFBPoint/DFBPoint-0.7.2.ebuild?rev=1.17&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/DFBPoint/DFBPoint-0.7.2.ebuild?rev=1.17&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/DFBPoint/DFBPoint-0.7.2.ebuild?r1=1.16&r2=1.17
15
16 Index: DFBPoint-0.7.2.ebuild
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/media-gfx/DFBPoint/DFBPoint-0.7.2.ebuild,v
19 retrieving revision 1.16
20 retrieving revision 1.17
21 diff -u -r1.16 -r1.17
22 --- DFBPoint-0.7.2.ebuild 5 May 2012 07:00:26 -0000 1.16
23 +++ DFBPoint-0.7.2.ebuild 22 Jun 2014 09:40:13 -0000 1.17
24 @@ -1,6 +1,9 @@
25 -# Copyright 1999-2012 Gentoo Foundation
26 +# Copyright 1999-2014 Gentoo Foundation
27 # Distributed under the terms of the GNU General Public License v2
28 -# $Header: /var/cvsroot/gentoo-x86/media-gfx/DFBPoint/DFBPoint-0.7.2.ebuild,v 1.16 2012/05/05 07:00:26 jdhore Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/media-gfx/DFBPoint/DFBPoint-0.7.2.ebuild,v 1.17 2014/06/22 09:40:13 pacho Exp $
30 +
31 +EAPI=5
32 +inherit gnome2-utils
33
34 DESCRIPTION="DFBPoint is presentation program based on DirectFB"
35 HOMEPAGE="http://www.directfb.org/index.php?path=Projects%2FDFBPoint"
36 @@ -11,23 +14,29 @@
37 KEYWORDS="~amd64 -sparc x86"
38 IUSE=""
39
40 -DEPEND="virtual/pkgconfig
41 +RDEPEND="
42 dev-libs/DirectFB
43 - >=dev-libs/glib-2"
44 -RDEPEND="dev-libs/DirectFB
45 - >=dev-libs/glib-2"
46 + >=dev-libs/glib-2:2
47 +"
48 +DEPEND="${RDEPEND}
49 + >=dev-libs/glib-2
50 +"
51 +
52 +src_prepare() {
53 + gnome2_disable_deprecation_warning
54 +}
55
56 src_install () {
57 - make DESTDIR="${D}" install || die "make install failed"
58 + default
59
60 dodir /usr/share/DFBPoint/
61 - cp dfbpoint.dtd "${D}"/usr/share/DFBPoint/ || die "cp failed"
62 + cp dfbpoint.dtd "${D}"/usr/share/DFBPoint/
63
64 dodoc AUTHORS ChangeLog INSTALL README NEWS
65
66 dodir /usr/share/DFBPoint/examples/
67 cd examples
68 cp bg.png bullet.png decker.ttf test.xml wilber_stoned.png \
69 - "${D}"/usr/share/DFBPoint/examples/ || die "cp failed"
70 - cp -R guadec/ "${D}"/usr/share/DFBPoint/examples/ || die "cp failed"
71 + "${D}"/usr/share/DFBPoint/examples/
72 + cp -R guadec/ "${D}"/usr/share/DFBPoint/examples/
73 }
74
75
76
77 1.18 media-gfx/DFBPoint/ChangeLog
78
79 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/DFBPoint/ChangeLog?rev=1.18&view=markup
80 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/DFBPoint/ChangeLog?rev=1.18&content-type=text/plain
81 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/DFBPoint/ChangeLog?r1=1.17&r2=1.18
82
83 Index: ChangeLog
84 ===================================================================
85 RCS file: /var/cvsroot/gentoo-x86/media-gfx/DFBPoint/ChangeLog,v
86 retrieving revision 1.17
87 retrieving revision 1.18
88 diff -u -r1.17 -r1.18
89 --- ChangeLog 5 May 2012 07:00:26 -0000 1.17
90 +++ ChangeLog 22 Jun 2014 09:40:13 -0000 1.18
91 @@ -1,6 +1,9 @@
92 # ChangeLog for media-gfx/DFBPoint
93 -# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
94 -# $Header: /var/cvsroot/gentoo-x86/media-gfx/DFBPoint/ChangeLog,v 1.17 2012/05/05 07:00:26 jdhore Exp $
95 +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
96 +# $Header: /var/cvsroot/gentoo-x86/media-gfx/DFBPoint/ChangeLog,v 1.18 2014/06/22 09:40:13 pacho Exp $
97 +
98 + 22 Jun 2014; Pacho Ramos <pacho@g.o> DFBPoint-0.7.2.ebuild:
99 + Fix building due DEPRECATED warnings (#514050)
100
101 05 May 2012; Jeff Horelick <jdhore@g.o> DFBPoint-0.7.2.ebuild:
102 dev-util/pkgconfig -> virtual/pkgconfig