diff options
author | Michael Mair-Keimberger <mmk@levelnine.at> | 2023-11-15 18:27:14 +0100 |
---|---|---|
committer | Ulrich Müller <ulm@gentoo.org> | 2023-12-07 19:51:32 +0100 |
commit | 92dc7579cebb3109c02ac348cc5940fb061bbe7e (patch) | |
tree | 96d1747b3e711fef5912c64a13f8073518ae441c /app-misc | |
parent | app-misc/fsniper: EAPI8 bump, fix LICENSE (diff) | |
download | gentoo-92dc7579cebb3109c02ac348cc5940fb061bbe7e.tar.gz gentoo-92dc7579cebb3109c02ac348cc5940fb061bbe7e.tar.bz2 gentoo-92dc7579cebb3109c02ac348cc5940fb061bbe7e.zip |
app-misc/hilite: EAPI8 bump, fix LICENSE
Signed-off-by: Michael Mair-Keimberger <mmk@levelnine.at>
Signed-off-by: Ulrich Müller <ulm@gentoo.org>
Diffstat (limited to 'app-misc')
-rw-r--r-- | app-misc/hilite/hilite-1.5-r1.ebuild | 24 |
1 files changed, 9 insertions, 15 deletions
diff --git a/app-misc/hilite/hilite-1.5-r1.ebuild b/app-misc/hilite/hilite-1.5-r1.ebuild index 59ee22306d2e..507624ac9af2 100644 --- a/app-misc/hilite/hilite-1.5-r1.ebuild +++ b/app-misc/hilite/hilite-1.5-r1.ebuild @@ -1,31 +1,25 @@ -# Copyright 1999-2017 Gentoo Foundation +# Copyright 1999-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=6 +EAPI=8 -inherit toolchain-funcs +inherit edo toolchain-funcs -DESCRIPTION="A utility which highlights stderr text in red" +DESCRIPTION="Utility which highlights stderr text in red" HOMEPAGE="https://sourceforge.net/projects/hilite" SRC_URI="mirror://gentoo/${P}.c" +S="${WORKDIR}" -LICENSE="GPL-2" +LICENSE="GPL-2+" SLOT="0" KEYWORDS="amd64 ~hppa ~ia64 ~mips ppc sparc x86 ~amd64-linux ~x86-linux ~ppc-macos" -S="${WORKDIR}" - -src_unpack() { :; } - -src_prepare() { - default - cp "${DISTDIR}"/${P}.c "${WORKDIR}"/ || die +src_unpack() { + cp "${DISTDIR}"/${P}.c ${P}.c || die } src_compile() { - ebegin "$(tc-getCC) ${LDFLAGS} ${CFLAGS} -o ${PN} ${P}.c" - $(tc-getCC) ${LDFLAGS} ${CFLAGS} -o ${PN} ${P}.c || die - eend $? + edo $(tc-getCC) ${LDFLAGS} ${CFLAGS} -o ${PN} ${P}.c || die } src_install() { |