From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 9DBE5138330 for ; Mon, 10 Oct 2016 08:52:39 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 3B4C0E0B6E; Mon, 10 Oct 2016 08:52:36 +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 1F21CE0B6E for ; Mon, 10 Oct 2016 08:52:36 +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 AA7D3341059 for ; Mon, 10 Oct 2016 08:52:34 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A5DF72EC for ; Mon, 10 Oct 2016 08:52:32 +0000 (UTC) From: "Jeroen Roovers" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Jeroen Roovers" Message-ID: <1476089541.c02c63687ee8909a0dd375fe9a5c96a24cc73189.jer@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-boot/palo/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-boot/palo/palo-9999.ebuild X-VCS-Directories: sys-boot/palo/ X-VCS-Committer: jer X-VCS-Committer-Name: Jeroen Roovers X-VCS-Revision: c02c63687ee8909a0dd375fe9a5c96a24cc73189 X-VCS-Branch: master Date: Mon, 10 Oct 2016 08:52:32 +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: ee01a827-3dcd-44a7-b2a9-931083155227 X-Archives-Hash: 9e3f1b924bfcd7d0587e1382c05d1024 commit: c02c63687ee8909a0dd375fe9a5c96a24cc73189 Author: Jeroen Roovers gentoo org> AuthorDate: Mon Oct 10 08:52:21 2016 +0000 Commit: Jeroen Roovers gentoo org> CommitDate: Mon Oct 10 08:52:21 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c02c6368 sys-boot/palo: Update live ebuild. Package-Manager: portage-2.3.1 sys-boot/palo/palo-9999.ebuild | 21 ++++++++++++--------- 1 file changed, 12 insertions(+), 9 deletions(-) diff --git a/sys-boot/palo/palo-9999.ebuild b/sys-boot/palo/palo-9999.ebuild index b9aa701..cbc7d46 100644 --- a/sys-boot/palo/palo-9999.ebuild +++ b/sys-boot/palo/palo-9999.ebuild @@ -1,9 +1,8 @@ -# Copyright 1999-2014 Gentoo Foundation +# Copyright 1999-2016 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ -EAPI=5 - +EAPI=6 inherit eutils flag-o-matic git-r3 toolchain-funcs DESCRIPTION="PALO : PArisc Linux Loader" @@ -14,15 +13,20 @@ LICENSE="GPL-2" SLOT="0" KEYWORDS="" +PATCHES=( + "${FILESDIR}"/${PN}-9999-toolchain.patch +) + src_prepare() { - epatch "${FILESDIR}"/${PN}-9999-toolchain.patch + default sed -i lib/common.h -e '/^#define PALOVERSION/{s|".*"|"'${PV}'"|g}' || die } src_compile() { - emake AR=$(tc-getAR) CC=$(tc-getCC) LD=$(tc-getLD) \ - makepalo makeipl || die - emake CC=$(tc-getCC) iplboot || die + local target + for target in '-C palo' '-C ipl' 'iplboot'; do + emake AR=$(tc-getAR) CC=$(tc-getCC) LD=$(tc-getLD) ${target} + done } src_install() { @@ -30,8 +34,7 @@ src_install() { dosbin palo/palo doman palo.8 - dodoc palo.conf - dohtml README.html + dodoc TODO debian/changelog README.html insinto /etc doins "${FILESDIR}"/palo.conf