Gentoo Archives: gentoo-commits

From: David Seifert <soap@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sci-libs/buddy/
Date: Fri, 02 Sep 2016 20:09:39
Message-Id: 1472846945.c50de871c8604bf7944be6e53b4932f4629896a7.soap@gentoo
1 commit: c50de871c8604bf7944be6e53b4932f4629896a7
2 Author: Gerhard Bräunlich <wippbox <AT> gmx <DOT> net>
3 AuthorDate: Fri Sep 2 10:13:02 2016 +0000
4 Commit: David Seifert <soap <AT> gentoo <DOT> org>
5 CommitDate: Fri Sep 2 20:09:05 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c50de871
7
8 sci-libs/buddy: revbump (EAPI 4 -> 6)
9
10 Package-Manager: portage-2.2.28
11 Closes: https://github.com/gentoo/gentoo/pull/2188
12
13 Signed-off-by: David Seifert <soap <AT> gentoo.org>
14
15 sci-libs/buddy/buddy-2.4-r1.ebuild | 37 +++++++++++++++++++++++++++++++++++++
16 1 file changed, 37 insertions(+)
17
18 diff --git a/sci-libs/buddy/buddy-2.4-r1.ebuild b/sci-libs/buddy/buddy-2.4-r1.ebuild
19 new file mode 100644
20 index 00000000..1bf0d29
21 --- /dev/null
22 +++ b/sci-libs/buddy/buddy-2.4-r1.ebuild
23 @@ -0,0 +1,37 @@
24 +# Copyright 1999-2016 Gentoo Foundation
25 +# Distributed under the terms of the GNU General Public License v2
26 +# $Id$
27 +
28 +EAPI=6
29 +
30 +inherit fortran-2
31 +
32 +DESCRIPTION="Binary Decision Diagram Package"
33 +HOMEPAGE="https://sourceforge.net/projects/buddy/"
34 +SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
35 +
36 +LICENSE="buddy"
37 +SLOT="0"
38 +KEYWORDS="~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux ~ppc-macos"
39 +IUSE="doc examples static-libs"
40 +
41 +DOCS=( doc/tech.txt )
42 +PATCHES=(
43 + "${FILESDIR}"/${P}-gcc43.patch
44 + "${FILESDIR}"/${P}-gold.patch
45 +)
46 +
47 +src_configure() {
48 + econf $(use_enable static-libs static)
49 +}
50 +
51 +src_install() {
52 + default
53 +
54 + use doc && docinto ps && dodoc doc/*.ps
55 +
56 + if use examples; then
57 + insinto /usr/share/${PN}/
58 + doins -r examples
59 + fi
60 +}