commit: f3a1d9a8275b27fe2b37126717e39a018ddf8324 Author: Michael Mair-Keimberger <mmk <AT> levelnine <DOT> at> AuthorDate: Tue Apr 5 18:35:52 2022 +0000 Commit: Conrad Kostecki <conikost <AT> gentoo <DOT> org> CommitDate: Thu Apr 7 17:27:47 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f3a1d9a8
sys-apps/ccs-tools: EAPI8, minor fixes Closes: https://github.com/gentoo/gentoo/pull/24919 Closes: https://bugs.gentoo.org/732040 Signed-off-by: Michael Mair-Keimberger <mmk <AT> levelnine.at> Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org> Package-Manager: Portage-3.0.30, Repoman-3.0.3 sys-apps/ccs-tools/ccs-tools-1.8.3_p20130214.ebuild | 19 ++++++++++--------- 1 file changed, 10 insertions(+), 9 deletions(-) diff --git a/sys-apps/ccs-tools/ccs-tools-1.8.3_p20130214.ebuild b/sys-apps/ccs-tools/ccs-tools-1.8.3_p20130214.ebuild index 4e3640cdef0a..545914f17ca3 100644 --- a/sys-apps/ccs-tools/ccs-tools-1.8.3_p20130214.ebuild +++ b/sys-apps/ccs-tools/ccs-tools-1.8.3_p20130214.ebuild @@ -1,31 +1,30 @@ -# Copyright 1999-2017 Gentoo Foundation +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=6 +EAPI=8 inherit flag-o-matic toolchain-funcs MY_P="${P/_p/-}" DESCRIPTION="TOMOYO Linux tools" -HOMEPAGE="http://tomoyo.sourceforge.jp/" +HOMEPAGE="https://tomoyo.sourceforge.jp/" SRC_URI="mirror://sourceforge.jp/tomoyo/49693/${MY_P}.tar.gz" +S="${WORKDIR}/${PN}" LICENSE="GPL-2" SLOT="0" KEYWORDS="~amd64 ~x86" -IUSE="" RESTRICT="test" -CDEPEND=" +COMMON_DEPEND=" sys-libs/ncurses:0= sys-libs/readline:0=" -RDEPEND="${CDEPEND} +RDEPEND="${COMMON_DEPEND} sys-apps/which" -DEPEND="${CDEPEND} - virtual/pkgconfig" +DEPEND="${COMMON_DEPEND}" +BDEPEND="virtual/pkgconfig" -S="${WORKDIR}/${PN}" PATCHES=( "${FILESDIR}"/${P}-warnings.patch "${FILESDIR}"/${P}-ncurses-underlinking.patch @@ -38,6 +37,8 @@ src_prepare() { -e "s:/usr/lib:/usr/$(get_libdir):g" \ -e "s:= /:= ${EPREFIX}/:g" \ Include.make || die + + gunzip usr_share_man/man8/ccs*.8.gz || die } src_configure() {
