mirror of
https://github.com/pentoo/pentoo-overlay
synced 2026-05-09 04:51:27 +02:00
* edb: bump
This commit is contained in:
parent
23d000dbaf
commit
a6435d111a
2 changed files with 44 additions and 0 deletions
|
|
@ -1,2 +1,4 @@
|
|||
DIST debugger-0.9.10.tgz 600497 RMD160 5b34c330d093cc10821ea1ad65ab9829cc27f98e SHA1 3e4c6e508cfb3ca73298f3cfd4fb737593b1b1ca SHA256 5675bda870c99625b264032b9533d6c0065c57e2eb50996ca0548d9085e66664
|
||||
DIST debugger-0.9.6.tgz 545901 RMD160 6e2d0ca1c6cfb3f6e972052d009a1c644025f2cf SHA1 e6be3d12f312f1aa7e13aa7015a5b0d32f052791 SHA256 81effe652d27bfd2b284eb8811219818800662675c2218feb6f1e2ce946583ae
|
||||
EBUILD edb-0.9.10.ebuild 1248 RMD160 f16d03a5a56712adce62792e21403d54c2d9e244 SHA1 821fa82515bc253a9e3781b63a044b39e02f31a3 SHA256 d0dce56c4216d4dd0cc2e21274e92c80454d587a207da5cea62be3b66d91e72b
|
||||
EBUILD edb-0.9.6.ebuild 1182 RMD160 b8e8cf5adad6a5c928167968d3dedd95588c15b9 SHA1 461de985cf04331b2a12a8c786d9f2be0fc6f5a8 SHA256 a4b599044854d55ad381f298bd23ca1919a68984de64cedfe67529c519212fd9
|
||||
|
|
|
|||
42
dev-util/edb/edb-0.9.10.ebuild
Normal file
42
dev-util/edb/edb-0.9.10.ebuild
Normal file
|
|
@ -0,0 +1,42 @@
|
|||
# Copyright 1999-2007 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: $
|
||||
|
||||
inherit eutils multilib
|
||||
|
||||
DESCRIPTION="EDB \"Evan's Debugger\" (OllyDbg workalike for Linux)"
|
||||
HOMEPAGE="http://www.codef00.com/projects.php#Debugger"
|
||||
SRC_URI="http://www.codef00.com/projects/debugger-${PV}.tgz"
|
||||
LICENSE="GPL-2"
|
||||
SLOT="0"
|
||||
KEYWORDS="~x86 ~amd64"
|
||||
IUSE=""
|
||||
RESTRICT="strip mirror"
|
||||
|
||||
DEPEND="
|
||||
>=x11-libs/qt-core-4.2.0
|
||||
>=x11-libs/qt-gui-4.2.0
|
||||
>=dev-libs/boost-1.35.0"
|
||||
|
||||
RDEPEND="${DEPEND}"
|
||||
S="${WORKDIR}/debugger"
|
||||
|
||||
src_compile() {
|
||||
qmake -makefile DEFAULT_PLUGIN_PATH="/usr/$(get_libdir)/edb/" || dir "qmake failed"
|
||||
emake || die "emake failed"
|
||||
}
|
||||
|
||||
src_install() {
|
||||
make INSTALL_ROOT=${D}/usr/ install
|
||||
dodoc CHANGELOG README README.plugins
|
||||
dobin edb_make_symbolmap.sh
|
||||
}
|
||||
|
||||
pkg_postinst() {
|
||||
einfo "Note: EBD's plugins are installed by default into /usr/$(get_libdir)/edb."
|
||||
einfo "If you have previously used EDB and have it set to look in a"
|
||||
einfo "different directory, then you will need to adjust this. Also"
|
||||
einfo "EDB looks for plugins in the current working directory as well"
|
||||
einfo "as the directory specified in the options, so that unpriviledged"
|
||||
einfo "users can use plugins not installed system wide."
|
||||
}
|
||||
Loading…
Reference in a new issue