]> git.pld-linux.org Git - packages/inkscape.git/blob - inkscape.spec
- add BR libxslt-devel
[packages/inkscape.git] / inkscape.spec
1 #
2 # Conditional build
3 %bcond_without  xft             # Don't use xft scalable font database
4 %bcond_without  gnome_print     # Don't use gnome print font database and spooler frontend
5 %bcond_without  mmx             # Force building without MMX optimazation (Default: auto-detect)
6 %bcond_with     relocation      # Enable binary relocation support
7 #
8 Summary:        Scalable vector graphics editor
9 Summary(pl):    Edytor skalowalnej grafiki wektorowej
10 Name:           inkscape
11 Version:        0.41
12 Release:        1
13 License:        GPL v2, LGPL v2.1
14 Group:          Applications/Graphics
15 Source0:        http://dl.sourceforge.net/inkscape/%{name}-%{version}.tar.bz2
16 # Source0-md5:  9b4bbfaae688127dca4c3d816a42b21a
17 Patch0:         %{name}-gnome_print_compile.patch
18 URL:            http://www.inkscape.org/
19 BuildRequires:  autoconf >= 2.59-3
20 BuildRequires:  automake >= 1:1.9.4-2
21 BuildRequires:  freetype-devel >= 2.0
22 BuildRequires:  gc-devel >= 6.4
23 BuildRequires:  gtk+2-devel >= 2:2.4.0
24 BuildRequires:  gtkmm-devel >= 2.4
25 BuildRequires:  gtkspell-devel
26 BuildRequires:  intltool
27 BuildRequires:  libart_lgpl-devel >= 2.3.10
28 %{?with_gnome_print:BuildRequires:      libgnomeprintui-devel >= 1.116.0}
29 BuildRequires:  libpng-devel
30 BuildRequires:  libsigc++-devel >= 2.0.3
31 BuildRequires:  libtool
32 BuildRequires:  libxml2-devel >= 2.4.24
33 BuildRequires:  libxslt-devel >= 1.0.15
34 BuildRequires:  pkgconfig
35 BuildRequires:  popt-devel
36 %{?with_xft:BuildRequires:      xft-devel}
37 Requires(post,postun):  shared-mime-info
38 Requires:       gc >= 6.4
39 Requires:       gtk+2 >= 2:2.4.0
40 Requires:       perl-XML-XQL
41 Buildroot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
42
43 %description
44 Inkscape is a program for viewing, making, and editing two-dimensional
45 vector drawings.
46
47 %description -l pl
48 Inkscape jest programem do przeglĀ±dania, tworzenia i edycji
49 dwuwymiarowej grafiki wektorowej.
50
51 %prep
52 %setup -q
53 %patch0 -p1
54
55 %build
56 cp -f /usr/share/automake/mkinstalldirs .
57 %{__libtoolize}
58 glib-gettextize --copy --force
59 intltoolize --copy --force --automake
60 %{__aclocal}
61 %{__autoheader}
62 %{__automake}
63 %{__autoconf}
64 %configure \
65         %{!?with_xft: --without-xft}\
66         %{!?with_gnome_print: --without-gnome-print}\
67         %{?with_gnome_print: --with-gnome-print}\
68         %{!?with_mmx:--disable-mmx} \
69         %{?with_relocation:--enable-binreloc} \
70         --disable-static
71
72 %{__make}
73
74 %install
75 rm -rf $RPM_BUILD_ROOT
76
77 %{__make} install \
78         DESTDIR=$RPM_BUILD_ROOT
79
80 rm -f $RPM_BUILD_ROOT%{_libdir}/inkscape/plugins/*.la
81
82 %find_lang %{name}
83
84 %clean
85 rm -rf $RPM_BUILD_ROOT
86
87 %post
88 umask 022
89 update-mime-database %{_datadir}/mime
90 [ ! -x /usr/bin/update-desktop-database ] || /usr/bin/update-desktop-database >/dev/null 2>&1 ||:
91
92 %postun
93 umask 022
94 update-mime-database %{_datadir}/mime
95 [ ! -x /usr/bin/update-desktop-database ] || /usr/bin/update-desktop-database >/dev/null 2>&1
96
97 %files -f %{name}.lang
98 %defattr(644,root,root,755)
99 %doc AUTHORS ChangeLog README
100 %attr(755,root,root) %{_bindir}/*
101 %{_datadir}/inkscape
102 %dir %{_libdir}/inkscape
103 %dir %{_libdir}/inkscape/plugins
104 # why no -avoid-version?
105 %attr(755,root,root) %{_libdir}/inkscape/plugins/lib*.so*
106 %{_mandir}/man1/*
107 %{_pixmapsdir}/*.png
108 %{_desktopdir}/*.desktop
This page took 0.058642 seconds and 4 git commands to generate.