commit: 0a939d911405b4494516fb517a1455d0a051b0b9 Author: Christian Ruppert <idl0r <AT> gentoo <DOT> org> AuthorDate: Mon May 15 08:12:50 2017 +0000 Commit: Christian Ruppert <idl0r <AT> gentoo <DOT> org> CommitDate: Mon May 15 08:14:11 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0a939d91
sci-electronics/espresso-ab: Revbump. Fix compilation by specifying gnu89 as standard, bug 617492. Thanks to Nils/holgersson Package-Manager: Portage-2.3.5, Repoman-2.3.2 .../espresso-ab/espresso-ab-1.0-r2.ebuild | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/sci-electronics/espresso-ab/espresso-ab-1.0-r2.ebuild b/sci-electronics/espresso-ab/espresso-ab-1.0-r2.ebuild new file mode 100644 index 00000000000..b3ac432ed1e --- /dev/null +++ b/sci-electronics/espresso-ab/espresso-ab-1.0-r2.ebuild @@ -0,0 +1,22 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +inherit flag-o-matic + +DESCRIPTION="POSIX compliant version of the espresso logic minimization tool" +HOMEPAGE="http://www.cs.man.ac.uk/apt/projects/balsa/" +SRC_URI="ftp://ftp.cs.man.ac.uk/pub/amulet/balsa/other-software/${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~sparc ~x86" +IUSE="" + +DOCS="README" + +src_configure(){ + append-cflags "-std=gnu89" + default +}