mirror of
https://github.com/pentoo/pentoo-overlay
synced 2025-12-15 21:02:30 +01:00
re-applied changes to app-forensics/libmodi
This commit is contained in:
parent
99e2331873
commit
51c99c817a
4 changed files with 167 additions and 0 deletions
2
app-forensics/libmodi/Manifest
Normal file
2
app-forensics/libmodi/Manifest
Normal file
|
|
@ -0,0 +1,2 @@
|
||||||
|
DIST libmodi-experimental-20210807.tar.gz 2011745 BLAKE2B 41223fa77ae1d5510d019dd89385443d2a13a92f4bb208488566d6d4bfa1ca4453bc8a4536f51f831df26a4dfc65e2747b6ca7266fbfad853e31332e368133e8 SHA512 1cd3718fd16650bdce90b7ed1cef1a21fbe2fcf53a4d9009a891b329794644dadffdbfb2a8813958deb8a42f24e2e866ab89c5fd475bab9ac3a709afa274e82a
|
||||||
|
DIST libmodi-experimental-20221023.tar.gz 2103807 BLAKE2B 800b266f8fc2ceefdf78c48294533ad9c3799e2515292a2dee311ebfd490a5ce380c9dfea957a02da08f90b44327446a7d9d7b4d7ccf73a7ce7ca8d6b19c7cca SHA512 29f18ad6ec99c8ec23e9a158b34c76c449e04e18cf447dab19bacea8831e0582885cc3ee5ffd4f1590e3cc8c97ad2f9a91a433a88dbd63f4a223c189d7bb68a0
|
||||||
77
app-forensics/libmodi/libmodi-20210807.ebuild
Normal file
77
app-forensics/libmodi/libmodi-20210807.ebuild
Normal file
|
|
@ -0,0 +1,77 @@
|
||||||
|
# Copyright 1999-2019 Gentoo Authors
|
||||||
|
# Distributed under the terms of the GNU General Public License v2
|
||||||
|
|
||||||
|
EAPI=8
|
||||||
|
|
||||||
|
PYTHON_COMPAT=( python3_{10..11} )
|
||||||
|
inherit autotools python-single-r1
|
||||||
|
|
||||||
|
DESCRIPTION="Library and tools to access the Mac OS disk image formats"
|
||||||
|
HOMEPAGE="https://github.com/libyal/libmodi"
|
||||||
|
SRC_URI="https://github.com/libyal/libmodi/releases/download/${PV}/${PN}-experimental-${PV}.tar.gz"
|
||||||
|
|
||||||
|
LICENSE="LGPL-3"
|
||||||
|
SLOT="0"
|
||||||
|
KEYWORDS="amd64 ~arm64 x86"
|
||||||
|
IUSE="nls unicode python +fuse +threads debug"
|
||||||
|
|
||||||
|
REQUIRED_USE="
|
||||||
|
python? ( ${PYTHON_REQUIRED_USE} )
|
||||||
|
"
|
||||||
|
|
||||||
|
DEPEND="
|
||||||
|
nls? (
|
||||||
|
virtual/libiconv
|
||||||
|
virtual/libintl
|
||||||
|
)
|
||||||
|
python? ( dev-lang/python:* )
|
||||||
|
app-forensics/libbfio[nls=,unicode=,threads=]
|
||||||
|
dev-libs/libcaes[nls=,python=]
|
||||||
|
dev-libs/libcdata[nls=]
|
||||||
|
dev-libs/libcdirectory[nls=,unicode=]
|
||||||
|
dev-libs/libcerror[nls=]
|
||||||
|
dev-libs/libcfile[nls=,unicode=]
|
||||||
|
dev-libs/libclocale[nls=,unicode=]
|
||||||
|
dev-libs/libcnotify[nls=]
|
||||||
|
dev-libs/libcpath[nls=,unicode=]
|
||||||
|
dev-libs/libcsplit[nls=,unicode=]
|
||||||
|
dev-libs/libcthreads[nls=]
|
||||||
|
dev-libs/libfcache[nls=]
|
||||||
|
dev-libs/libfdata[nls=,threads=]
|
||||||
|
dev-libs/libfguid[nls=]
|
||||||
|
dev-libs/libfmos[nls=,threads=,python=]
|
||||||
|
dev-libs/libfplist[nls=,threads=]
|
||||||
|
dev-libs/libfvalue[nls=]
|
||||||
|
dev-libs/libhmac[nls=,unicode=,threads=]
|
||||||
|
dev-libs/libuna[nls=,unicode=]
|
||||||
|
sys-libs/zlib
|
||||||
|
dev-libs/openssl
|
||||||
|
app-arch/bzip2
|
||||||
|
app-arch/xz-utils
|
||||||
|
"
|
||||||
|
# app-arch/xz-utils provides liblzma
|
||||||
|
RDEPEND="
|
||||||
|
${DEPEND}
|
||||||
|
python? ( ${PYTHON_DEPS} )
|
||||||
|
fuse? ( sys-fs/fuse )
|
||||||
|
"
|
||||||
|
|
||||||
|
src_prepare() {
|
||||||
|
eautoreconf
|
||||||
|
eapply_user
|
||||||
|
}
|
||||||
|
|
||||||
|
src_configure() {
|
||||||
|
econf \
|
||||||
|
$(use_enable nls) \
|
||||||
|
$(use_with nls libiconv-prefix) \
|
||||||
|
$(use_with nls libintl-prefix) \
|
||||||
|
$(use_enable unicode wide-character-type) \
|
||||||
|
$(use_enable debug verbose-output ) \
|
||||||
|
$(use_enable debug debug-output ) \
|
||||||
|
$(use_enable threads multi-threading-support) \
|
||||||
|
$(use_enable python) \
|
||||||
|
$(use_enable python python3) \
|
||||||
|
$(use_with fuse libfuse) \
|
||||||
|
|
||||||
|
}
|
||||||
77
app-forensics/libmodi/libmodi-20221023.ebuild
Normal file
77
app-forensics/libmodi/libmodi-20221023.ebuild
Normal file
|
|
@ -0,0 +1,77 @@
|
||||||
|
# Copyright 1999-2019 Gentoo Authors
|
||||||
|
# Distributed under the terms of the GNU General Public License v2
|
||||||
|
|
||||||
|
EAPI=8
|
||||||
|
|
||||||
|
PYTHON_COMPAT=( python3_{10..11} )
|
||||||
|
inherit autotools python-single-r1
|
||||||
|
|
||||||
|
DESCRIPTION="Library and tools to access the Mac OS disk image formats"
|
||||||
|
HOMEPAGE="https://github.com/libyal/libmodi"
|
||||||
|
SRC_URI="https://github.com/libyal/libmodi/releases/download/${PV}/${PN}-experimental-${PV}.tar.gz"
|
||||||
|
|
||||||
|
LICENSE="LGPL-3"
|
||||||
|
SLOT="0"
|
||||||
|
KEYWORDS="amd64 ~arm64 x86"
|
||||||
|
IUSE="nls unicode python +fuse +threads debug"
|
||||||
|
|
||||||
|
REQUIRED_USE="
|
||||||
|
python? ( ${PYTHON_REQUIRED_USE} )
|
||||||
|
"
|
||||||
|
|
||||||
|
DEPEND="
|
||||||
|
nls? (
|
||||||
|
virtual/libiconv
|
||||||
|
virtual/libintl
|
||||||
|
)
|
||||||
|
python? ( dev-lang/python:* )
|
||||||
|
app-forensics/libbfio[nls=,unicode=,threads=]
|
||||||
|
dev-libs/libcaes[nls=,python=]
|
||||||
|
dev-libs/libcdata[nls=]
|
||||||
|
dev-libs/libcdirectory[nls=,unicode=]
|
||||||
|
dev-libs/libcerror[nls=]
|
||||||
|
dev-libs/libcfile[nls=,unicode=]
|
||||||
|
dev-libs/libclocale[nls=,unicode=]
|
||||||
|
dev-libs/libcnotify[nls=]
|
||||||
|
dev-libs/libcpath[nls=,unicode=]
|
||||||
|
dev-libs/libcsplit[nls=,unicode=]
|
||||||
|
dev-libs/libcthreads[nls=]
|
||||||
|
dev-libs/libfcache[nls=]
|
||||||
|
dev-libs/libfdata[nls=,threads=]
|
||||||
|
dev-libs/libfguid[nls=]
|
||||||
|
dev-libs/libfmos[nls=,threads=,python=]
|
||||||
|
dev-libs/libfplist[nls=,threads=]
|
||||||
|
dev-libs/libfvalue[nls=]
|
||||||
|
dev-libs/libhmac[nls=,unicode=,threads=]
|
||||||
|
dev-libs/libuna[nls=,unicode=]
|
||||||
|
sys-libs/zlib
|
||||||
|
dev-libs/openssl
|
||||||
|
app-arch/bzip2
|
||||||
|
app-arch/xz-utils
|
||||||
|
"
|
||||||
|
# app-arch/xz-utils provides liblzma
|
||||||
|
RDEPEND="
|
||||||
|
${DEPEND}
|
||||||
|
python? ( ${PYTHON_DEPS} )
|
||||||
|
fuse? ( sys-fs/fuse )
|
||||||
|
"
|
||||||
|
|
||||||
|
src_prepare() {
|
||||||
|
eautoreconf
|
||||||
|
eapply_user
|
||||||
|
}
|
||||||
|
|
||||||
|
src_configure() {
|
||||||
|
econf \
|
||||||
|
$(use_enable nls) \
|
||||||
|
$(use_with nls libiconv-prefix) \
|
||||||
|
$(use_with nls libintl-prefix) \
|
||||||
|
$(use_enable unicode wide-character-type) \
|
||||||
|
$(use_enable debug verbose-output ) \
|
||||||
|
$(use_enable debug debug-output ) \
|
||||||
|
$(use_enable threads multi-threading-support) \
|
||||||
|
$(use_enable python) \
|
||||||
|
$(use_enable python python3) \
|
||||||
|
$(use_with fuse libfuse) \
|
||||||
|
|
||||||
|
}
|
||||||
11
app-forensics/libmodi/metadata.xml
Normal file
11
app-forensics/libmodi/metadata.xml
Normal file
|
|
@ -0,0 +1,11 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
|
||||||
|
<pkgmetadata>
|
||||||
|
<maintainer type="person">
|
||||||
|
<email>unknown@pentoo.ch</email>
|
||||||
|
<name>Author Unknown</name>
|
||||||
|
</maintainer>
|
||||||
|
<use>
|
||||||
|
<flag name="fuse">Enable FUSE support</flag>
|
||||||
|
</use>
|
||||||
|
</pkgmetadata>
|
||||||
Loading…
Reference in a new issue