commit:     08785a19704f0ef4da7002d901dd1f91badf09fe
Author:     Matoro Mahri <matoro <AT> users <DOT> noreply <DOT> github <DOT> 
com>
AuthorDate: Sun Sep 24 23:07:32 2023 +0000
Commit:     Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
CommitDate: Mon Sep 25 16:50:39 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=08785a19

sys-fs/mtd-utils: support USE=ssl

Closes: https://bugs.gentoo.org/887275
Signed-off-by: Matoro Mahri <matoro <AT> users.noreply.github.com>
Signed-off-by: Allen Webb <allenwebb <AT> google.com>
Closes: https://github.com/gentoo/gentoo/pull/33041
Signed-off-by: Jakov Smolić <jsmolic <AT> gentoo.org>

 sys-fs/mtd-utils/mtd-utils-2.1.6-r1.ebuild | 54 ++++++++++++++++++++++++++++++
 1 file changed, 54 insertions(+)

diff --git a/sys-fs/mtd-utils/mtd-utils-2.1.6-r1.ebuild 
b/sys-fs/mtd-utils/mtd-utils-2.1.6-r1.ebuild
new file mode 100644
index 000000000000..d3d01859a5d6
--- /dev/null
+++ b/sys-fs/mtd-utils/mtd-utils-2.1.6-r1.ebuild
@@ -0,0 +1,54 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="8"
+
+DESCRIPTION="MTD userspace tools (NFTL, JFFS2, NAND, FTL, UBI)"
+HOMEPAGE="https://git.infradead.org/?p=mtd-utils.git;a=summary";
+SRC_URI="https://infraroot.at/pub/mtd/${P}.tar.bz2";
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~loong ~mips ~ppc ~ppc64 ~riscv ~x86 ~amd64-linux 
~x86-linux"
+IUSE="+lzo +ssl test xattr +zstd"
+RESTRICT="!test? ( test )"
+
+DEPEND="
+       sys-apps/util-linux:=
+       sys-libs/zlib:=
+       lzo? ( dev-libs/lzo:= )
+       ssl? ( dev-libs/openssl:0= )
+       xattr? ( sys-apps/acl )
+       zstd? ( app-arch/zstd:= )
+"
+RDEPEND="${DEPEND}"
+BDEPEND="test? ( dev-util/cmocka )"
+
+DOCS=( jffsX-utils/device_table.txt ubifs-utils/mkfs.ubifs/README )
+
+PATCHES=(
+       #"${FILESDIR}"/${P}-glibc-2.36.patch
+)
+
+src_prepare() {
+       default
+       sed -i '/if test.*then/s: == : = :' configure || die
+}
+
+src_configure() {
+       # --enable-tests is for test programs that are installed
+       econf \
+               --enable-tests \
+               $(use_enable test unit-tests) \
+               $(use_with lzo) \
+               $(use_with ssl ubifs ) \
+               $(use_with xattr) \
+               $(use_with zstd)
+}
+
+src_install() {
+       default
+       doman \
+               jffsX-utils/mkfs.jffs2.1 \
+               ubi-utils/ubinize.8
+}

Reply via email to