diff options
author | Gerhard Bräunlich <wippbox@gmx.net> | 2017-01-14 17:16:08 +0100 |
---|---|---|
committer | David Seifert <soap@gentoo.org> | 2017-01-15 11:13:04 +0100 |
commit | 699e19aaa1f8844d4ef3619808991b72b700696f (patch) | |
tree | 264880375c3e2309b5414083fd2e78055c196ecd /sci-visualization | |
parent | sci-visualization/spectromatic: Removing EAPI 4 ebuild (diff) | |
download | gentoo-699e19aaa1f8844d4ef3619808991b72b700696f.tar.gz gentoo-699e19aaa1f8844d4ef3619808991b72b700696f.tar.bz2 gentoo-699e19aaa1f8844d4ef3619808991b72b700696f.zip |
sci-visualization/opendx-samples: EAPI bump 4 -> 6
Package-Manager: portage-2.3.0
Closes: https://github.com/gentoo/gentoo/pull/3479
Diffstat (limited to 'sci-visualization')
-rw-r--r-- | sci-visualization/opendx-samples/opendx-samples-4.4.0-r2.ebuild | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/sci-visualization/opendx-samples/opendx-samples-4.4.0-r2.ebuild b/sci-visualization/opendx-samples/opendx-samples-4.4.0-r2.ebuild new file mode 100644 index 000000000000..6fc2d10926bc --- /dev/null +++ b/sci-visualization/opendx-samples/opendx-samples-4.4.0-r2.ebuild @@ -0,0 +1,36 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +inherit autotools + +MY_PN="dxsamples" +MY_P="${MY_PN}-${PV}" + +DESCRIPTION="Samples for IBM Data Explorer" +HOMEPAGE="http://www.opendx.org/" +SRC_URI="http://opendx.sdsc.edu/source/${MY_P}.tar.gz + mirror://gentoo/${P}-install.patch.bz2" +LICENSE="IBM" +SLOT="0" + +S="${WORKDIR}/${MY_P}" + +KEYWORDS="~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux" +IUSE="" + +RDEPEND=">=sci-visualization/opendx-4.4.4-r2" +DEPEND="$RDEPEND" + +PATCHES=( + "${FILESDIR}/${P}-nojava.patch" + "${WORKDIR}/${P}-install.patch" +) + +src_prepare() { + #absolutely no javadx for now + default + eautoreconf +} |