diff options
author | Gerhard Bräunlich <wippbox@gmx.net> | 2016-11-06 22:14:51 +0100 |
---|---|---|
committer | David Seifert <soap@gentoo.org> | 2016-11-07 08:56:55 +0100 |
commit | 0ba691577bee7524935b29f5896830313f9e012e (patch) | |
tree | 12ca6d918e6da8c4e2891a9dd67bf159b143d148 /sci-physics | |
parent | dev-python/flask-pymongo: fix docbuild patch to apply with -p1 (diff) | |
download | gentoo-0ba691577bee7524935b29f5896830313f9e012e.tar.gz gentoo-0ba691577bee7524935b29f5896830313f9e012e.tar.bz2 gentoo-0ba691577bee7524935b29f5896830313f9e012e.zip |
sci-physics/siscone: Version bump to 3.0.3, EAPI bump 5 -> 6
Package-Manager: portage-2.3.0
Closes: https://github.com/gentoo/gentoo/pull/2764
Signed-off-by: David Seifert <soap@gentoo.org>
Diffstat (limited to 'sci-physics')
-rw-r--r-- | sci-physics/siscone/Manifest | 1 | ||||
-rw-r--r-- | sci-physics/siscone/siscone-3.0.3.ebuild | 32 |
2 files changed, 33 insertions, 0 deletions
diff --git a/sci-physics/siscone/Manifest b/sci-physics/siscone/Manifest index 31778b936969..4c7c2c2d0c0c 100644 --- a/sci-physics/siscone/Manifest +++ b/sci-physics/siscone/Manifest @@ -1 +1,2 @@ DIST siscone-2.0.6.tar.gz 473370 SHA256 f66f0ca5360f2cf0413f720b376bf850cde46fe72af093560536e6f0338d8a76 SHA512 3a1bbd50db8800a2ce00eac4f4cd498d7e6674ba739ed8157f6e0c0e32fd7724d19d227b5a023fa945a5b4be5c415c5c77c2e2a60e80ec4029c016e3fd95983d WHIRLPOOL ebe4f44ae784bfca39b47e9eb20d0ea50daeb9c01b2e92f1608f246f416960fd1dec6e0f8e9f9d49fba155fae2c86b4a4853c199737803c3c50d580a4b725637 +DIST siscone-3.0.3.tar.gz 540939 SHA256 c90813ef7d870e62edcd78c24bc5120979bcb386b6f48ab9bf22c29f30c13769 SHA512 dccbb872c897b8c0c28dff593d7f015b396923a0bd885182930d74e5115b901875a89565244a33fad0329fdfb5a83d6cc570152d0085c45c24bc427de075e559 WHIRLPOOL 8a91cacb1be855b039309f3ba77b0d72a430354020cc9a6cd2cc1c3bb5a1fe6ddc09259d6555b2982a2b9da4b4268212f4072e5af179a3557a4cf93b7375314e diff --git a/sci-physics/siscone/siscone-3.0.3.ebuild b/sci-physics/siscone/siscone-3.0.3.ebuild new file mode 100644 index 000000000000..a82f8399f551 --- /dev/null +++ b/sci-physics/siscone/siscone-3.0.3.ebuild @@ -0,0 +1,32 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +DESCRIPTION="Hadron Seedless Infrared-Safe Cone jet algorithm" +HOMEPAGE="http://siscone.hepforge.org/" +SRC_URI="http://www.hepforge.org/archive/${PN}/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" +IUSE="examples static-libs" + +RDEPEND="" +DEPEND="${RDEPEND}" + +src_configure() { + econf $(use_enable static-libs static) +} + +src_install() { + default + if use examples; then + docinto examples + dodoc examples/*.{cpp,h} + docinto examples/events + dodoc examples/events/*.dat + docompress -x /usr/share/doc/${PF}/examples + fi +} |