blob: 676d51afd3b80f482f4f8d20cabbc0f507d6a4c6 (
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
41
42
43
44
45
|
# Copyright 1999-2006 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.3.2.ebuild,v 1.3 2006/04/09 21:53:49 cryos Exp $
S="${WORKDIR}/dxsamples-${PV}"
DESCRIPTION="Samples for IBM Data Explorer"
HOMEPAGE="http://www.opendx.org/"
SRC_URI="http://opendx.npaci.edu/source/dxsamples-${PV}.tar.gz"
LICENSE="IPL-1"
SLOT="0"
KEYWORDS="amd64 ~ppc ~x86"
IUSE=""
DEPEND="=sci-visualization/opendx-${PV}*"
# this einstall do not define datadir, because
# it will cause problems since datadir is redefined
# across Makefiles
my_einstall() {
if [ -f ./[mM]akefile -o -f ./GNUmakefile ] ; then
if [ ! -z "${PORTAGE_DEBUG}" ]; then
make -n prefix=${D}/usr \
infodir=${D}/usr/share/info \
localstatedir=${D}/var/lib \
mandir=${D}/usr/share/man \
sysconfdir=${D}/etc \
"$@" install
fi
make prefix=${D}/usr \
infodir=${D}/usr/share/info \
localstatedir=${D}/var/lib \
mandir=${D}/usr/share/man \
sysconfdir=${D}/etc \
"$@" install || die "einstall failed"
else
die "no Makefile found"
fi
}
src_install() {
my_einstall || die
}
|