commit: bc7455886c7fcca54684d558cab88937608e2319 Author: Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com> AuthorDate: Sat Mar 26 07:33:21 2022 +0000 Commit: Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org> CommitDate: Sat Mar 26 07:34:13 2022 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=bc745588
sys-cluster/dyninst: add 12.1.0 Signed-off-by: Alessandro Barbieri <lssndrbarbieri <AT> gmail.com> sys-cluster/dyninst/Manifest | 1 + sys-cluster/dyninst/dyninst-12.1.0.ebuild | 60 +++++++++++++++++++++++++++++++ 2 files changed, 61 insertions(+) diff --git a/sys-cluster/dyninst/Manifest b/sys-cluster/dyninst/Manifest index f17d4e2ab..b58638aa2 100644 --- a/sys-cluster/dyninst/Manifest +++ b/sys-cluster/dyninst/Manifest @@ -1 +1,2 @@ DIST dyninst-11.0.1.tar.gz 9059074 BLAKE2B 5ef230d8c5c3253aa54c01387fbb8c6f1d57ea43cb7779e3761306c916cbcd00999ee48cb6d76daba3af45dca6388dcc4c71b527f176039a32130c1ef8f6d074 SHA512 9c439be0252edae0ed3fcfa05b38595b614a91b6627afa85db126df32d5c5de5dc9413a70caf52bee7ac2349d24947626f6370f0dbf19413916c39e01679444f +DIST dyninst-12.1.0.tar.gz 8572639 BLAKE2B 74c835a3c6c6cc9a90d416fff0ea3b4039a55941cb3a7fd63cebd19420a690d6b4fd3d574b728cc9cac53034a6075ffe2a6e9885a7aa87e2d9d0fd798f5e9a29 SHA512 ec09b83f288afefd6a30a3253c91554d421305a43c2f2384435207dcabf523d5498d64873f876817c3108c3fc0a43fd4c48ce2c1ca873c73fb98a2d823446549 diff --git a/sys-cluster/dyninst/dyninst-12.1.0.ebuild b/sys-cluster/dyninst/dyninst-12.1.0.ebuild new file mode 100644 index 000000000..7cfdd0b74 --- /dev/null +++ b/sys-cluster/dyninst/dyninst-12.1.0.ebuild @@ -0,0 +1,60 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +CMAKE_MAKEFILE_GENERATOR="emake" + +inherit cmake + +DESCRIPTION="Tools for binary instrumentation, analysis, and modification" +HOMEPAGE=" + https://dyninst.org/dyninst + https://github.com/dyninst/dyninst +" +SRC_URI="https://github.com/dyninst/dyninst/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="LGPL-2.1+" +SLOT="0" +KEYWORDS="~amd64" +IUSE="doc openmp valgrind" + +RDEPEND=" + dev-cpp/tbb + dev-libs/boost:= + virtual/libelf + virtual/mpi + valgrind? ( dev-util/valgrind ) +" +DEPEND="${RDEPEND}" +BDEPEND="doc? ( dev-texlive/texlive-latex )" + +src_configure() { + local mycmakeargs=( + -DENABLE_STATIC_LIBS=NO + -DSTERILE_BUILD=ON + + -DADD_VALGRIND_ANNOTATIONS=$(usex valgrind) + -DBUILD_DOCS=$(usex doc) + -DUSE_OpenMP=$(usex openmp) + ) + cmake_src_configure +} + +src_install() { + cmake_src_install + + einstalldocs + if use doc; then + mv "${ED}"/usr/share/doc/*.pdf "${ED}/usr/share/doc/${PF}" || die + fi + + if [[ ! -e "${ED}/usr/$(get_libdir)" ]]; then + mv "${ED}/usr/lib" "${ED}/usr/$(get_libdir)" || die + fi + + mkdir -p "${ED}/usr/include/dyninst" || die + mv "${ED}"/usr/include/*.h* "${ED}/usr/include/dyninst" || die + + find "${ED}" -name '*.a' -delete || die +}
