]> git.pld-linux.org Git - packages/inkscape.git/blob - inkscape.spec
- ver. 0.41
[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:  pkgconfig
34 BuildRequires:  popt-devel
35 %{?with_xft:BuildRequires:      xft-devel}
36 Requires(post,postun):  shared-mime-info
37 Requires:       perl-XML-XQL
38 Buildroot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
39
40 %description
41 Inkscape is a program for viewing, making, and editing two-dimensional
42 vector drawings.
43
44 %description -l pl
45 Inkscape jest programem do przeglĀ±dania, tworzenia i edycji
46 dwuwymiarowej grafiki wektorowej.
47
48 %prep
49 %setup -q
50 %patch0 -p1
51
52 %build
53 cp -f /usr/share/automake/mkinstalldirs .
54 %{__libtoolize}
55 glib-gettextize --copy --force
56 intltoolize --copy --force --automake
57 %{__aclocal}
58 %{__autoheader}
59 %{__automake}
60 %{__autoconf}
61 %configure \
62         %{!?with_xft: --without-xft}\
63         %{!?with_gnome_print: --without-gnome-print}\
64         %{?with_gnome_print: --with-gnome-print}\
65         %{!?with_mmx:--disable-mmx} \
66         %{?with_relocation:--enable-binreloc} \
67         --disable-static
68
69 %{__make}
70
71 %install
72 rm -rf $RPM_BUILD_ROOT
73
74 %{__make} install \
75         DESTDIR=$RPM_BUILD_ROOT
76
77 rm -f $RPM_BUILD_ROOT%{_libdir}/inkscape/plugins/*.la
78
79 %find_lang %{name}
80
81 %clean
82 rm -rf $RPM_BUILD_ROOT
83
84 %post
85 umask 022
86 update-mime-database %{_datadir}/mime
87 [ ! -x /usr/bin/update-desktop-database ] || /usr/bin/update-desktop-database >/dev/null 2>&1 ||:
88
89 %postun
90 umask 022
91 update-mime-database %{_datadir}/mime
92 [ ! -x /usr/bin/update-desktop-database ] || /usr/bin/update-desktop-database >/dev/null 2>&1
93
94 %files -f %{name}.lang
95 %defattr(644,root,root,755)
96 %doc AUTHORS ChangeLog README
97 %attr(755,root,root) %{_bindir}/*
98 %{_datadir}/inkscape
99 %dir %{_libdir}/inkscape
100 %dir %{_libdir}/inkscape/plugins
101 # why no -avoid-version?
102 %attr(755,root,root) %{_libdir}/inkscape/plugins/lib*.so*
103 %{_mandir}/man1/*
104 %{_pixmapsdir}/*.png
105 %{_desktopdir}/*.desktop
This page took 0.053165 seconds and 4 git commands to generate.