2013-04-28 05:39:26 +08:00
|
|
|
pkgname=inkscape
|
|
|
|
pkgver=0.48.4
|
2013-04-29 00:14:39 +08:00
|
|
|
pkgrel=2
|
2013-04-28 05:39:26 +08:00
|
|
|
pkgdesc='Vector graphics editor using the SVG file format'
|
|
|
|
url='http://inkscape.sourceforge.net/'
|
|
|
|
license=('GPL' 'LGPL')
|
|
|
|
arch=('x86_64')
|
|
|
|
makedepends=('boost' 'intltool')
|
|
|
|
depends=('gc' 'gsl' 'gtkmm' 'gtkspell' 'imagemagick' 'libxslt' 'poppler-glib' 'popt'
|
2013-04-29 00:14:39 +08:00
|
|
|
'python2' 'desktop-file-utils' 'hicolor-icon-theme' 'libwpg' 'filesystem-extra')
|
2013-04-28 05:39:26 +08:00
|
|
|
optdepends=('pstoedit: latex formulas'
|
|
|
|
'texlive-core: latex formulas'
|
|
|
|
'python2-numpy: some extensions'
|
|
|
|
'python2-lxml: some extensions and filters'
|
|
|
|
'pyxml: some extensions'
|
|
|
|
'uniconvertor: reading/writing to some proprietary formats')
|
|
|
|
options=('!libtool')
|
|
|
|
source=("http://downloads.sourceforge.net/project/${pkgname}/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.bz2"
|
|
|
|
'spuriouscomma.patch')
|
|
|
|
sha1sums=('5f26f6ad191d1e7c2a9fb69a438722beb172224c'
|
|
|
|
'7d1d5a6d1d2b0926721a994d5889c52890fc57c1')
|
|
|
|
|
|
|
|
install=install
|
|
|
|
|
|
|
|
prepare() {
|
|
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
|
|
patch -p0 -i ../spuriouscomma.patch
|
|
|
|
sed -i 's|/usr/bin/python\>|/usr/bin/python2|g' cxxtest/*.py
|
|
|
|
sed -i 's|/usr/bin/env python\>|/usr/bin/env python2|g' share/*/{test/,}*.py
|
|
|
|
sed -i 's|"python" },|"python2" },|g' src/extension/implementation/script.cpp
|
|
|
|
sed -i 's|python -c|python2 -c|g' configure share/extensions/uniconv*.py
|
|
|
|
sed -i 's|"python"|"python2"|g' src/main.cpp
|
|
|
|
}
|
|
|
|
|
|
|
|
build() {
|
|
|
|
prepare
|
|
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
|
|
./configure \
|
2013-04-29 00:14:39 +08:00
|
|
|
--prefix=/extra/usr \
|
2013-04-28 05:39:26 +08:00
|
|
|
--with-python \
|
|
|
|
--with-perl \
|
|
|
|
--enable-lcms \
|
|
|
|
--enable-poppler-cairo \
|
|
|
|
--disable-dependency-tracking
|
|
|
|
make
|
|
|
|
}
|
|
|
|
|
|
|
|
package() {
|
|
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
|
|
make DESTDIR="${pkgdir}" install
|
|
|
|
}
|