pacho 14/06/22 09:40:13 Modified: DFBPoint-0.7.2.ebuild ChangeLog Log: Fix building due DEPRECATED warnings (#514050) (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key A188FBD4)
Revision Changes Path 1.17 media-gfx/DFBPoint/DFBPoint-0.7.2.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/DFBPoint/DFBPoint-0.7.2.ebuild?rev=1.17&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/DFBPoint/DFBPoint-0.7.2.ebuild?rev=1.17&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/DFBPoint/DFBPoint-0.7.2.ebuild?r1=1.16&r2=1.17 Index: DFBPoint-0.7.2.ebuild =================================================================== RCS file: /var/cvsroot/gentoo-x86/media-gfx/DFBPoint/DFBPoint-0.7.2.ebuild,v retrieving revision 1.16 retrieving revision 1.17 diff -u -r1.16 -r1.17 --- DFBPoint-0.7.2.ebuild 5 May 2012 07:00:26 -0000 1.16 +++ DFBPoint-0.7.2.ebuild 22 Jun 2014 09:40:13 -0000 1.17 @@ -1,6 +1,9 @@ -# Copyright 1999-2012 Gentoo Foundation +# Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-gfx/DFBPoint/DFBPoint-0.7.2.ebuild,v 1.16 2012/05/05 07:00:26 jdhore Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-gfx/DFBPoint/DFBPoint-0.7.2.ebuild,v 1.17 2014/06/22 09:40:13 pacho Exp $ + +EAPI=5 +inherit gnome2-utils DESCRIPTION="DFBPoint is presentation program based on DirectFB" HOMEPAGE="http://www.directfb.org/index.php?path=Projects%2FDFBPoint" @@ -11,23 +14,29 @@ KEYWORDS="~amd64 -sparc x86" IUSE="" -DEPEND="virtual/pkgconfig +RDEPEND=" dev-libs/DirectFB - >=dev-libs/glib-2" -RDEPEND="dev-libs/DirectFB - >=dev-libs/glib-2" + >=dev-libs/glib-2:2 +" +DEPEND="${RDEPEND} + >=dev-libs/glib-2 +" + +src_prepare() { + gnome2_disable_deprecation_warning +} src_install () { - make DESTDIR="${D}" install || die "make install failed" + default dodir /usr/share/DFBPoint/ - cp dfbpoint.dtd "${D}"/usr/share/DFBPoint/ || die "cp failed" + cp dfbpoint.dtd "${D}"/usr/share/DFBPoint/ dodoc AUTHORS ChangeLog INSTALL README NEWS dodir /usr/share/DFBPoint/examples/ cd examples cp bg.png bullet.png decker.ttf test.xml wilber_stoned.png \ - "${D}"/usr/share/DFBPoint/examples/ || die "cp failed" - cp -R guadec/ "${D}"/usr/share/DFBPoint/examples/ || die "cp failed" + "${D}"/usr/share/DFBPoint/examples/ + cp -R guadec/ "${D}"/usr/share/DFBPoint/examples/ } 1.18 media-gfx/DFBPoint/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/DFBPoint/ChangeLog?rev=1.18&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/DFBPoint/ChangeLog?rev=1.18&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/DFBPoint/ChangeLog?r1=1.17&r2=1.18 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/media-gfx/DFBPoint/ChangeLog,v retrieving revision 1.17 retrieving revision 1.18 diff -u -r1.17 -r1.18 --- ChangeLog 5 May 2012 07:00:26 -0000 1.17 +++ ChangeLog 22 Jun 2014 09:40:13 -0000 1.18 @@ -1,6 +1,9 @@ # ChangeLog for media-gfx/DFBPoint -# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-gfx/DFBPoint/ChangeLog,v 1.17 2012/05/05 07:00:26 jdhore Exp $ +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/media-gfx/DFBPoint/ChangeLog,v 1.18 2014/06/22 09:40:13 pacho Exp $ + + 22 Jun 2014; Pacho Ramos <[email protected]> DFBPoint-0.7.2.ebuild: + Fix building due DEPRECATED warnings (#514050) 05 May 2012; Jeff Horelick <[email protected]> DFBPoint-0.7.2.ebuild: dev-util/pkgconfig -> virtual/pkgconfig
