blob: 39d9ac74c68080b7bf3048c7e851f5d004ab9846 (
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
99
100
101
102
103
104
105
106
107
108
109
110
111
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-gfx/gnuplot/gnuplot-4.0-r1.ebuild,v 1.1 2004/08/07 19:44:50 ribosome Exp $
inherit eutils
MY_P="${P}.0"
DESCRIPTION="Command-line driven interactive plotting program"
HOMEPAGE="http://www.gnuplot.info/"
SRC_URI="mirror://sourceforge/gnuplot/${MY_P}.tar.gz"
LICENSE="gnuplot"
SLOT="0"
KEYWORDS="~x86 ~amd64"
IUSE="doc gd ggi pdflib plotutils png readline svga X xemacs"
DEPEND="
xemacs? ( virtual/xemacs )
pdflib? ( media-libs/pdflib )
ggi? ( media-libs/libggi )
png? ( media-libs/libpng )
gd? ( >=media-libs/gd-2 )
doc? ( virtual/tetex )
X? ( virtual/x11 )
svga? ( media-libs/svgalib )
readline? ( >=sys-libs/readline-4.2 )
plotutils? ( media-libs/plotutils )"
S=${WORKDIR}/${MY_P}
src_unpack() {
unpack ${A}
cd ${S}
epatch ${FILESDIR}/header-order.patch
}
src_compile() {
local myconf="--datadir=/usr/share/${PN} --with-gihdir=/usr/share/${PN}/gih"
myconf="${myconf} $(use_with X x)"
myconf="${myconf} $(use_with svga linux-vga)"
myconf="${myconf} $(use_with gd)"
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 pdflib \
&& myconf="${myconf} --with-pdf=/usr/lib" \
|| myconf="${myconf} --without-pdf"
! use xemacs && myconf="${myconf} --without-lisp-files"
# This is a hack to avoid sandbox violations when using the Linux console.
# Creating the DVI and PDF tutorials require /dev/svga to build the
# example plots.
addwrite /dev/svga
econf ${myconf} || die
emake || die
if use doc ; then
cd docs
make pdf || die
cd ../tutorial
make pdf || die
fi
}
src_install () {
make DESTDIR=${D} install || die
dodoc BUGS ChangeLog FAQ NEWS PATCHLEVEL PGPKEYS PORTING README* TODO VERSION
if use doc; then
# Demo files
insinto /usr/share/${PN}/demo
doins demo/*
# Manual
insinto /usr/share/doc/${PF}/manual
doins docs/gnuplot.pdf
# Tutorial
insinto /usr/share/doc/${PF}/tutorial
doins tutorial/{tutorial.dvi,tutorial.pdf}
# Documentation for making PostScript files
insinto /usr/share/doc/${PF}/psdoc
doins docs/psdoc/{*.doc,*.tex,*.ps,*.gpi,README}
fi
}
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
}
|