diff options
author | Michael Mair-Keimberger <mmk@levelnine.at> | 2022-04-05 20:35:52 +0200 |
---|---|---|
committer | Conrad Kostecki <conikost@gentoo.org> | 2022-04-07 19:27:47 +0200 |
commit | f3a1d9a8275b27fe2b37126717e39a018ddf8324 (patch) | |
tree | 7514c3c218715217d9494f51db681aa60f531ca9 /sys-apps/ccs-tools | |
parent | mono.eclass: Remove conditionals for EAPIs 0, 1, 2 (diff) | |
download | gentoo-f3a1d9a8275b27fe2b37126717e39a018ddf8324.tar.gz gentoo-f3a1d9a8275b27fe2b37126717e39a018ddf8324.tar.bz2 gentoo-f3a1d9a8275b27fe2b37126717e39a018ddf8324.zip |
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@levelnine.at>
Signed-off-by: Conrad Kostecki <conikost@gentoo.org>
Package-Manager: Portage-3.0.30, Repoman-3.0.3
Diffstat (limited to 'sys-apps/ccs-tools')
-rw-r--r-- | sys-apps/ccs-tools/ccs-tools-1.8.3_p20130214.ebuild | 19 |
1 files 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() { |