mirror of
https://github.com/pentoo/pentoo-overlay
synced 2026-05-08 20:43:38 +02:00
reglookup: live ebuild, issue #145
This commit is contained in:
parent
310b2361a0
commit
9d36537e56
2 changed files with 36 additions and 1 deletions
|
|
@ -22,7 +22,7 @@ RDEPEND="sys-libs/talloc
|
|||
S="${WORKDIR}/${PN}-src-${PV}"
|
||||
|
||||
src_prepare() {
|
||||
epatch ${FILESDIR}/1.0.1-cflags.patch
|
||||
epatch "${FILESDIR}"/1.0.1-cflags.patch
|
||||
mv pyregfi-distutils.py setup.py
|
||||
|
||||
}
|
||||
|
|
|
|||
35
app-forensics/reglookup/reglookup-9999.ebuild
Normal file
35
app-forensics/reglookup/reglookup-9999.ebuild
Normal file
|
|
@ -0,0 +1,35 @@
|
|||
# Copyright 1999-2017 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Id $
|
||||
|
||||
EAPI="5"
|
||||
|
||||
PYTHON_COMPAT=( python2_7 )
|
||||
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
|
||||
#fix me, add Doxygen
|
||||
# doman doc/*.1.gz
|
||||
dodir /usr/include/regfi
|
||||
insinto /usr/include/regfi
|
||||
doins include/*.h
|
||||
}
|
||||
Loading…
Reference in a new issue