commit:     ce46f296a73cb17ab4581fccec3a44f31f0087c8
Author:     Aisha Tammy <gentoo <AT> aisha <DOT> cc>
AuthorDate: Fri Sep 25 23:19:49 2020 +0000
Commit:     Aisha Tammy <gentoo <AT> aisha <DOT> cc>
CommitDate: Fri Sep 25 23:19:49 2020 +0000
URL:        https://gitweb.gentoo.org/proj/sci.git/commit/?id=ce46f296

dev-libs/asmjit: add live ebuild

Package-Manager: Portage-3.0.8, Repoman-3.0.1
Signed-off-by: Aisha Tammy <gentoo <AT> aisha.cc>

 dev-libs/asmjit/asmjit-9999.ebuild | 34 ++++++++++++++++++++++++++++++++++
 1 file changed, 34 insertions(+)

diff --git a/dev-libs/asmjit/asmjit-9999.ebuild 
b/dev-libs/asmjit/asmjit-9999.ebuild
new file mode 100644
index 000000000..4aa72707c
--- /dev/null
+++ b/dev-libs/asmjit/asmjit-9999.ebuild
@@ -0,0 +1,34 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit cmake
+
+DESCRIPTION="complete x86/x64 JIT-Assembler for C++ language"
+HOMEPAGE="http://asmjit.com/";
+
+if [[ ${PV} == 9999 ]]; then
+       inherit git-r3
+       EGIT_REPO_URI="https://github.com/asmjit/asmjit";
+else
+       COMMIT=b49d685cd9e2e4488f55ce6004306a79bdea056b
+       SRC_URI="https://github.com/asmjit/asmjit/archive/${COMMIT}.tar.gz -> 
${P}.tar.gz"
+       S="${WORKDIR}"/${PN}-${COMMIT}
+       KEYWORDS="~amd64"
+fi
+
+SLOT="0"
+LICENSE="BSD"
+IUSE="natvis static-libs test"
+RESTRICT="!test? ( test )"
+
+src_configure() {
+       local mycmakeargs=(
+               -DASMJIT_EMBED=$(usex static-libs)
+               -DASMJIT_BUILD_X86=ON
+               -DASMJIT_NO_NATVIS=$(usex natvis)
+               -DASMJIT_TEST=$(usex test)
+       )
+       cmake_src_configure
+}

Reply via email to