blob: dabe32deb8b34493057be9f961952290a89cd0f3 (
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
|
# Copyright 1999-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
MY_P="${P}.0"
S=${WORKDIR}/${MY_P}
DESCRIPTION="Quick and useful plotting program"
HOMEPAGE="http://www.gnuplot.info/"
SRC_URI="mirror://sourceforge/gnuplot/${MY_P}.tar.gz"
LICENSE="gnuplot"
SLOT="0"
KEYWORDS="~x86"
IUSE="X svga xemacs pdflib ggi png gd readline plotutils doc"
DEPEND="
xemacs? ( app-editors/xemacs )
pdflib? ( media-libs/pdflib )
ggi? ( media-libs/libggi )
png? ( media-libs/libpng )
gd? ( >=media-libs/libgd-2 )
doc? ( virtual/tetex )
X? ( virtual/x11 )
svga? ( media-libs/svgalib )
readline? ( >=sys-libs/readline-4.2 )
plotutils? ( media-libs/plotutils )"
src_compile() {
local myconf
myconf=""
#myconf=" --with-lasergnu"
use X \
&& myconf="${myconf} --with-x" \
|| myconf="${myconf} --without-x"
use svga \
&& myconf="${myconf} --with-linux-vga" \
|| myconf="${myconf} --without-linux-vga"
use ggi \
&& myconf="${myconf} --with-ggi=/usr/lib --with-xmi=/usr/lib" \
|| myconf="${myconf} --without-ggi"
use readline \
&& myconf="${myconf} --with-readline=gnu --enable-history-file" \
|| myconf="${myconf} --with-readline"
use plotutils \
&& myconf="${myconf} --with-plot=/usr/lib" \
|| myconf="${myconf} --without-plot"
use png \
&& myconf="${myconf} --with-png=/usr/lib" \
|| myconf="${myconf} --without-png"
use gd \
&& myconf="${myconf} --with-gd" \
|| myconf="${myconf} --without-gd"
use pdflib \
&& myconf="${myconf} --with-pdf=/usr/lib" \
|| myconf="${myconf} --without-pdf"
use !xemacs && myconf="${myconf} --without-lisp-files"
econf \
--datadir=/usr/share/gnuplot \
${myconf} || die
cd ${S}
emake || die
if [ -n "`use doc`" ] ; then
cd docs
make pdf || die
fi
}
src_install () {
make DESTDIR=${D} install || die
dodoc BUGS ChangeLog Copyright FAQ INSTALL NEWS PATCHLEVEL PGPKEYS PORTING README* TODO VERSION
use doc && cp docs/gnuplot.pdf ${D}/usr/share/doc/gnuplot-4.0/
use doc && cp -a demo ${D}/usr/share/doc/gnuplot-4.0/demo
}
pkg_postinst() {
if [ "`use svga`" ] ; then
einfo "In order to enable ordinary users to use SVGA console graphics"
einfo "gnuplot needs to be set up as setuid root. Please note that"
einfo "this is usually considered to be a security hazard."
einfo "As root, manually chmod u+s /usr/bin/gnuplot"
fi
}
|