mirror of
https://github.com/pentoo/pentoo-overlay
synced 2026-04-25 16:20:55 +02:00
127 lines
3 KiB
Bash
127 lines
3 KiB
Bash
# Copyright 1999-2023 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=7
|
|
|
|
inherit autotools desktop eutils git-r3 xdg-utils
|
|
|
|
DESCRIPTION="Scans a disk image for regular expressions and other content"
|
|
HOMEPAGE="https://github.com/simsong/bulk_extractor"
|
|
|
|
# Must use git due to recursive links
|
|
# Please check a ".gitmodules" file on upstream before bump it
|
|
EGIT_REPO_URI="https://github.com/simsong/bulk_extractor"
|
|
if [[ ${PV} != *9999 ]]; then
|
|
#EGIT_COMMIT="8563614408834087f242297813de9f75bdc9bedc"
|
|
EGIT_OVERRIDE_COMMIT_SIMSONG_BULK_EXTRACTOR="v2.0.3"
|
|
# EGIT_OVERRIDE_COMMIT_SIMSONG_BE20_API="f6d985f4d5f8228c1000c268911ad0cd97daedf1"
|
|
# EGIT_OVERRIDE_COMMIT_SIMSONG_BE20_API="f6d985f4d5f8228c1000c268911ad0cd97daedf1"
|
|
# EGIT_OVERRIDE_COMMIT_DFXML_WORKING_GROUP_DFXML_CPP="a283c888b4bb84b3dab937928f9495290a5a8a47"
|
|
# EGIT_OVERRIDE_COMMIT_NEMTRIF_UTFCPP="2ad995746bf1731d5e21cde47c9c3deff56bdbc2"
|
|
KEYWORDS="amd64 ~x86"
|
|
fi
|
|
|
|
LICENSE="GPL-2"
|
|
SLOT="0"
|
|
|
|
#fails to compile with ewf
|
|
#fails to compile with exiv2
|
|
#fails to compile without rar
|
|
IUSE="aff doc beviewer exiv2 hashdb +rar"
|
|
|
|
# ewf? ( app-forensics/libewf )
|
|
RDEPEND="
|
|
aff? ( app-forensics/afflib )
|
|
dev-libs/boost
|
|
dev-libs/expat
|
|
dev-libs/openssl:0=
|
|
dev-db/sqlite:3
|
|
dev-libs/libxml2
|
|
exiv2? ( media-gfx/exiv2 )
|
|
sys-libs/zlib
|
|
hashdb? ( dev-libs/hashdb )
|
|
beviewer? (
|
|
|| ( virtual/jre:* virtual/jdk:* )
|
|
)"
|
|
|
|
DEPEND="${RDEPEND}
|
|
doc? ( app-doc/doxygen )
|
|
virtual/man"
|
|
|
|
BDEPEND="
|
|
sys-devel/flex
|
|
virtual/pkgconfig"
|
|
|
|
src_prepare() {
|
|
# eapply "${FILESDIR}/add_exiv2-0.27_api_support.patch"
|
|
|
|
if [[ ${PV} != *9999 ]]; then
|
|
sed -e "s/AC_INIT(BULK_EXTRACTOR, \(.*\),/AC_INIT(BULK_EXTRACTOR, ${PV},/" \
|
|
-i configure.ac || die
|
|
fi
|
|
|
|
eautoreconf
|
|
default
|
|
}
|
|
|
|
src_configure() {
|
|
econf \
|
|
--disable-o3 \
|
|
--disable-libewf
|
|
# $(use ewf || echo "--disable-libewf")
|
|
# $(use beviewer || echo "--disable-BEViewer") \
|
|
# $(use exiv2 && echo "--enable-exiv2") \
|
|
# $(use aff || echo "--disable-afflib") \
|
|
# $(use hashdb || echo "--disable-hashdb") \
|
|
# $(use rar || echo "--disable-rar" )
|
|
}
|
|
|
|
src_install() {
|
|
dobin src/${PN}
|
|
doman man/*.1
|
|
dodoc AUTHORS ChangeLog NEWS README.md
|
|
|
|
if use doc ; then
|
|
pushd doc/doxygen >/dev/null || die
|
|
doxygen || die "doxygen failed"
|
|
popd >/dev/null || die
|
|
|
|
dodoc -r \
|
|
doc/doxygen/html \
|
|
doc/Diagnostics_Notes \
|
|
doc/announce \
|
|
doc/*.{pdf,txt,md} \
|
|
doc/programmer_manual/*.pdf
|
|
fi
|
|
|
|
# if use beviewer; then
|
|
# local bev_dir="/opt/beviewer-${PV}"
|
|
|
|
# insinto "${bev_dir}"
|
|
# doins java_gui/BEViewer.jar
|
|
|
|
# insinto /usr/share/pixmaps
|
|
# newins java_gui/icons/24/run-build-install.png ${PN}.png
|
|
|
|
# make_wrapper "beviewer" \
|
|
# "/usr/bin/java -Xmx1g -jar \"${bev_dir}/BEViewer.jar\""
|
|
# make_desktop_entry \
|
|
# "beviewer" \
|
|
# "BEViewer (bulk_extractor)" \
|
|
# "${PN}" "Utility"
|
|
# fi
|
|
}
|
|
|
|
#pkg_postinst() {
|
|
# if use beviewer; then
|
|
# xdg_icon_cache_update
|
|
# xdg_desktop_database_update
|
|
# fi
|
|
#}
|
|
|
|
#pkg_postrm() {
|
|
# if use beviewer; then
|
|
# xdg_icon_cache_update
|
|
# xdg_desktop_database_update
|
|
# fi
|
|
#}
|