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 6C8AA138359 for ; Tue, 25 Aug 2020 16:48:14 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B663CE097B; Tue, 25 Aug 2020 16:48: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 A13E0E097B for ; Tue, 25 Aug 2020 16:48: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 B54A1340EC5 for ; Tue, 25 Aug 2020 16:48:12 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 2B6F92B2 for ; Tue, 25 Aug 2020 16:48:11 +0000 (UTC) From: "Thomas Deutschmann" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Thomas Deutschmann" Message-ID: <1598374028.74996872513894f53240533d6408e37f2893a87a.whissi@gentoo> Subject: [gentoo-commits] proj/genkernel:master commit in: gkbuilds/ X-VCS-Repository: proj/genkernel X-VCS-Files: gkbuilds/dropbear.gkbuild X-VCS-Directories: gkbuilds/ X-VCS-Committer: whissi X-VCS-Committer-Name: Thomas Deutschmann X-VCS-Revision: 74996872513894f53240533d6408e37f2893a87a X-VCS-Branch: master Date: Tue, 25 Aug 2020 16:48:11 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 9eb26371-1af1-4563-a87d-e8b4ca482447 X-Archives-Hash: 8b8f5228d6835a3a08323a75895ee389 commit: 74996872513894f53240533d6408e37f2893a87a Author: Thomas Deutschmann gentoo org> AuthorDate: Tue Aug 25 16:46:46 2020 +0000 Commit: Thomas Deutschmann gentoo org> CommitDate: Tue Aug 25 16:47:08 2020 +0000 URL: https://gitweb.gentoo.org/proj/genkernel.git/commit/?id=74996872 gkbuilds/dropbear: Build dbclient Required for scp. Signed-off-by: Thomas Deutschmann gentoo.org> gkbuilds/dropbear.gkbuild | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/gkbuilds/dropbear.gkbuild b/gkbuilds/dropbear.gkbuild index 55639cb..9e2c18b 100644 --- a/gkbuilds/dropbear.gkbuild +++ b/gkbuilds/dropbear.gkbuild @@ -25,7 +25,7 @@ src_configure() { src_compile() { local MYMAKEOPTS=( "V=1" ) MYMAKEOPTS+=( "MULTI=1" ) - MYMAKEOPTS+=( "PROGRAMS='dropbear dropbearkey dropbearconvert scp'" ) + MYMAKEOPTS+=( "PROGRAMS='dbclient dropbear dropbearkey dropbearconvert scp'" ) gkmake "${MYMAKEOPTS[@]}" } @@ -48,6 +48,9 @@ src_install() { "${STRIP}" --strip-all "${D}"/usr/bin/dropbearmulti \ || die "Failed to strip '${D}/usr/bin/dropbearmulti'!" + ln -s dropbearmulti "${D}"/usr/bin/dbclient \ + || die "Failed to symlink '${D}/usr/bin/dbclient' to '${D}/usr/bin/dropbearmulti'!" + ln -s ../bin/dropbearmulti "${D}"/usr/sbin/dropbear \ || die "Failed to symlink '${D}/usr/sbin/dropbear' to '${D}/usr/bin/dropbearmulti'!"