From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 2A6F01382CD for ; Sat, 25 Jun 2016 18:43:48 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9D506941D2; Sat, 25 Jun 2016 18:43:35 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 6C61BE0B6C for ; Sat, 25 Jun 2016 18:43:34 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 93E1F340C57 for ; Sat, 25 Jun 2016 18:43:33 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 498EE2436 for ; Sat, 25 Jun 2016 18:43:29 +0000 (UTC) From: "Pacho Ramos" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Pacho Ramos" Message-ID: <1466880164.c72f0bf5f124a62772f57139d2f1699cce372d5d.pacho@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: gnome-extra/gnome-packagekit/ X-VCS-Repository: repo/gentoo X-VCS-Files: gnome-extra/gnome-packagekit/gnome-packagekit-3.20.0.ebuild X-VCS-Directories: gnome-extra/gnome-packagekit/ X-VCS-Committer: pacho X-VCS-Committer-Name: Pacho Ramos X-VCS-Revision: c72f0bf5f124a62772f57139d2f1699cce372d5d X-VCS-Branch: master Date: Sat, 25 Jun 2016 18:43:29 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 1cbf2256-c23c-402a-8374-fa68c92d3fce X-Archives-Hash: 544dfe324ea4a71a5de603482f4c9d3d commit: c72f0bf5f124a62772f57139d2f1699cce372d5d Author: Pacho Ramos gentoo org> AuthorDate: Sat Jun 25 18:01:17 2016 +0000 Commit: Pacho Ramos gentoo org> CommitDate: Sat Jun 25 18:42:44 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c72f0bf5 gnome-extra/gnome-packagekit: Fix compat with latest systemd Package-Manager: portage-2.3.0_rc1 gnome-extra/gnome-packagekit/gnome-packagekit-3.20.0.ebuild | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/gnome-extra/gnome-packagekit/gnome-packagekit-3.20.0.ebuild b/gnome-extra/gnome-packagekit/gnome-packagekit-3.20.0.ebuild index 3779c13..96fba26 100644 --- a/gnome-extra/gnome-packagekit/gnome-packagekit-3.20.0.ebuild +++ b/gnome-extra/gnome-packagekit/gnome-packagekit-3.20.0.ebuild @@ -3,7 +3,7 @@ # $Id$ EAPI=6 -inherit gnome2 virtualx +inherit autotools gnome2 virtualx DESCRIPTION="PackageKit client for the GNOME desktop" HOMEPAGE="https://www.freedesktop.org/software/PackageKit/" @@ -67,6 +67,10 @@ src_prepare() { # FIXME: touching configure.ac triggers maintainer-mode sed -e '/CPPFLAGS="$CPPFLAGS -g"/d' -i configure || die + # Fix compat with current systemd + sed -i -e 's/libsystemd-login/libsystemd/' configure.ac || die + + eautoreconf gnome2_src_prepare }