summaryrefslogtreecommitdiff
blob: 4544d6e567da0ecc7ba638ba7eb4ac71af2b6e25 (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
# Copyright 1999-2008 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.ebuild,v 1.1 2008/01/21 16:27:07 spock 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-4.4*"

# 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
}