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 A25791382C5 for ; Wed, 3 Jan 2018 18:39:16 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 807EDE0869; Wed, 3 Jan 2018 18:39:13 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 5F396E0869 for ; Wed, 3 Jan 2018 18:39:13 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 41AE9335C50 for ; Wed, 3 Jan 2018 18:39:12 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9761E1AD for ; Wed, 3 Jan 2018 18:39:09 +0000 (UTC) From: "David Seifert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "David Seifert" Message-ID: <1515004664.a5fdae03af8592322e6e515d01a219c9216c9455.soap@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/netkit-bootpd/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-misc/netkit-bootpd/metadata.xml net-misc/netkit-bootpd/netkit-bootpd-2.4-r1.ebuild X-VCS-Directories: net-misc/netkit-bootpd/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: a5fdae03af8592322e6e515d01a219c9216c9455 X-VCS-Branch: master Date: Wed, 3 Jan 2018 18:39:09 +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: c921d884-16f4-40ba-b1cd-4c94ad13ae43 X-Archives-Hash: 63bc4debca21ba2ae3010071d7600e51 commit: a5fdae03af8592322e6e515d01a219c9216c9455 Author: David Seifert gentoo org> AuthorDate: Wed Jan 3 18:37:44 2018 +0000 Commit: David Seifert gentoo org> CommitDate: Wed Jan 3 18:37:44 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a5fdae03 net-misc/netkit-bootpd: Port to EAPI 6 Package-Manager: Portage-2.3.19, Repoman-2.3.6 net-misc/netkit-bootpd/metadata.xml | 8 ++++---- net-misc/netkit-bootpd/netkit-bootpd-2.4-r1.ebuild | 21 ++++++++++++--------- 2 files changed, 16 insertions(+), 13 deletions(-) diff --git a/net-misc/netkit-bootpd/metadata.xml b/net-misc/netkit-bootpd/metadata.xml index a535b885282..3c3d5ced641 100644 --- a/net-misc/netkit-bootpd/metadata.xml +++ b/net-misc/netkit-bootpd/metadata.xml @@ -1,8 +1,8 @@ - -xmw@gentoo.org -Michael Weber - + + xmw@gentoo.org + Michael Weber + diff --git a/net-misc/netkit-bootpd/netkit-bootpd-2.4-r1.ebuild b/net-misc/netkit-bootpd/netkit-bootpd-2.4-r1.ebuild index 7ae6c894115..cb70f0e56ef 100644 --- a/net-misc/netkit-bootpd/netkit-bootpd-2.4-r1.ebuild +++ b/net-misc/netkit-bootpd/netkit-bootpd-2.4-r1.ebuild @@ -1,8 +1,9 @@ -# Copyright 1999-2010 Gentoo Foundation +# Copyright 1999-2018 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -EAPI=3 -inherit eutils toolchain-funcs +EAPI=6 + +inherit toolchain-funcs MY_P=${P/netkit-} @@ -17,20 +18,22 @@ IUSE="" S=${WORKDIR}/${MY_P} -src_prepare() { - epatch "${FILESDIR}"/${P}.patch +PATCHES=( "${FILESDIR}"/${P}.patch ) + +src_configure() { + tc-export CC } src_compile() { - tc-export CC - emake linux || die + emake linux } src_install() { - dosbin bootp{d,ef,gw,test} || die + dosbin bootp{d,ef,gw,test} + local x for x in d ef gw test; do - dosym bootp${x} /usr/sbin/in.bootp${x} || die + dosym bootp${x} /usr/sbin/in.bootp${x} done doman *.5 *.8