mirror of
https://github.com/pentoo/pentoo-overlay
synced 2025-12-06 08:25:01 +01:00
40 lines
955 B
Bash
40 lines
955 B
Bash
# Copyright 1999-2018 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI="5"
|
|
|
|
SONAME_PV="1.0.1"
|
|
|
|
PYTHON_COMPAT=( python2_7 python3_{5,6} )
|
|
inherit scons-utils distutils-r1 subversion
|
|
|
|
DESCRIPTION="An utility for reading and querying Windows NT/2K/XP registries"
|
|
HOMEPAGE="http://projects.sentinelchicken.org/reglookup/"
|
|
ESVN_REPO_URI="https://code.blindspotsecurity.com/dav/reglookup/trunk/"
|
|
|
|
LICENSE="GPL-2"
|
|
SLOT="0"
|
|
KEYWORDS=""
|
|
IUSE=""
|
|
|
|
RDEPEND="sys-libs/talloc
|
|
virtual/libiconv"
|
|
|
|
src_compile() {
|
|
escons
|
|
}
|
|
|
|
src_install() {
|
|
distutils-r1_src_install
|
|
dobin bin/reglookup-timeline src/reglookup src/reglookup-recover
|
|
dolib.so lib/libregfi.so
|
|
dolib.so lib/libregfi.so.1
|
|
dolib.so lib/libregfi.so."${SONAME_PV}"
|
|
#fix me, add Doxygen
|
|
# doman doc/*.1.gz
|
|
#Upstream bug: https://github.com/pentoo/pentoo-overlay/issues/145
|
|
# escons install
|
|
dodir /usr/include/regfi
|
|
insinto /usr/include/regfi
|
|
doins include/*.h
|
|
}
|