blob: f007a576f7ffd0d38249b13e8f5ddb9ddb9b812f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
|
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
pkgname=inkscape
pkgver=0.91
pkgrel=2
pkgdesc="A vector-based drawing program - svg compliant"
url="http://inkscape.sourceforge.net/"
arch="all"
license="GPL LGPL"
makedepends="
autoconf automake
boost-dev
dbus-dev
gc-dev
gsl-dev
gtkmm-dev
gtkspell-dev
imagemagick-dev
lcms-dev
libxml2-dev
libxslt-dev
poppler-dev
popt-dev
py-xml
tar
"
depends="desktop-file-utils"
install=
subpackages="$pkgname-doc $pkgname-lang $pkgname-view"
source="https://launchpad.net/inkscape/$pkgver.x/$pkgver/+download/inkscape-$pkgver.tar.bz2
"
_builddir="$srcdir"/$pkgname-$pkgver
prepare() {
cd "$_builddir"
for i in $source; do
case $i in
*.patch) msg "$i"; patch -p1 -i "$srcdir"/$i || return 1;;
esac
done
#aclocal -I m4 && autoconf && automake -a && autoheader
# we enable fortify source by default so to silence warnings we
# remove it from cmdline
sed -i -e '/CPPFLAGS=/s/-D_FORTIFY_SOURCE=2//' configure || return 1
}
build() {
cd "$_builddir"
./configure \
--build=$CBUILD \
--host=$CHOST \
--prefix=/usr \
--with-python \
--with-perl \
--without-gnome-vfs \
--with-xft \
--enable-lcms \
--enable-poppler-cairo \
--enable-dbusapi \
|| return 1
make || return 1
}
package() {
cd "$_builddir"
make DESTDIR="$pkgdir" install || return 1
}
view() {
pkgdesc="Viewing program for SVG files"
mkdir -p "$subpkgdir"/usr/bin
mv "$pkgdir"/usr/bin/inkview "$subpkgdir"/usr/bin
}
doc() {
default_doc
mkdir -p "$subpkgdir"/usr/share/inkscape
mv "$pkgdir"/usr/share/inkscape/examples \
"$pkgdir"/usr/share/inkscape/tutorials \
"$subpkgdir"/usr/share/inkscape
}
md5sums="278dfa4514adcde23546370ec2c84581 inkscape-0.91.tar.bz2"
sha256sums="4d901f8a9e1924404e797ad23b8b0c495a9d155448816d95a55974314e1f141b inkscape-0.91.tar.bz2"
sha512sums="3778ef7d4a1c759a7afc093e55eefb69a78dcb60332655cc8ab8c481f54a3e6550df6070178390eb08588245531906b8bef33301f0765a4d28d6c7506fcf3bc7 inkscape-0.91.tar.bz2"
|