commit: 2e2ad24c8921a5a17d46d5106988b624c32f89a7 Author: Viorel Munteanu <ceamac <AT> gentoo <DOT> org> AuthorDate: Fri Sep 12 16:15:49 2025 +0000 Commit: Viorel Munteanu <ceamac <AT> gentoo <DOT> org> CommitDate: Fri Sep 12 16:35:20 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2e2ad24c
sys-fs/yaffs2utils: update EAPI 7 -> 8 Signed-off-by: Viorel Munteanu <ceamac <AT> gentoo.org> sys-fs/yaffs2utils/yaffs2utils-0.2.9-r1.ebuild | 29 ++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) diff --git a/sys-fs/yaffs2utils/yaffs2utils-0.2.9-r1.ebuild b/sys-fs/yaffs2utils/yaffs2utils-0.2.9-r1.ebuild new file mode 100644 index 000000000000..1396e69f0845 --- /dev/null +++ b/sys-fs/yaffs2utils/yaffs2utils-0.2.9-r1.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2025 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit toolchain-funcs + +DESCRIPTION="tools for generating YAFFS images" +HOMEPAGE="https://code.google.com/p/yaffs2utils/" +SRC_URI="https://yaffs2utils.googlecode.com/files/${PV}.tar.gz -> ${P}.tar.gz" +S=${WORKDIR}/${PV} + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~arm ~mips ~x86" + +PATCHES=( + "${FILESDIR}"/${P}-build.patch + "${FILESDIR}"/${P}-unyaffs2-pointer.patch +) + +src_configure() { + tc-export CC +} + +src_install() { + dobin unspare2 mkyaffs2 unyaffs2 + dodoc CHANGES README +}
