diff options
author | Nicolás Reynolds <fauno@endefensadelsl.org> | 2014-03-21 03:22:19 +0000 |
---|---|---|
committer | Nicolás Reynolds <fauno@endefensadelsl.org> | 2014-03-21 03:22:19 +0000 |
commit | d0f33415f254cb2fee06fd89f9cfed4535322f37 (patch) | |
tree | 66c13d72eac4f0110772b4675231c891334137bc /community/sage-mathematics/PKGBUILD | |
parent | 7e108c74958ec076a3734822f61f145d0d69547f (diff) |
Fri Mar 21 03:19:28 UTC 2014
Diffstat (limited to 'community/sage-mathematics/PKGBUILD')
-rw-r--r-- | community/sage-mathematics/PKGBUILD | 33 |
1 files changed, 26 insertions, 7 deletions
diff --git a/community/sage-mathematics/PKGBUILD b/community/sage-mathematics/PKGBUILD index 1ec59806e..38c4f7591 100644 --- a/community/sage-mathematics/PKGBUILD +++ b/community/sage-mathematics/PKGBUILD @@ -1,4 +1,4 @@ -# $Id: PKGBUILD 105532 2014-02-09 18:40:24Z arcanis $ +# $Id: PKGBUILD 107816 2014-03-19 23:42:17Z arcanis $ # Maintainer: Evgeniy Alekseev <arcanis.arch at gmail dot com> # Contributor: Daniel Wallace <danielwallace at gtmanfred dot com> # Contributor: Antonio Rojas <nqn1976 at gmail dot com> @@ -9,13 +9,13 @@ pkgname=sage-mathematics pkgver=6.1.1 -pkgrel=1 +pkgrel=2 pkgdesc="Open Source Mathematics Software, free alternative to Magma, Maple, Mathematica, and Matlab" arch=('i686' 'x86_64') url="http://www.sagemath.org" license=('GPL') #depends=('desktop-file-utils' 'java-environment=7' 'libjpeg-turbo' 'libtiff' 'libxmu' 'sqlite' 'xz') -depends=('freetype2>=2.3.5') +depends=('libatomic_ops') makedepends=('desktop-file-utils' 'gcc-fortran' 'gendesk') optdepends=('imagemagick: some plotting functionality benefits from it' 'texlive-core: some plotting functionality benefits from it, also to use SageTeX' @@ -23,10 +23,12 @@ optdepends=('imagemagick: some plotting functionality benefits from it' 'ffmpeg: to show animations' 'cairo: R plots') source=("http://sage.math.washington.edu/home/release/sage-${pkgver}/sage-${pkgver}.tar" - "sage.service") + "sage.service" + "python-readline.patch") install="${pkgname}.install" md5sums=('800c59f7cfa32c012f358ae240cdb2e6' - '985da1c1d1dcdc3ea9aa73035cb7996b') + '985da1c1d1dcdc3ea9aa73035cb7996b' + 'dbfb66f38fb4d516d1078b73fd1d54a2') prepare() { # create *.desktop file @@ -36,7 +38,7 @@ prepare() { --name="Sage" \ --exec="/opt/sage/sage -notebook" \ --terminal=true \ - --categories="Science;Math" \ + --categories="Education;Science;Math" \ --custom="X-DCOP-ServiceType= X-KDE-SubstituteUID=false X-KDE-Username=" @@ -48,7 +50,24 @@ X-KDE-Username=" mkdir "${srcdir}/build" # according to FS#34769 - sed -i -e 's/FREETYPE/#FREETYPE/' "${srcdir}/sage-${pkgver}/build/install" + sed -e 's/FREETYPE/#FREETYPE/' -i "${srcdir}/sage-${pkgver}/build/install" + # according to FS#39533 + ## patching python + cd "${srcdir}/sage-${pkgver}/upstream" + tar xjf python-2.7.5.tar.bz2 + rm -rf python-2.7.5.tar.bz2 + patch -p0 -i "${srcdir}/python-readline.patch" + tar cjf python-2.7.5.tar.bz2 python-2.7.5 + rm -rf python-2.7.5 + ## fix checksums + SUMS=$(md5sum python-2.7.5.tar.bz2 | awk '{print $1}') + sed "s/md5=[0-9a-f]\{32\}/md5=${SUMS}/" -i "${srcdir}/sage-${pkgver}/build/pkgs/python/checksums.ini" + SUMS=$(sha1sum python-2.7.5.tar.bz2 | awk '{print $1}') + sed "s/sha1=[0-9a-f]\{40\}/sha1=${SUMS}/" -i "${srcdir}/sage-${pkgver}/build/pkgs/python/checksums.ini" + SUMS=$(cksum python-2.7.5.tar.bz2 | awk '{print $1}') + sed "s/cksum=[0-9a-f]\{10\}/cksum=${SUMS}/" -i "${srcdir}/sage-${pkgver}/build/pkgs/python/checksums.ini" + ## disable readline build + sed -e 's/READLINE/#READLINE/' -i "${srcdir}/sage-${pkgver}/build/install" } build() { |