[prev in list] [next in list] [prev in thread] [next in thread] 

List:       gentoo-dev
Subject:    [gentoo-dev] Re: [gentoo-commits] gentoo-x86 commit in
From:       Gilles Dartiguelongue <eva () gentoo ! org>
Date:       2010-12-29 9:33:23
Message-ID: 1293615203.28885.0.camel () gdartigu ! lan ! rep ! sj
[Download RAW message or body]

Le mardi 28 décembre 2010 à 18:38 +0000, Samuli Suominen (ssuominen) a
écrit :
> ssuominen    10/12/28 18:38:42
> 
> Modified:             polkit-gnome-0.99.ebuild ChangeLog
> Log:
> Remove unused app-text/scrollkeeper and gnome-base/gconf dependencies wrt #349954 \
> by Andrew Brouwers. ebuild cleanup 
> (Portage version: 2.2.0_alpha10/cvs/Linux x86_64)
> 
> Revision  Changes    Path
> 1.2                  gnome-extra/polkit-gnome/polkit-gnome-0.99.ebuild
> 
> file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-extra/polkit-gnome/polkit-gnome-0.99.ebuild?rev=1.2&view=markup
>                 
> plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-extra/polkit-gnome/polkit-gnome-0.99.ebuild?rev=1.2&content-type=text/plain
>                 
> diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-extra/polkit-gnome/polkit-gnome-0.99.ebuild?r1=1.1&r2=1.2
>  
> Index: polkit-gnome-0.99.ebuild
> ===================================================================
> RCS file: /var/cvsroot/gentoo-x86/gnome-extra/polkit-gnome/polkit-gnome-0.99.ebuild,v
>  retrieving revision 1.1
> retrieving revision 1.2
> diff -u -r1.1 -r1.2
> --- polkit-gnome-0.99.ebuild	25 Sep 2010 02:13:40 -0000	1.1
> +++ polkit-gnome-0.99.ebuild	28 Dec 2010 18:38:42 -0000	1.2
> @@ -1,53 +1,62 @@
> # Copyright 1999-2010 Gentoo Foundation
> # Distributed under the terms of the GNU General Public License v2
> -# $Header: /var/cvsroot/gentoo-x86/gnome-extra/polkit-gnome/polkit-gnome-0.99.ebuild,v \
> 1.1 2010/09/25 02:13:40 nirbheek Exp $ +# $Header: \
> /var/cvsroot/gentoo-x86/gnome-extra/polkit-gnome/polkit-gnome-0.99.ebuild,v 1.2 \
> 2010/12/28 18:38:42 ssuominen Exp $ 
> -EAPI="2"
> +EAPI=2
> +inherit autotools eutils
> 
> -inherit autotools eutils gnome2
> -
> -DESCRIPTION="PolicyKit policies and configurations for the GNOME desktop"
> -HOMEPAGE="http://hal.freedesktop.org/docs/PolicyKit"
> +DESCRIPTION="A dbus session bus service that is used to bring up authentication \
> dialogs" +HOMEPAGE="http://hal.freedesktop.org/docs/PolicyKit/"
> SRC_URI="http://hal.freedesktop.org/releases/${P}.tar.bz2"
> 
> -LICENSE="LGPL-2 GPL-2"
> +LICENSE="GPL-2 LGPL-2"
> SLOT="0"
> KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
> IUSE="doc examples +introspection"
> 
> RDEPEND=">=x11-libs/gtk+-2.17.1
> -	>=gnome-base/gconf-2.8
> 	>=sys-auth/polkit-0.97
> -	introspection? ( >=dev-libs/gobject-introspection-0.6.2 )"
> +	introspection? ( >=dev-libs/gobject-introspection-0.6.2 )
> +	!lxde-base/lxpolkit"
> DEPEND="${RDEPEND}
> -	sys-devel/gettext
> -	>=dev-util/pkgconfig-0.19
> +	dev-util/gtk-doc-am
> 	>=dev-util/intltool-0.35.0
> -	>=app-text/scrollkeeper-0.3.14
> +	dev-util/pkgconfig
> 	gnome-base/gnome-common
> -	dev-util/gtk-doc-am
> +	sys-devel/gettext
> 	doc? ( >=dev-util/gtk-doc-1.3 )"
> -# gtk-doc-am is required for eautoreconf
> -DOCS="AUTHORS HACKING NEWS TODO"
> 
> src_prepare() {
> -	G2CONF="${G2CONF}
> -		$(use_enable examples)
> -		$(use_enable introspection)"
> -
> 	# polkit-gnome is useful also for LXDE, XFCE, and others
> 	sed -i \
> 		-e 's:OnlyShowIn=GNOME:NotShowIn=KDE:' \
> 		src/polkit-gnome-authentication-agent-1.desktop.in.in || die
> 
> 	# Fix make check, bug 298345
> -	epatch "${FILESDIR}/${PN}-0.95-fix-make-check.patch"
> +	epatch "${FILESDIR}"/${PN}-0.95-fix-make-check.patch
> 
> 	if use doc; then
> 		# Fix parallel build failure, bug 293247
> -		epatch "${FILESDIR}/${PN}-0.95-parallel-build-failure.patch"
> +		epatch "${FILESDIR}"/${PN}-0.95-parallel-build-failure.patch
> 
> -		gtkdocize || die "gtkdocize failed"
> +		gtkdocize || die
> 		eautoreconf
> 	fi
> }
> +
> +src_configure() {
> +	# Do we need USE static-libs ? By user request.
> +	econf \
> +		--disable-dependency-tracking \
> +		--disable-static \
> +		$(use_enable doc gtk-doc) \
> +		$(use_enable examples) \
> +		$(use_enable introspection)
> +}
> +
> +src_install() {
> +	emake DESTDIR="${D}" install || die
> +	dodoc AUTHORS HACKING NEWS
> +
> +	find "${D}" -name '*.la' -exec rm -f '{}' +
> +}
> 
> 
> 
> 1.23                 gnome-extra/polkit-gnome/ChangeLog
> 
> file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-extra/polkit-gnome/ChangeLog?rev=1.23&view=markup
>                 
> plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-extra/polkit-gnome/ChangeLog?rev=1.23&content-type=text/plain
>                 
> diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-extra/polkit-gnome/ChangeLog?r1=1.22&r2=1.23
>  
> Index: ChangeLog
> ===================================================================
> RCS file: /var/cvsroot/gentoo-x86/gnome-extra/polkit-gnome/ChangeLog,v
> retrieving revision 1.22
> retrieving revision 1.23
> diff -u -r1.22 -r1.23
> --- ChangeLog	12 Dec 2010 17:44:03 -0000	1.22
> +++ ChangeLog	28 Dec 2010 18:38:42 -0000	1.23
> @@ -1,6 +1,10 @@
> # ChangeLog for gnome-extra/polkit-gnome
> # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
> -# $Header: /var/cvsroot/gentoo-x86/gnome-extra/polkit-gnome/ChangeLog,v 1.22 \
> 2010/12/12 17:44:03 ssuominen Exp $ +# $Header: \
> /var/cvsroot/gentoo-x86/gnome-extra/polkit-gnome/ChangeLog,v 1.23 2010/12/28 \
> 18:38:42 ssuominen Exp $ +
> +  28 Dec 2010; Samuli Suominen <ssuominen@gentoo.org> polkit-gnome-0.99.ebuild:
> +  Remove unused app-text/scrollkeeper and gnome-base/gconf dependencies wrt
> +  #349954 by Andrew Brouwers.
> 

may the gnome team know why this needed a full ebuild rewrite ???


-- 
Gilles Dartiguelongue <eva@gentoo.org>
Gentoo


[prev in list] [next in list] [prev in thread] [next in thread] 

Configure | About | News | Add a list | Sponsored by KoreLogic