You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/sys-devel/byfl/byfl-1.4-r1.ebuild

49 lines
1.1 KiB

# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
inherit flag-o-matic
if [ "${PV}" = "9999" ]; then
LLVM_VERSION="3.8.0"
EGIT_REPO_URI="git://github.com/lanl/${PN^b}.git https://github.com/lanl/${PN}.git"
inherit autotools git-r3
KEYWORDS=""
else
LLVM_VERSION="3.7.0"
MY_P="${P}-llvm-${LLVM_VERSION}"
SRC_URI="https://github.com/lanl/Byfl/releases/download/v${MY_P#${PN}-}/${MY_P}.tar.gz"
KEYWORDS="~amd64 ~amd64-linux"
S="${WORKDIR}/${MY_P}"
fi
DESCRIPTION="Compiler-based Application Analysis"
HOMEPAGE="https://github.com/lanl/Byfl"
SLOT="0"
LICENSE="BSD"
IUSE="hdf5 static-libs sqlite"
RDEPEND="
>=sys-devel/clang-${LLVM_VERSION}:0
>=sys-devel/llvm-${LLVM_VERSION}:0
<sys-devel/llvm-3.8:0
sys-devel/binutils:*
dev-lang/perl:=
dev-perl/Switch
hdf5? ( sci-libs/hdf5[cxx] )
sqlite? ( dev-db/sqlite:3 )"
DEPEND="${RDEPEND}"
src_prepare() {
default
[[ ${PV} = 9999 ]] && eautoreconf
}
src_configure() {
append-cxxflags -std=c++11
use sqlite || export ac_cv_lib_sqlite3_sqlite3_errstr=no
econf H5CXX=$(usex hdf5 h5c++ no)
}