2013-04-28 05:39:26 +08:00
|
|
|
pkgname=inkscape
|
2014-06-28 21:12:41 +08:00
|
|
|
pkgver=0.48.5
|
|
|
|
pkgrel=1
|
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-11-11 02:40:09 +08:00
|
|
|
'python2' 'desktop-file-utils' 'hicolor-icon-theme' 'libwpg')
|
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')
|
|
|
|
source=("http://downloads.sourceforge.net/project/${pkgname}/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.bz2"
|
2014-06-28 21:12:41 +08:00
|
|
|
'ime-placement.patch')
|
|
|
|
sha1sums=('83ddb0c96069638f712a869039989bfd7d79c6a8'
|
|
|
|
'b12b948ca5ee7e02703a13aa8b8bccdf67947f12')
|
|
|
|
|
2013-04-28 05:39:26 +08:00
|
|
|
|
|
|
|
install=install
|
|
|
|
|
|
|
|
prepare() {
|
|
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
2014-06-28 21:12:41 +08:00
|
|
|
patch -p1 -i ../ime-placement.patch
|
|
|
|
|
2013-04-28 05:39:26 +08:00
|
|
|
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
|
2014-06-28 21:12:41 +08:00
|
|
|
sed -i '/extern unsigned GC_version;/c unsigned GC_version=GC_VERSION_MAJOR<<16+GC_VERSION_MINOR<<8+GC_VERSION_MICRO;' configure
|
2013-04-28 05:39:26 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
build() {
|
|
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
|
|
./configure \
|
2013-11-11 02:40:09 +08:00
|
|
|
--prefix=/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
|
|
|
|
}
|