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 80433138334 for ; Thu, 7 Nov 2019 06:20:39 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 810AAE08EC; Thu, 7 Nov 2019 06:20:36 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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 4AC53E08EC for ; Thu, 7 Nov 2019 06:20:35 +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 819A134C9F4 for ; Thu, 7 Nov 2019 06:20:32 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9C693896 for ; Thu, 7 Nov 2019 06:20:30 +0000 (UTC) From: "Thomas Beierlein" 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 Beierlein" Message-ID: <1573107595.614da4cc786e199abee03cf61ece9d86ffd5539b.tomjbe@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-text/cwtext/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-text/cwtext/cwtext-0.96-r1.ebuild X-VCS-Directories: app-text/cwtext/ X-VCS-Committer: tomjbe X-VCS-Committer-Name: Thomas Beierlein X-VCS-Revision: 614da4cc786e199abee03cf61ece9d86ffd5539b X-VCS-Branch: master Date: Thu, 7 Nov 2019 06:20:30 +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: fa100151-dbfe-40c9-b528-73ee224b5a26 X-Archives-Hash: 4d0946c6f5d2976d9ed45282935c460f commit: 614da4cc786e199abee03cf61ece9d86ffd5539b Author: Thomas Beierlein gentoo org> AuthorDate: Thu Nov 7 06:19:55 2019 +0000 Commit: Thomas Beierlein gentoo org> CommitDate: Thu Nov 7 06:19:55 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=614da4cc app-text/cwtext: Bump to EAPI=7 Closes: https://bugs.gentoo.org/697370 Package-Manager: Portage-2.3.78, Repoman-2.3.17 Signed-off-by: Thomas Beierlein gentoo.org> app-text/cwtext/cwtext-0.96-r1.ebuild | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) diff --git a/app-text/cwtext/cwtext-0.96-r1.ebuild b/app-text/cwtext/cwtext-0.96-r1.ebuild new file mode 100644 index 00000000000..8ee194501b8 --- /dev/null +++ b/app-text/cwtext/cwtext-0.96-r1.ebuild @@ -0,0 +1,32 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 +inherit toolchain-funcs + +DESCRIPTION="Text to Morse Code converter" +HOMEPAGE="http://cwtext.sourceforge.net" +SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~mips ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos" +IUSE="" + +PATCHES=( "${FILESDIR}"/${PN}-0.94-asneeded.patch ) +DOCS=( Changes README TODO ) + +src_prepare() { + eapply -p0 "${PATCHES}" + # change install directory to ${S} + sed -i -e "/^PREFIX/ s:=.*:=\"${S}\":" makefile || \ + die "sed makefile failed" + + eapply_user + tc-export CC +} + +src_install() { + einstalldocs + dobin cwtext cwpcm cwmm +}