mirror of
https://github.com/pentoo/pentoo-overlay
synced 2025-12-06 08:25:01 +01:00
re-applied changes to app-forensics/libevt
This commit is contained in:
parent
99e2331873
commit
0a1a8732a6
4 changed files with 154 additions and 0 deletions
2
app-forensics/libevt/Manifest
Normal file
2
app-forensics/libevt/Manifest
Normal file
|
|
@ -0,0 +1,2 @@
|
||||||
|
DIST libevt-alpha-20210424.tar.gz 1986576 BLAKE2B e27c4e652582e5d08de86db25a96a59647e2d22a61b5266d15e19157c69dd1c2c7ec8fc7948571c9054de55cf1baead00e203a410df021d354e1c20fa3013b54 SHA512 4b9985f3da5cb0784105799d8374e33ddcc3b621663a38db027978af9b41f1665be203bb307413d3758fd102a694e067ffa481de6e5fb01d905e76ae250d4dfc
|
||||||
|
DIST libevt-alpha-20221022.tar.gz 2058109 BLAKE2B b61e30f51c6d0aa008e45055d0f3e88d92617186217f9bbddf377f97f57cc7ecdfa666774d9f0c46f4d941a848c82a329a3d972432bfe12fa0d057abcf4cbf25 SHA512 a285900855c9c4d4ee30295793dc7f229ffd948876fad4bdb51b76e44b14bcd33d7af31001c350a0e32e57127fcbd194ba6493c1bc07ff0dacc201337af4e3e3
|
||||||
72
app-forensics/libevt/libevt-20210424.ebuild
Normal file
72
app-forensics/libevt/libevt-20210424.ebuild
Normal file
|
|
@ -0,0 +1,72 @@
|
||||||
|
# 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 Windows Event Log (EVT) format"
|
||||||
|
HOMEPAGE="https://github.com/libyal/libevt"
|
||||||
|
SRC_URI="https://github.com/libyal/libevt/releases/download/${PV}/${PN}-alpha-${PV}.tar.gz"
|
||||||
|
|
||||||
|
LICENSE="LGPL-3"
|
||||||
|
SLOT="0"
|
||||||
|
KEYWORDS="amd64 ~arm64 x86"
|
||||||
|
IUSE="nls unicode python +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/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=]
|
||||||
|
app-forensics/libexe[nls=,unicode=,threads=,python=]
|
||||||
|
dev-libs/libfcache[nls=]
|
||||||
|
dev-libs/libfdata[nls=,threads=]
|
||||||
|
dev-libs/libfdatetime[nls=]
|
||||||
|
dev-libs/libfguid[nls=]
|
||||||
|
dev-libs/libfvalue[nls=]
|
||||||
|
dev-libs/libfwevt[nls=,threads=,python=]
|
||||||
|
dev-libs/libfwnt[nls=,threads=,python=]
|
||||||
|
app-forensics/libregf[nls=,unicode=,threads=,python=]
|
||||||
|
dev-libs/libuna[nls=,unicode=]
|
||||||
|
dev-libs/libwrc[nls=,unicode=,threads=,python=]
|
||||||
|
"
|
||||||
|
RDEPEND="
|
||||||
|
${DEPEND}
|
||||||
|
python? ( ${PYTHON_DEPS} )
|
||||||
|
"
|
||||||
|
|
||||||
|
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) \
|
||||||
|
|
||||||
|
}
|
||||||
72
app-forensics/libevt/libevt-20221022.ebuild
Normal file
72
app-forensics/libevt/libevt-20221022.ebuild
Normal file
|
|
@ -0,0 +1,72 @@
|
||||||
|
# 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 Windows Event Log (EVT) format"
|
||||||
|
HOMEPAGE="https://github.com/libyal/libevt"
|
||||||
|
SRC_URI="https://github.com/libyal/libevt/releases/download/${PV}/${PN}-alpha-${PV}.tar.gz"
|
||||||
|
|
||||||
|
LICENSE="LGPL-3"
|
||||||
|
SLOT="0"
|
||||||
|
KEYWORDS="amd64 ~arm64 x86"
|
||||||
|
IUSE="nls unicode python +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/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=]
|
||||||
|
app-forensics/libexe[nls=,unicode=,threads=,python=]
|
||||||
|
dev-libs/libfcache[nls=]
|
||||||
|
dev-libs/libfdata[nls=,threads=]
|
||||||
|
dev-libs/libfdatetime[nls=]
|
||||||
|
dev-libs/libfguid[nls=]
|
||||||
|
dev-libs/libfvalue[nls=]
|
||||||
|
dev-libs/libfwevt[nls=,threads=,python=]
|
||||||
|
dev-libs/libfwnt[nls=,threads=,python=]
|
||||||
|
app-forensics/libregf[nls=,unicode=,threads=,python=]
|
||||||
|
dev-libs/libuna[nls=,unicode=]
|
||||||
|
dev-libs/libwrc[nls=,unicode=,threads=,python=]
|
||||||
|
"
|
||||||
|
RDEPEND="
|
||||||
|
${DEPEND}
|
||||||
|
python? ( ${PYTHON_DEPS} )
|
||||||
|
"
|
||||||
|
|
||||||
|
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) \
|
||||||
|
|
||||||
|
}
|
||||||
8
app-forensics/libevt/metadata.xml
Normal file
8
app-forensics/libevt/metadata.xml
Normal file
|
|
@ -0,0 +1,8 @@
|
||||||
|
<?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>
|
||||||
|
</pkgmetadata>
|
||||||
Loading…
Reference in a new issue