This commit is contained in:
Guido Kroon 2020-02-19 17:10:26 +01:00 committed by Yury Martynov
parent d12fe6a9ef
commit ac1d70f63a
No known key found for this signature in database
GPG key ID: EBE62DD0CCEAE19E
27 changed files with 162 additions and 89 deletions

View 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="project">
<email>proxy-maint@gentoo.org</email>
<name>Proxy Maintainers</name>
</maintainer>
</pkgmetadata>

View file

@ -1,7 +1,7 @@
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=6
EAPI=7
DESCRIPTION="A collection of multiple types of lists used during security assessments"
HOMEPAGE="https://github.com/danielmiessler/SecLists"
@ -10,14 +10,14 @@ SRC_URI="https://github.com/danielmiessler/SecLists/archive/${PV}.tar.gz -> ${P}
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~arm ~x86"
IUSE=""
S="${WORKDIR}/SecLists-${PV}"
src_prepare(){
default
#https://github.com/danielmiessler/SecLists/issues/226
rm ./Payloads/File-Names/max-length/*
eapply_user
rm ./Payloads/File-Names/max-length/* || die
}
src_install(){

View 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="project">
<email>proxy-maint@gentoo.org</email>
<name>Proxy Maintainers</name>
</maintainer>
</pkgmetadata>

View file

@ -1,4 +1,4 @@
# Copyright 1999-2018 Gentoo Foundation
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=6
@ -18,7 +18,7 @@ RESTRICT="mirror strip bindist"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64"
IUSE="libsecret"
IUSE="gnome-keyring"
DEPEND=">=gnome-base/gconf-3.2.6-r4:2
>=media-libs/libpng-1.2.46:0
@ -33,7 +33,7 @@ RDEPEND="
>=x11-libs/libnotify-0.7.7:0
>=x11-libs/libXScrnSaver-1.2.2-r1:0
dev-libs/nss
libsecret? ( app-crypt/libsecret[crypt] )
gnome-keyring? ( app-crypt/libsecret[crypt] )
"
QA_PRESTRIPPED="opt/${PN}/code"
@ -44,18 +44,19 @@ pkg_setup(){
}
src_install(){
local DEST="/opt/${PN}"
pax-mark m code
insinto "/opt/${PN}"
insinto "${DEST}"
doins -r *
dosym "/opt/${PN}/bin/code" "/usr/bin/${PN}"
dosym "/opt/${PN}/bin/code" "/usr/bin/vscode"
dosym "${DEST}/bin/code" "/usr/bin/${PN}"
dosym "${DEST}/bin/code" "/usr/bin/vscode"
make_desktop_entry "vscode" "Visual Studio Code" "${PN}" "Development;IDE"
doicon ${FILESDIR}/${PN}.png
fperms +x "/opt/${PN}/code"
fperms +x "/opt/${PN}/bin/code"
# fperms +x "/opt/${PN}/libnode.so"
fperms +x "/opt/${PN}/resources/app/node_modules.asar.unpacked/vscode-ripgrep/bin/rg"
fperms +x "/opt/${PN}/resources/app/extensions/git/dist/askpass.sh"
doicon "${FILESDIR}/${PN}.png"
fperms +x "${DEST}/code"
fperms +x "${DEST}/bin/code"
# fperms +x "${DEST}/libnode.so"
fperms +x "${DEST}/resources/app/node_modules.asar.unpacked/vscode-ripgrep/bin/rg"
fperms +x "${DEST}/resources/app/extensions/git/dist/askpass.sh"
insinto "/usr/share/licenses/${PN}"
for i in resources/app/LICEN*;
do

View file

@ -1,7 +1,7 @@
# Copyright 1999-2018 Gentoo Foundation
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=6
EAPI=7
inherit eutils pax-utils
@ -18,7 +18,7 @@ RESTRICT="mirror strip bindist"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64"
IUSE="libsecret"
IUSE="gnome-keyring"
DEPEND=">=gnome-base/gconf-3.2.6-r4:2
>=media-libs/libpng-1.2.46:0
@ -33,7 +33,7 @@ RDEPEND="
>=x11-libs/libnotify-0.7.7:0
>=x11-libs/libXScrnSaver-1.2.2-r1:0
dev-libs/nss
libsecret? ( app-crypt/libsecret[crypt] )
gnome-keyring? ( app-crypt/libsecret[crypt] )
"
QA_PRESTRIPPED="opt/${PN}/code"
@ -44,18 +44,19 @@ pkg_setup(){
}
src_install(){
local DEST="/opt/${PN}"
pax-mark m code
insinto "/opt/${PN}"
insinto "${DEST}"
doins -r *
dosym "/opt/${PN}/bin/code" "/usr/bin/${PN}"
dosym "/opt/${PN}/bin/code" "/usr/bin/vscode"
dosym "${DEST}/bin/code" "/usr/bin/${PN}"
dosym "${DEST}/bin/code" "/usr/bin/vscode"
make_desktop_entry "vscode" "Visual Studio Code" "${PN}" "Development;IDE"
doicon ${FILESDIR}/${PN}.png
fperms +x "/opt/${PN}/code"
fperms +x "/opt/${PN}/bin/code"
# fperms +x "/opt/${PN}/libnode.so"
fperms +x "/opt/${PN}/resources/app/node_modules.asar.unpacked/vscode-ripgrep/bin/rg"
fperms +x "/opt/${PN}/resources/app/extensions/git/dist/askpass.sh"
doicon "${FILESDIR}/${PN}.png"
fperms +x "${DEST}/code"
fperms +x "${DEST}/bin/code"
# fperms +x "${DEST}/libnode.so"
fperms +x "${DEST}/resources/app/node_modules.asar.unpacked/vscode-ripgrep/bin/rg"
fperms +x "${DEST}/resources/app/extensions/git/dist/askpass.sh"
insinto "/usr/share/licenses/${PN}"
for i in resources/app/LICEN*;
do
@ -68,6 +69,6 @@ src_install(){
}
pkg_postinst(){
elog "You may install some additional utils, so check them in:"
elog "https://code.visualstudio.com/Docs/setup#_additional-tools"
einfo "You may install some additional utils, so check them in:"
einfo "https://code.visualstudio.com/Docs/setup#_additional-tools"
}

View file

@ -1,7 +1,2 @@
DIST vbox-kernel-module-src-5.2.32.tar.xz 642428 BLAKE2B 0dda5cb5608c1eed22bea209564d53c5f7eab58ca620db2cc441e3c1ba9ad66609c4ef13df07fd29b691f2941a070f9852e8729cd386081df6a82ede345f33c5 SHA512 fadedab690cb7dee8b9a6747ed711d924bf3bce8999b24e7b64cb8738c53c2fa7372b1a8e8535e7e4ef0235aec02d4a3f1f67cd07d7621934fab684c5163329e
DIST vbox-kernel-module-src-5.2.34.tar.xz 642756 BLAKE2B 8a1dacc71b0c033130db84f46ab6029839e4c95cd20b6c982716fde9a83070f4597a9418ef2747c5b5714eafd5c1453c67eb1477104cd1185baf408301bc0226 SHA512 2feefa7867c664f1a1af04181e6db4cf2ab18e8a42dc57afe5fe13d35de889c2a88b79eb43642e024d99decfdd79c42891989158016edb09d5001783c4cb7ac3
DIST vbox-kernel-module-src-5.2.36.tar.xz 643160 BLAKE2B 50f1aee4d56c8b78a5e7512cb843b4e36137c38b160ca0419b2061892f29a98edaa266afb8f94ee0952e4c8af57b41da24a7d70b43a5adf5c5a15b2a4ac867b9 SHA512 b8aa3e8de1573ac728dc00d85ffbb0c25cdb118af92f16f7a4c1a7d394526b8f3005aab1b4422af6251bdafb958c6dc86b31f13c1f35116c8ff39a9288aed277
DIST vbox-kernel-module-src-6.0.14.tar.xz 669396 BLAKE2B e2dc77f33176af16be0fcad8851dd42eb2b7b21da35dc434951e3300e45fec4b516741f6122ae43aed2ee332323221098f047b5206ca63eb7741925a40682728 SHA512 1bcc78dff3305bb7186cec2a844188411a62fe32d0581c4de21843ee513925d5dfc9bd4dedb3cc90f0e1c165c7ae6d856590cc359e36cc8605b164c2c9979380
DIST vbox-kernel-module-src-6.0.16.tar.xz 669392 BLAKE2B 19e718097ee4da75c8dc3b565735f0a378d94547911ec89af52d8dccb36d67391a2f6700575c374552cd4fc4eb8a7e3d6618a800380e473429bd3759e0d1f9c0 SHA512 8979da4cba07c9095778864af0fd29c0acf10d71ea587819954a349e8c193a03b2268bf80dca9004803d8cf2a40974994fcd1f2c6e2ac657b5032f6c04977793
DIST vbox-kernel-module-src-6.1.0.tar.xz 664268 BLAKE2B 9007242bdfcc407283d183132867bef8cfcf75960e7032f1541be39e33c15de68ae1f49c0022422d776fe0397c1411c62866990efb55fe29f9dce27bf7b95b71 SHA512 a5b9f740589ca09b4115275e01d0da7d68535a927550a57007b75726c715422724593f4debc2a123fb8de43a27e49b372aba3832f17dda3ecfd8813d440a0cff
DIST vbox-kernel-module-src-6.1.2.tar.xz 664844 BLAKE2B 4fbdbac98558309c4dd1a25e44f061e2c7386c418f40b0da364914d58cf69048d9c3b1693fb75ce590c63280e79a124433ce7ff4f8f08e327ab67c5d55a163cf SHA512 f26e38a35b0cbf3ca51d98299ea2018641a35c17df5b1bc8a50352738afaafcc95efc9e61efc7d7406e203f3e514125b8afd8ed4406c190f82fe83934a042158

View file

@ -1,4 +1,4 @@
# Copyright 1999-2019 Gentoo Authors
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
@ -7,7 +7,7 @@ PYTHON_COMPAT=( python3_{6,7} )
inherit python-r1
DESCRIPTION="Find Friend's Instagram, FB and Twitter Profiles using Image Recognition and Reverse Image Search"
DESCRIPTION="Find people's social media profile using reverse image search"
HOMEPAGE="https://github.com/ThoughtfulDev/EagleEye"
if [[ ${PV} == *9999 ]]; then
@ -37,7 +37,7 @@ RDEPEND="${PYTHON_DEPS}
dev-python/face_recognition[${PYTHON_USEDEP}]
dev-python/weasyprint[${PYTHON_USEDEP}]
dev-python/requests-html[${PYTHON_USEDEP}]
dev-python/beautifulsoup[${PYTHON_USEDEP}]
dev-python/beautifulsoup:4[${PYTHON_USEDEP}]
dev-python/html5lib[${PYTHON_USEDEP}]
dev-python/spry[${PYTHON_USEDEP}]
"

View 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="project">
<email>proxy-maint@gentoo.org</email>
<name>Proxy Maintainers</name>
</maintainer>
</pkgmetadata>

View file

@ -1,2 +1,2 @@
DIST libbfio-alpha-20180910.tar.gz 1979563 BLAKE2B f81614f36e3a55c5838814fd7fcebe484f9db06afb644f39e1ed0ddb275eb6c22d2d9fad22973d26f464233c0e0ffedcd6ab28518ffd754ef3911686f5ef174c SHA512 4466d14c0972ad98eb2ab48ebc4621ab6deb9c6e644e6c51087653c5a91fae95caf48665c7f014d96ca94bdf8a0a1beda2e0612e9090c01df1bb5bc0d0ae3bcb
DIST libbfio-alpha-20190112.tar.gz 1990392 BLAKE2B cd26c1a97eb3d092c4466830af7bc3bda7d45503aefbc73592ae5b50df127dbd2d8071130470db24962ec6d24db6ebde216d9e06d4bfbbdd3ceb715a726cac52 SHA512 3bf8c4fec6a283c6e03cc25e33737b28fc747655b720b44e621b402f6f3181e9b1778555db45ca4d7d10f36996cb7f2e5d379d0cf958c5aae5579cbc0705e310
DIST libbfio-alpha-20191230.tar.gz 2004155 BLAKE2B 1e1330b4982b896912722c89b54d60e20994aaf5157451d9379b7345a2638236970a1c050fdb5977b84105e1791777c4692cb4a9c1eef405bbe11ff5fdb2cc7e SHA512 4054f853fb072bfff6eca58da1c47e1458ffdf4ca2734349b78fa145745c2cd12635cb244487d84aabc7768f2eb3f63dfcfe6d0afe7b45096674a61cda6f258f

View file

@ -1,7 +1,7 @@
# Copyright 1999-2017 Gentoo Foundation
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=6
EAPI=7
DESCRIPTION="Library for providing a basic file input/output abstraction layer"
HOMEPAGE="https://github.com/libyal/libbfio"
@ -9,7 +9,7 @@ SRC_URI="https://github.com/libyal/${PN}/releases/download/${PV}/${PN}-alpha-${P
LICENSE="LGPL-3"
SLOT="0"
KEYWORDS="~amd64 ~hppa ~ppc ~x86"
KEYWORDS="~amd64 ~x86"
IUSE="nls unicode"
DEPEND="dev-libs/libcerror
@ -28,14 +28,14 @@ src_configure() {
econf $(use_enable nls) \
$(use_with nls libiconv-prefix) \
$(use_with nls libintl-prefix) \
$(use_enable unicode wide-character-type) \
--with-libcerror \
--with-libcthreads \
--with-libcdata \
--with-libclocale \
--with-libcnotify \
--with-libcsplit \
--with-libuna \
--with-libcfile \
--with-libcpath
$(use_enable unicode wide-character-type)
# --with-libcerror \
# --with-libcthreads \
# --with-libcdata \
# --with-libclocale \
# --with-libcnotify \
# --with-libcsplit \
# --with-libuna \
# --with-libcfile \
# --with-libcpath
}

View 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="project">
<email>proxy-maint@gentoo.org</email>
<name>Proxy Maintainers</name>
</maintainer>
</pkgmetadata>

View file

@ -1,7 +1,7 @@
# Copyright 1999-2018 Gentoo Foundation
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=6
EAPI=7
PYTHON_COMPAT=( python{2_7,3_5,3_6} )
@ -14,7 +14,7 @@ SRC_URI="https://github.com/libyal/libpff/releases/download/20161119/libpff-expe
LICENSE="LGPL-3"
SLOT="0"
KEYWORDS="~x86 ~amd64"
KEYWORDS="~amd64 ~x86"
IUSE="debug nls python +threads unicode winapi"
DEPEND="app-forensics/libbfio

View file

@ -1,7 +1,7 @@
# Copyright 1999-2018 Gentoo Foundation
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=6
EAPI=7
PYTHON_COMPAT=( python{2_7,3_5,3_6} )
@ -14,7 +14,7 @@ SRC_URI="https://github.com/libyal/libpff/releases/download/${PV}/libpff-experim
LICENSE="LGPL-3"
SLOT="0"
KEYWORDS="~x86 ~amd64"
KEYWORDS="~amd64 ~x86"
IUSE="debug nls python +threads unicode winapi"
DEPEND="app-forensics/libbfio

View file

@ -0,0 +1,11 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="project">
<email>proxy-maint@gentoo.org</email>
<name>Proxy Maintainers</name>
</maintainer>
<use>
<flag name="winapi">[can anyone answer this?]</flag>
</use>
</pkgmetadata>

View file

@ -0,0 +1,11 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="project">
<email>proxy-maint@gentoo.org</email>
<name>Proxy Maintainers</name>
</maintainer>
<use>
<flag name="ft60x_driver">Use <pkg>sys-kernel/ft60x_driver</pkg> for USB FT60x driver support</flag>
</use>
</pkgmetadata>

View file

@ -1 +1 @@
DIST rdd-3.0.4.tar.gz 5896942 SHA256 13e20e91dbc029a4a4f0713c1a049c94378083a1f3469ef0006e301484040685 SHA512 8f4536cfd8d1f4bb841a40d163b922698e27f02b8aa9f525c265e4c2ebf94bf5e61f8ea8452fca00d5a5ab7977bc24b64288b6442c8076692b045ed9936ba86f WHIRLPOOL 25a5b8032aa6c317d55f83ad745e1c0436aac12655726ce4a1938900bcd34c7cb92d6410159b490800bf8b850658573f3999a15b261539597820aa5360e4ecb3
DIST rdd-3.0.4.tar.gz 5896942 BLAKE2B fa857056b19b1902a77f203f786f55c51c5f14c70886542e0f94c4e7e23e8b4d361b8578184df60e7b41f4dee46dca82d8971c3f4fba8c8408694a0480003d94 SHA512 8f4536cfd8d1f4bb841a40d163b922698e27f02b8aa9f525c265e4c2ebf94bf5e61f8ea8452fca00d5a5ab7977bc24b64288b6442c8076692b045ed9936ba86f

View file

@ -1,7 +1,7 @@
# Copyright 1999-2017 Gentoo Foundation
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=6
EAPI=7
inherit autotools eutils flag-o-matic
@ -12,7 +12,7 @@ DESCRIPTION="Rdd is a forensic copy program"
HOMEPAGE="http://www.sf.net/projects/rdd"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
KEYWORDS="~x86 ~amd64"
KEYWORDS="~amd64 ~x86"
IUSE="debug doc"
LICENSE="BSD"
SLOT="0"

View file

@ -0,0 +1,16 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="project">
<email>proxy-maint@gentoo.org</email>
<name>Proxy Maintainers</name>
</maintainer>
<use>
<flag name="login-watch">Watch for login/logout</flag>
<flag name="mounts-check">Check mount options on filesystems</flag>
<flag name="netclient">Build client side</flag>
<flag name="netserver">Build server side</flag>
<flag name="suidcheck">Check for suid/sgid files</flag>
<flag name="userfiles">Check for users' config files</flag>
</use>
</pkgmetadata>

View file

@ -1,4 +1,4 @@
# Copyright 1999-2019 Gentoo Authors
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7

View file

@ -1 +1 @@
DIST tcpxtract-1.0.1.tar.gz 127102 SHA256 613aa6be39772b236d89c5ef377c27b10ac44d1c34731105599283862dfc05be SHA512 30c8bb7db09121889cd5a3e359deb494503038b4c6ea8dd12d397c9215693cf9a97a21a8d0c1331cdad8f1139c17a4ff75b800b7508ad32ec705cb8547640337 WHIRLPOOL 0d276c7bbb96fe453dd5d9a55d012ae4efd99dc7f4bf11b5a6432c659f8d4c1d7100e61c3210d8e889d0a7914a330eab9874f75f0d4fbfb7cc772c51968a09c2
DIST tcpxtract-1.0.1.tar.gz 127102 BLAKE2B 1225bb894accc4ff7fcba4522a6fbe3e14632154cd350f0e9b32bdd5f7df4f5c65a327572f56eec3e5815e25b4886cf4754c4a45a94a60eb41ec33982d68cb16 SHA512 30c8bb7db09121889cd5a3e359deb494503038b4c6ea8dd12d397c9215693cf9a97a21a8d0c1331cdad8f1139c17a4ff75b800b7508ad32ec705cb8547640337

View file

@ -1 +1,2 @@
DIST xmount-0.7.5.tar.gz 115838 BLAKE2B 42479794c1e7a1c140dd31514bec8f38aed9490833c626a7c63b46f68f71b3a04abcb3c908baa7557b43f9eebcee6009e2437c8cf83ac7d564a8693c0d9bdcb1 SHA512 729ac5062d3111fee561d33b08f5afc399c8dcada2045514c17259f9da0510c28d006045d844720cc8bc4f2580a3075d605ab5cd20a37bfb1aab8449ec72fc69
DIST xmount-0.7.6.tar.gz 120614 BLAKE2B 15bb054afe054e1ac3779fcf2fa07a4c6ba909caa4824064cbf0064d795242d57e93ffc5dba5721507c4b7ac3769caed863dcd58faa715a8fd605d60b43bdf4e SHA512 4890d4a6a2ff825ab61c44bf3ffa194d98b5b958a2502ce14beddbc363522a474ad4830e3d9e2806c647d4918c64c8cdf42b7ee39088a60fd5934c8ca0e616ad

View file

@ -0,0 +1,12 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="project">
<email>proxy-maint@gentoo.org</email>
<name>Proxy Maintainers</name>
</maintainer>
<use>
<flag name="aff">Use <pkg>app-forensics/afflib</pkg> for [can anyone answer this?]</flag>
<flag name="ewf">Use <pkg>app-forensics/libewf</pkg> for [can anyone answer this?]</flag>
</use>
</pkgmetadata>

View file

@ -1,18 +1,18 @@
# Copyright 1999-2017 Gentoo Foundation
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=6
EAPI=7
inherit eutils cmake-utils
DESCRIPTION="Convert on-the-fly between multiple input and output harddisk image types"
HOMEPAGE="https://www.pinguin.lu/xmount"
HOMEPAGE="https://pinguin.lu/xmount"
SRC_URI="https://files.pinguin.lu/${P}.tar.gz"
LICENSE="GPL-3"
SLOT="0"
IUSE="+aff +ewf"
KEYWORDS="~amd64 ~x86 ~arm"
KEYWORDS="~amd64 ~arm ~x86"
RDEPEND="sys-fs/fuse:*
aff? ( app-forensics/afflib )

View file

@ -1,36 +1,26 @@
# Copyright 1999-2017 Gentoo Foundation
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=6
EAPI=7
inherit eutils cmake-utils git-r3
inherit eutils cmake
DESCRIPTION="Convert on-the-fly between multiple input and output harddisk image types"
HOMEPAGE="https://www.pinguin.lu/xmount"
#workaround: no tar ball for this release
#SRC_URI="https://files.pinguin.lu/${P}.tar.gz"
EGIT_REPO_URI="https://code.pinguin.lu/diffusion/XMOUNT"
EGIT_MIN_CLONE_TYPE=single
HOMEPAGE="https://pinguin.lu/xmount"
SRC_URI="https://files.pinguin.lu/${P}.tar.gz"
KEYWORDS="~amd64 ~arm ~x86"
LICENSE="GPL-3"
SLOT="0"
IUSE="+aff +ewf"
KEYWORDS="~amd64 ~x86 ~arm"
BDEPEND="virtual/pkgconfig"
RDEPEND="sys-fs/fuse:*
aff? ( app-forensics/afflib )
ewf? ( app-forensics/libewf )"
DEPEND="${RDEPEND}
virtual/pkgconfig"
S="${WORKDIR}/${P}/tags/${P}"
src_unpack(){
git-r3_fetch ${EGIT_REPO_URI} "refs/tags/v${PV}"
git-r3_checkout ${EGIT_REPO_URI} "" "" "tags/xmount-${PV}"
}
DEPEND="${RDEPEND}"
src_configure() {
CMAKE_BUILD_TYPE=Release
cmake-utils_src_configure
cmake_src_configure
}

View file

@ -11,3 +11,5 @@ app-emulation/open-vm-tools-kmod
#required by Mobile-Security-Framework-MobSF
=app-emulation/genymotion-bin-3.0*
~app-emulation/qemu-charm-0.13.0

View file

@ -14,7 +14,7 @@ dev-libs/msgpack
~dev-libs/libtecla-1.6.3
=dev-libs/distorm64-3.4*
~dev-libs/libguytools2-2.0.1
~dev-libs/libguytools2-2.1.0
# required by dev-db/sqlitebrowser-3.3.1-r1::pentoo
~dev-libs/qcustomplot-1.3.2

View file

@ -335,6 +335,7 @@ dev-python/pylnk3
# required by pwntools (argument)
=dev-python/intervaltree-3.0*
=dev-python/sortedcontainers-2*
~dev-python/pyelftools-0.24-r1
# required by net-analyzer/tplmap
~dev-python/pyyaml-5.1.2