mirror of
https://github.com/pentoo/pentoo-overlay
synced 2025-12-06 08:25:01 +01:00
app-forensics/libsmraw: fix version
old versions could not be fetched (404)
This commit is contained in:
parent
a1a9697b29
commit
f27ec02a1e
3 changed files with 1 additions and 75 deletions
|
|
@ -1,2 +1 @@
|
|||
DIST libsmraw-alpha-20210807.tar.gz 1638029 BLAKE2B 24b37b600627470523bdf29aa3f327c4673c94a95c91dae092fa9ff4d044461af97f3cbdb49207c32dc643c9951acfb9156495c3138958e1fae7068e3c143f85 SHA512 9e596d7cbc2aa6361a494903681ddc51d4599bc2e2004e84720cbb9a24f7a9a83b661fb2ae3eb0a4cb1e91fc18374a33954b49d9866b6094820d81b1c003ebe5
|
||||
DIST libsmraw-alpha-20221028.tar.gz 1680263 BLAKE2B 8846d7f8061062ad9a4cfd73a12b13eed708b423c96bb200832c0a90cf3be48bd60edc797104a5737cbdde0d715d92a979cae41ff309e0b75418014a954c807a SHA512 c3666a4962f0833163bd09a41aaf592fa443cc6a838adf4e868a5be0fae8bd6b2d15b92ca747b6a836f84d373cb3883efdda3e72098cd695f438ce1acdbe792a
|
||||
DIST libsmraw-alpha-20240310.tar.gz 1657965 BLAKE2B 8eb85b3973fcb6705f68001a0847be578c4299b00308ab138f68be9f79a3dc1e6e1429df795ab95238437f2787897f9a6a6c821a2dae7067f19ec69b08b0ea48 SHA512 ef67603108022931c1e04416f1b823402e0177d08ba027cc73677b339cf9be850cb3d781a220d0c2e4dd11b00aff133d352eaa6316467aa01ab7e4161bedc528
|
||||
|
|
|
|||
|
|
@ -1,73 +0,0 @@
|
|||
# Copyright 1999-2019 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
PYTHON_COMPAT=( python3_{10..12} )
|
||||
inherit autotools python-single-r1
|
||||
|
||||
DESCRIPTION="Library and tools to access the (split) RAW image format"
|
||||
HOMEPAGE="https://github.com/libyal/libsmraw"
|
||||
SRC_URI="https://github.com/libyal/libsmraw/releases/download/${PV}/${PN}-alpha-${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/libcdata[nls=]
|
||||
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/libfvalue[nls=]
|
||||
dev-libs/libhmac[nls=,unicode=,threads=]
|
||||
dev-libs/libuna[nls=,unicode=]
|
||||
"
|
||||
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) \
|
||||
|
||||
}
|
||||
|
||||
src_install() {
|
||||
default
|
||||
# see https://projects.gentoo.org/qa/policy-guide/installed-files.html#pg0303
|
||||
find "${ED}" -name '*.la' -delete || die
|
||||
}
|
||||
Loading…
Reference in a new issue