updated on Sun Jan 15 08:01:04 UTC 2012
[aur-mirror.git] / gnuplot-cvs / PKGBUILD
blob272ed7e04bbd7a62c4b3f8e81c3bfea491fc9ffb
1 # Contributor: Stephen Caraher <moskvax@gmail.com>
2 # Maintainer: Stefan Husmann <stefan-husmann@t-online.de>
4 pkgname=gnuplot-cvs
5 pkgver=20110413
6 pkgrel=1
7 arch=('i686' 'x86_64')
8 pkgdesc="A command-line driven interactive function and data plotting utility -- cvs veesion"
9 url="http://www.gnuplot.info/"
10 license=('custom')
11 depends=('gd' 'pango' 'lua')
12 optdepends=('wxgtk: for wxterminal' 'texlive-core: for searching for fonts (kpsexpand)') 
13 makedepends=('texinfo' 'cvs' 'libpng' 'freetype2' 'libjpeg-turbo' 'emacs' 'texlive-latexextra')
14 conflicts=('gnuplot')
15 provides=('gnuplot=4.5')
16 install=$pkgname.install
17 options=('zipman')
18 source=()
19 md5sums=()
21 _cvsmod="gnuplot"
22 _cvsroot=":pserver:anonymous:@gnuplot.cvs.sourceforge.net:/cvsroot/$_cvsmod"
24 build() {
25   cd $srcdir
26   msg "Connecting to gnuplot.cvs.sourceforge.net..."
27   if [ -d $_cvsmod/CVS ]; then
28     echo "fetching only new files"
29     cd $_cvsmod
30     cvs -z3 update -d
31   else
32     echo "fetching whole branch"
33     cvs -z3 -d$_cvsroot co -D $pkgver -P $_cvsmod
34   fi
36   msg "CVS checkout done or server timeout"
37   [[ -d $srcdir/$_cvsmod-build ]] && rm -fr $srcdir/$_cvsmod-build
38   cp -r $srcdir/$_cvsmod $srcdir/$_cvsmod-build
40   cd $srcdir/$_cvsmod-build
41   msg "Running prepare script..."
42   ./prepare
43   # fix default source location; use the GDFONTPATH variable 
44   # to modify at runtime 
45   sed -i 's|/usr/X11R6/lib/X11/fonts/truetype|/usr/share/fonts/TTF|' \
46     src/variable.c
47   sed -i 's|/X11R6/lib/X11/fonts/Type1|/usr/share/fonts/Type1|' \
48     src/variable.c
49   
50   msg "Running configure script..."
51   ./configure --prefix=/usr --libexecdir=/usr/lib \
52     --with-gihdir=/usr/share/gnuplot --with-readline=gnu \
53     --with-kpsexpand --enable-thin-spline --with-lua --without-lisp-files
55   msg "Running make & make install..."
56   make pkglibexecdir=/usr/bin
58 package() {
59   cd $srcdir/$_cvsmod-build
60   make DESTDIR=$pkgdir X11_DRIVER_DIR=$pkgdir/usr/bin install
61   install -D ../$_cvsmod/Copyright \
62     $pkgdir/usr/share/licenses/$pkgname/Copyright