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 7CE191382C5 for ; Mon, 11 May 2020 21:54:12 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id BB597E0857; Mon, 11 May 2020 21:54:11 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 A1915E0857 for ; Mon, 11 May 2020 21:54:11 +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 C220C34FD6B for ; Mon, 11 May 2020 21:54:10 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 182441B6 for ; Mon, 11 May 2020 21:54:09 +0000 (UTC) From: "Conrad Kostecki" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Conrad Kostecki" Message-ID: <1589234032.69e4846eefecae7b962e3c263b4828b93c2396e5.conikost@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-misc/transfolio/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-misc/transfolio/transfolio-1.0.1-r1.ebuild X-VCS-Directories: app-misc/transfolio/ X-VCS-Committer: conikost X-VCS-Committer-Name: Conrad Kostecki X-VCS-Revision: 69e4846eefecae7b962e3c263b4828b93c2396e5 X-VCS-Branch: master Date: Mon, 11 May 2020 21:54: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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: e826a183-364b-4a9c-a1a7-1558226fe4ae X-Archives-Hash: 66056236f0aabb683e7d853be611f6fa commit: 69e4846eefecae7b962e3c263b4828b93c2396e5 Author: Conrad Kostecki gentoo org> AuthorDate: Mon May 11 21:50:11 2020 +0000 Commit: Conrad Kostecki gentoo org> CommitDate: Mon May 11 21:53:52 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=69e4846e app-misc/transfolio: respect users ldflags Closes: https://bugs.gentoo.org/722374 Package-Manager: Portage-2.3.99, Repoman-2.3.22 Signed-off-by: Conrad Kostecki gentoo.org> app-misc/transfolio/transfolio-1.0.1-r1.ebuild | 31 ++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) diff --git a/app-misc/transfolio/transfolio-1.0.1-r1.ebuild b/app-misc/transfolio/transfolio-1.0.1-r1.ebuild new file mode 100644 index 00000000000..fb39bd28dea --- /dev/null +++ b/app-misc/transfolio/transfolio-1.0.1-r1.ebuild @@ -0,0 +1,31 @@ +# Copyright 2019-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit toolchain-funcs + +DESCRIPTION="Enables data transfer between the PC and the Atari Portfolio" +HOMEPAGE="http://leute.server.de/peichl/" +SRC_URI="http://leute.server.de/peichl/transfolio.zip -> ${P}.zip" + +LICENSE="GPL-2+" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +BDEPEND="app-arch/unzip" + +src_prepare() { + default + + # Respect users CC, CFLAGS, LDFLAGS and disable striping + sed -e 's/cc/${CC}/' -e 's/-O2/${CFLAGS} ${LDFLAGS}/' -e '/strip/d' -i Makefile || die + + tc-export CC +} + +src_install() { + dobin transfolio + + einstalldocs +}