mirror of
https://github.com/pentoo/pentoo-overlay
synced 2026-04-30 18:51:17 +02:00
app-forensics/maltego: bump to 4.2.12.13389
Package-Manager: Portage-3.0.4, Repoman-2.3.23 Signed-off-by: Yury Martynov <email@linxon.ru>
This commit is contained in:
parent
529f2daa71
commit
7835c9fb56
2 changed files with 59 additions and 0 deletions
|
|
@ -1,2 +1,3 @@
|
|||
DIST maltego-4.2.12.13389.deb 122102820 BLAKE2B ff7563ad8278e7874bddb554c2dd946b77faa2e0e3e40236d998e4f97b7810d14cad40a8a6a27d12f42b6708c34205b3402246736944d532b13413914fecee96 SHA512 efe6546667b99c334ce2f980c877032316af5821c2e663c1be2764bddbfe66d732c312196e290355b09b7fb356c453f256bc2816bbfcc8ad3a7ce03dba6e2ba0
|
||||
DIST maltego-4.2.6.12502.deb 106870342 BLAKE2B 4f25d03026ab19b269846d51721b0ce1f1a333a13f40f8f73eee06ae33f89108448bd6e48929cbffbae4722378876c50305812dc5ff038cf203f8ca0e6df3c3e SHA512 7244cffe2ac420a620710ca1f9d4ad0165e8d1e8266ce85c240fba0e24844666b268d4b8377b73ce6492aa1584c1c1315954f672aa4e57a28da8f84b989a2407
|
||||
DIST maltego-4.2.7.12570.deb 106870744 BLAKE2B 7e7c04bb854df5cd92847694c3cdb9949198e984864e7b4ec973147b711e02014d470552bb688975dd91a5e824d957cbbf24cee799ebec8aa30d00c8b807cadd SHA512 d6e794916e5a0fc726c45b7e5e75e28d0d76e32049323f7b2f8d5880b26db711852b3d2055b0389895087e3cd8053ba7d19f6f96099b19c313eae44b5d002de7
|
||||
|
|
|
|||
58
app-forensics/maltego/maltego-4.2.12.13389.ebuild
Normal file
58
app-forensics/maltego/maltego-4.2.12.13389.ebuild
Normal file
|
|
@ -0,0 +1,58 @@
|
|||
# Copyright 1999-2020 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=7
|
||||
|
||||
inherit desktop eutils unpacker xdg-utils
|
||||
|
||||
DESCRIPTION="Visualise, map and mine data"
|
||||
HOMEPAGE="https://www.paterva.com/"
|
||||
SRC_URI="https://maltego-downloads.s3.us-east-2.amazonaws.com/linux/Maltego.v${PV}.deb -> ${P}.deb"
|
||||
|
||||
LICENSE="Paterva-EULA"
|
||||
SLOT=0
|
||||
KEYWORDS="~amd64 ~x86"
|
||||
|
||||
RDEPEND="|| ( virtual/jre virtual/jdk )"
|
||||
BDEPEND="$(unpacker_src_uri_depends)"
|
||||
|
||||
S="${WORKDIR}"
|
||||
|
||||
src_prepare() {
|
||||
# cleanup
|
||||
rm -fr usr/{share/doc,share/applications,bin} || die
|
||||
default
|
||||
}
|
||||
|
||||
src_install() {
|
||||
doins -r *
|
||||
|
||||
fperms +x "/usr/share/${PN}/bin/${PN}"
|
||||
dosym "../share/${PN}/bin/${PN}" "/usr/bin/${PN}"
|
||||
|
||||
make_wrapper \
|
||||
"${PN}_memory_config" \
|
||||
"/usr/bin/java -jar \"/usr/share/maltego/maltego-ui/modules/ext/Java_Config_App.jar\""
|
||||
|
||||
make_desktop_entry \
|
||||
"${PN}" \
|
||||
"Maltego" \
|
||||
"${PN}" \
|
||||
"Development;Utility;"
|
||||
|
||||
make_desktop_entry \
|
||||
"${PN}_memory_config" \
|
||||
"Maltego Memory Config" \
|
||||
"${PN}" \
|
||||
"Settings;"
|
||||
}
|
||||
|
||||
pkg_postinst() {
|
||||
xdg_icon_cache_update
|
||||
xdg_desktop_database_update
|
||||
}
|
||||
|
||||
pkg_postrm() {
|
||||
xdg_icon_cache_update
|
||||
xdg_desktop_database_update
|
||||
}
|
||||
Loading…
Reference in a new issue