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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id E016C15808C for ; Sun, 27 Feb 2022 00:54:31 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D9D3EE0936; Sun, 27 Feb 2022 00:54:30 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id BE28EE0936 for ; Sun, 27 Feb 2022 00:54:30 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id E9C3C3430FD for ; Sun, 27 Feb 2022 00:54:28 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0E16026D for ; Sun, 27 Feb 2022 00:54:27 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1645922191.6b8451cb635d6e5ba17e2b2d448b3b4e487394de.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/min-cscope/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-util/min-cscope/min-cscope-16.1.0-r1.ebuild X-VCS-Directories: dev-util/min-cscope/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 6b8451cb635d6e5ba17e2b2d448b3b4e487394de X-VCS-Branch: master Date: Sun, 27 Feb 2022 00:54:27 +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: 436b668e-0a71-4398-b1cf-551785cba659 X-Archives-Hash: 6420589cfc4baea696deadbba06b95be commit: 6b8451cb635d6e5ba17e2b2d448b3b4e487394de Author: Sam James gentoo org> AuthorDate: Sun Feb 27 00:36:31 2022 +0000 Commit: Sam James gentoo org> CommitDate: Sun Feb 27 00:36:31 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6b8451cb dev-util/min-cscope: update EAPI 6 -> 8 Signed-off-by: Sam James gentoo.org> dev-util/min-cscope/min-cscope-16.1.0-r1.ebuild | 35 +++++++++++++++++++++++++ 1 file changed, 35 insertions(+) diff --git a/dev-util/min-cscope/min-cscope-16.1.0-r1.ebuild b/dev-util/min-cscope/min-cscope-16.1.0-r1.ebuild new file mode 100644 index 000000000000..5ec2af9a45c7 --- /dev/null +++ b/dev-util/min-cscope/min-cscope-16.1.0-r1.ebuild @@ -0,0 +1,35 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit cmake flag-o-matic + +DESCRIPTION="Interactively examine a C program" +HOMEPAGE="https://sourceforge.net/projects/kscope/" +SRC_URI="mirror://sourceforge/kscope/${P}.tar.gz" +S="${WORKDIR}"/${PN} + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="debug" + +DOCS=( AUTHORS README{,.cscope} TODO ) + +PATCHES=( + "${FILESDIR}/${P}-tinfo.patch" # bug #678886 +) + +src_prepare() { + cmake_src_prepare + + echo 'INSTALL(TARGETS min-cscope RUNTIME DESTINATION bin)' \ + >> src/CMakeLists.txt || die +} + +src_configure() { + append-flags -I"${S}"/sort + + cmake_src_configure +}