blob: 2dbd69320cc6bc41490772c74d491923a23739df (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
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 ~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
}
|