diff options
author | 2022-09-05 17:18:14 +0200 | |
---|---|---|
committer | 2022-09-05 17:18:14 +0200 | |
commit | 9ffff67b78f9ba07e9337c4b399d2524ff0b87c0 (patch) | |
tree | 9d394b8df2e1f487e1be9fe45745ec6b91f3d572 /sys-fs/genimage/genimage-16.ebuild | |
parent | dev-lang/python: Stabilize 3.8.13_p8 ppc64, #868555 (diff) | |
download | gentoo-9ffff67b78f9ba07e9337c4b399d2524ff0b87c0.tar.gz gentoo-9ffff67b78f9ba07e9337c4b399d2524ff0b87c0.tar.bz2 gentoo-9ffff67b78f9ba07e9337c4b399d2524ff0b87c0.zip |
sys-fs/genimage: add 16
Signed-off-by: Jakov Smolić <jsmolic@gentoo.org>
Diffstat (limited to 'sys-fs/genimage/genimage-16.ebuild')
-rw-r--r-- | sys-fs/genimage/genimage-16.ebuild | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/sys-fs/genimage/genimage-16.ebuild b/sys-fs/genimage/genimage-16.ebuild new file mode 100644 index 000000000000..4a0e18372d87 --- /dev/null +++ b/sys-fs/genimage/genimage-16.ebuild @@ -0,0 +1,42 @@ +# Copyright 2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit autotools optfeature + +if [[ ${PV} == *9999 ]]; then + inherit git-r3 + EGIT_REPO_URI="https://github.com/pengutronix/genimage.git" +else + SRC_URI="https://github.com/pengutronix/genimage/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz" + KEYWORDS="~amd64" +fi + +DESCRIPTION="Tool to generate multiple filesystem and flash images from a tree" +HOMEPAGE="https://github.com/pengutronix/genimage" + +LICENSE="GPL-2" +SLOT="0" +IUSE="test" +RESTRICT="!test? ( test )" + +DEPEND="dev-libs/confuse:=" +RDEPEND="${DEPEND}" +BDEPEND="test? ( sys-apps/fakeroot )" + +src_prepare() { + default + eautoreconf +} + +pkg_postinst() { + optfeature "cpio support" app-arch/cpio + optfeature "tar support" app-arch/tar + optfeature "qemu support" app-emulation/qemu + optfeature "dosfstools support" sys-fs/dosfstools + optfeature "cramfs support" sys-fs/cramfs + optfeature "genext2fs support" sys-fs/genext2fs + optfeature "jffs, ubifs and ubinize support" sys-fs/mtd-utils + optfeature "squashfs support" sys-fs/squashfs-tools +} |