ssuominen    14/03/14 13:40:16

  Modified:             ChangeLog
  Added:                upower-0.9.23-r1.ebuild
  Log:
  Create the history directory in /var at runtime. Fix segmentation fault. 
Since it might take a while 0.99.0 can be keyworded.
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 
4868F14D)

Revision  Changes    Path
1.140                sys-power/upower/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-power/upower/ChangeLog?rev=1.140&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-power/upower/ChangeLog?rev=1.140&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-power/upower/ChangeLog?r1=1.139&r2=1.140

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-power/upower/ChangeLog,v
retrieving revision 1.139
retrieving revision 1.140
diff -u -r1.139 -r1.140
--- ChangeLog   14 Mar 2014 10:07:37 -0000      1.139
+++ ChangeLog   14 Mar 2014 13:40:16 -0000      1.140
@@ -1,6 +1,14 @@
 # ChangeLog for sys-power/upower
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-power/upower/ChangeLog,v 1.139 
2014/03/14 10:07:37 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-power/upower/ChangeLog,v 1.140 
2014/03/14 13:40:16 ssuominen Exp $
+
+*upower-0.9.23-r1 (14 Mar 2014)
+
+  14 Mar 2014; Samuli Suominen <[email protected]>
+  +files/upower-0.9.23-create-dir-runtime.patch,
+  +files/upower-0.9.23-fix-segfault.patch, +upower-0.9.23-r1.ebuild:
+  Create the history directory in /var at runtime. Fix segmentation fault. 
Since
+  it might take a while 0.99.0 can be keyworded.
 
   14 Mar 2014; Agostino Sarubbo <[email protected]> upower-0.9.23.ebuild:
   Stable for ppc64, wrt bug #496532



1.1                  sys-power/upower/upower-0.9.23-r1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-power/upower/upower-0.9.23-r1.ebuild?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-power/upower/upower-0.9.23-r1.ebuild?rev=1.1&content-type=text/plain

Index: upower-0.9.23-r1.ebuild
===================================================================
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-power/upower/upower-0.9.23-r1.ebuild,v 
1.1 2014/03/14 13:40:16 ssuominen Exp $

EAPI=5
inherit eutils systemd

DESCRIPTION="D-Bus abstraction for enumerating power devices and querying 
history and statistics"
HOMEPAGE="http://upower.freedesktop.org/";
SRC_URI="http://${PN}.freedesktop.org/releases/${P}.tar.xz";

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
IUSE="doc +introspection ios kernel_FreeBSD kernel_linux systemd"

COMMON_DEPEND=">=dev-libs/dbus-glib-0.100
        >=dev-libs/glib-2.22
        sys-apps/dbus
        >=sys-auth/polkit-0.110
        introspection? ( dev-libs/gobject-introspection )
        kernel_linux? (
                virtual/libusb:1
                >=virtual/udev-200[gudev]
                ios? (
                        >=app-pda/libimobiledevice-1:=
                        >=app-pda/libplist-1:=
                        )
                )"
RDEPEND="${COMMON_DEPEND}
        kernel_linux? (
                !systemd? ( >=sys-power/pm-utils-1.4.1 )
                systemd? (
                        app-shells/bash
                        >=sys-apps/systemd-200
                        )
                )"
DEPEND="${COMMON_DEPEND}
        dev-libs/libxslt
        app-text/docbook-xsl-stylesheets
        dev-util/intltool
        virtual/pkgconfig
        doc? (
                dev-util/gtk-doc
                app-text/docbook-xml-dtd:4.1.2
                )"

QA_MULTILIB_PATHS="usr/lib/${PN}/.*"

DOCS="AUTHORS HACKING NEWS README"

src_prepare() {
        sed -i -e '/DISABLE_DEPRECATED/d' configure || die

        epatch \
                "${FILESDIR}"/${P}-create-dir-runtime.patch \
                "${FILESDIR}"/${P}-fix-segfault.patch
}

src_configure() {
        local backend myconf

        if use kernel_linux; then
                backend=linux
                myconf="$(use_enable !systemd deprecated)"
        elif use kernel_FreeBSD; then
                backend=freebsd
        else
                backend=dummy
        fi

        econf \
                --libexecdir="${EPREFIX}"/usr/lib/${PN} \
                --localstatedir="${EPREFIX}"/var \
                $(use_enable introspection) \
                --disable-static \
                ${myconf} \
                --enable-man-pages \
                $(use_enable doc gtk-doc) \
                --disable-tests \
                --with-html-dir="${EPREFIX}"/usr/share/doc/${PF}/html \
                --with-backend=${backend} \
                $(use_with ios idevice) \
                "$(systemd_with_utildir)" \
                "$(systemd_with_unitdir)"
}

src_install() {
        default
        keepdir /var/lib/upower #383091
        prune_libtool_files
}




Reply via email to