diff options
author | Sam James <sam@gentoo.org> | 2022-02-27 00:36:31 +0000 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2022-02-27 00:36:31 +0000 |
commit | 6b8451cb635d6e5ba17e2b2d448b3b4e487394de (patch) | |
tree | 3165bcfa345cb87d32245df30121d9db8a2a1d74 /dev-util/min-cscope | |
parent | sci-libs/dmlc-core: update EAPI 6 -> 8 (diff) | |
download | gentoo-6b8451cb635d6e5ba17e2b2d448b3b4e487394de.tar.gz gentoo-6b8451cb635d6e5ba17e2b2d448b3b4e487394de.tar.bz2 gentoo-6b8451cb635d6e5ba17e2b2d448b3b4e487394de.zip |
dev-util/min-cscope: update EAPI 6 -> 8
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'dev-util/min-cscope')
-rw-r--r-- | dev-util/min-cscope/min-cscope-16.1.0-r1.ebuild | 35 |
1 files changed, 35 insertions, 0 deletions
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 +} |