# $Id$ # Maintainer: Ronald van Haren # Contributor: Damir Perisa # Contributor: Christopher Reimer # ALARM: Kevin Mihelich # - patch to fix qreal usage pkgname=texmacs pkgver=1.99.2 pkgrel=2 pkgdesc="Free scientific text editor, inspired by TeX and GNU Emacs. WYSIWYG editor TeX-fonts and CAS-interface (Giac, GTybalt, Macaulay 2, Maxima, Octave, Pari, Qcl, R and Yacas) in one." arch=('i686' 'x86_64') url="http://www.texmacs.org/" license=('GPL') depends=('perl' 'guile1.8' 'texlive-core' 'python2' 'libxext' 'freetype2' 'shared-mime-info' 'desktop-file-utils' 'qt4') # do not remove texlive-core dependency, as it is needed! optdepends=('transfig: convert images using fig2ps' 'gawk: conversion of some files' 'ghostscript: rendering ps files' 'imagemagick: convert images' 'aspell: spell checking') makedepends=('ghostscript') source=(http://www.texmacs.org/Download/ftp/tmftp/source/TeXmacs-${pkgver}-src.tar.gz arm.patch) install=texmacs.install options=('!emptydirs') sha1sums=('5298e9bd3f61cd8f2117fe1d96a7435f8a788cc8' '3c431d63360da065b4021df04ed052ee6b18b8ae') prepare() { cd "${srcdir}/TeXmacs-${pkgver}-src" patch -p1 -i ../arm.patch sed -i 's/env python/env python2/' \ plugins/{mathematica/bin/realpath.py,python/bin/tm_python,sage/bin/tm_sage} \ TeXmacs/misc/inkscape_extension/texmacs_reedit.py sed -i 's/"python"/"python2"/' plugins/python/progs/init-python.scm sed -i '/^LDPATH/d' src/makefile.in sed -i -e 's/guile /guile1.8 /g' \ -e 's/guile-config/guile-config1.8/g' \ configure # Don't generate icon-cache and mime-database (namcap tells that they should not be in a package) sed -i '/update-mime-database/d' Makefile.in sed -i '/gtk-update-icon-cache/d' Makefile.in sed -i '\/icons\/gnome 2>\/dev\/null/d' Makefile.in } build() { cd "${srcdir}/TeXmacs-${pkgver}-src" export QMAKE=qmake-qt4 export MOC=moc-qt4 export UIC=uic-qt4 export LDFLAGS="$LDFLAGS -lz" ./configure --prefix=/usr \ --mandir=/usr/share/man \ --libexecdir=/usr/lib make } package() { cd "${srcdir}/TeXmacs-${pkgver}-src" make DESTDIR=${pkgdir} install # fix fig2ps script sed -i 's|${prefix}|/usr|' "${pkgdir}/usr/bin/fig2ps" }