diff options
author | Christoph Junghans <ottxor@gentoo.org> | 2015-02-03 20:57:33 +0000 |
---|---|---|
committer | Christoph Junghans <ottxor@gentoo.org> | 2015-02-03 20:57:33 +0000 |
commit | ec0bb0c092b9d93dfcf2aae2e5f0332ae2542b96 (patch) | |
tree | 49895de1ad7240191ce80074b0b2640dc185a156 /sys-devel | |
parent | EAPI 5 (diff) | |
download | gentoo-2-ec0bb0c092b9d93dfcf2aae2e5f0332ae2542b96.tar.gz gentoo-2-ec0bb0c092b9d93dfcf2aae2e5f0332ae2542b96.tar.bz2 gentoo-2-ec0bb0c092b9d93dfcf2aae2e5f0332ae2542b96.zip |
version bump
(Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key C2000586)
Diffstat (limited to 'sys-devel')
-rw-r--r-- | sys-devel/byfl/ChangeLog | 9 | ||||
-rw-r--r-- | sys-devel/byfl/byfl-1.1.ebuild | 37 |
2 files changed, 44 insertions, 2 deletions
diff --git a/sys-devel/byfl/ChangeLog b/sys-devel/byfl/ChangeLog index 694074a11e18..59f9791679a0 100644 --- a/sys-devel/byfl/ChangeLog +++ b/sys-devel/byfl/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for sys-devel/byfl -# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-devel/byfl/ChangeLog,v 1.7 2014/12/05 16:26:47 ottxor Exp $ +# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/sys-devel/byfl/ChangeLog,v 1.8 2015/02/03 20:57:33 ottxor Exp $ + +*byfl-1.1 (03 Feb 2015) + + 03 Feb 2015; Christoph Junghans <ottxor@gentoo.org> +byfl-1.1.ebuild: + version bump 05 Dec 2014; Christoph Junghans <ottxor@gentoo.org> byfl-1.0.ebuild, byfl-9999.ebuild: diff --git a/sys-devel/byfl/byfl-1.1.ebuild b/sys-devel/byfl/byfl-1.1.ebuild new file mode 100644 index 000000000000..9fbde1ebb438 --- /dev/null +++ b/sys-devel/byfl/byfl-1.1.ebuild @@ -0,0 +1,37 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-devel/byfl/byfl-1.1.ebuild,v 1.1 2015/02/03 20:57:33 ottxor Exp $ + +EAPI=5 + +inherit autotools-utils flag-o-matic + +if [ "${PV}" = "9999" ]; then + EGIT_REPO_URI="git://github.com/losalamos/${PN^b}.git http://github.com/losalamos/${PN}.git" + inherit git-2 + KEYWORDS="" + AUTOTOOLS_AUTORECONF=1 + LLVM_VERSION="9999" +else + LLVM_VERSION="3.5.1" + MY_P="${P}-llvm-${LLVM_VERSION}" + SRC_URI="https://github.com/losalamos/Byfl/releases/download/v${MY_P#${PN}-}/${MY_P}.tar.gz" + KEYWORDS="~amd64 ~amd64-linux" +fi + +DESCRIPTION="Compiler-based Application Analysis" +HOMEPAGE="https://github.com/losalamos/Byfl" + +SLOT="0" +LICENSE="BSD" +IUSE="" + +RDEPEND="~sys-devel/dragonegg-${LLVM_VERSION} + ~sys-devel/clang-${LLVM_VERSION} + ~sys-devel/llvm-${LLVM_VERSION}" +DEPEND="${RDEPEND}" + +src_configure() { + append-cxxflags -std=c++11 + autotools-utils_src_configure +} |