blob: a2d55b85cc8085cf3440540e7f59c1b0ede8c842 (
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
36
37
38
39
40
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sci-visualization/opendx-samples/opendx-samples-4.4.0-r1.ebuild,v 1.4 2010/01/20 20:07:53 maekke Exp $
EAPI=2
inherit eutils 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"
IUSE=""
RDEPEND=">=sci-visualization/opendx-4.4.4-r2"
DEPEND="${RDEPEND}"
src_prepare() {
#absolutely no javadx for now
epatch "${FILESDIR}/${P}-nojava.patch"
epatch "${WORKDIR}/${P}-install.patch"
eautoreconf
}
src_configure() {
econf --libdir="/usr/$(get_libdir)"
}
src_install() {
emake DESTDIR="${D}" install || die "emake install failed"
}
|