blob: ed57e7983af6fd24bc206641e9aad19e06e3fd85 (
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/dataplot/dataplot-20080225.ebuild,v 1.2 2008/06/04 16:40:53 bicatali Exp $
inherit eutils toolchain-funcs flag-o-matic autotools fortran
# DAY MONTH YEAR
MY_PV=${PV:4:2}_${PV:6:2}_${PV:0:4}
MY_P=dpsrc.${MY_PV}
MY_P_AUX=dplib.${MY_PV}
DESCRIPTION="A program for scientific visualization and statistical analyis"
HOMEPAGE="http://www.itl.nist.gov/div898/software/dataplot/"
SRC_URI="ftp://ftp.nist.gov/pub/dataplot/unix/dpsrc.${MY_PV}.tar.gz
ftp://ftp.nist.gov/pub/dataplot/unix/dplib.${MY_PV}.tar.gz"
LICENSE="public-domain"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="examples gd gs opengl X"
COMMON_DEPEND="opengl? ( virtual/opengl )
gd? ( media-libs/gd )
gs? ( virtual/ghostscript media-libs/gd )"
DEPEND="${COMMON_DEPEND}
dev-util/pkgconfig"
RDEPEND="${COMMON_DEPEND}
X? ( x11-misc/xdg-utils )"
S="${WORKDIR}/${MY_P}"
S_AUX="${WORKDIR}/${MY_P_AUX}"
pkg_setup() {
#Dataplot requires media-libs/gd to be built with USE="png jpeg"
if use gd || use gs; then
if ! built_with_use -a media-libs/gd png jpeg; then
eerror "media-libs/gd is not compiled with USE=\"png jpeg\""
eerror "Please recompile media-libs/gd, ensuring USE=\"png jpeg\""
die
fi
fi
##FIXME: Just gfortran for now, I'll get to testing g77 later
FORTRAN="gfortran"
fortran_pkg_setup
}
src_unpack() {
# unpacking and renaming because
# upstream does not use directories
mkdir "${S_AUX}"
pushd "${S_AUX}"
unpack ${MY_P_AUX}.tar.gz
popd
mkdir ${MY_P}
cd "${S}"
unpack ${MY_P}.tar.gz
# autotoolization: need to fix a few files with
# hardcoded directories (will be fixed with autoconf)
mv DPCOPA.INC DPCOPA.INC.in
mv dp1_linux.f dp1_linux.f.in
mv dp1_linux_64.f dp1_linux_64.f.in
# various fixes (mainly syntax)
epatch "${FILESDIR}"/dpsrc-patchset-${PV}.patch
# some fortran patches
epatch "${FILESDIR}"/dpsrc-dp1patches-${PV}.patch
cp "${FILESDIR}"/Makefile.am.${PV} Makefile.am
cp "${FILESDIR}"/configure.ac.${PV} configure.ac
eautoreconf
}
src_compile() {
econf \
$(use_enable gd) \
$(use_enable gs) \
$(use_enable opengl) \
$(use_enable X) || die "Econf failed"
emake || die "Make failed"
}
src_install() {
emake DESTDIR="${D}" install || die "Install failed"
if use examples; then
insinto /usr/share/doc/${PF}/examples
doins -r "${S_AUX}"/data/* || die "Installing examples failed"
fi
insinto /usr/share/dataplot
doins "${S_AUX}"/dp{mes,sys,log}f.tex || die "Doins failed."
doenvd "${FILESDIR}"/90${PN} || die "doenvd failed"
}
pkg_postinst() {
elog "Before using dataplot, please run (as root):"
elog "env-update && source /etc/profile"
}
|