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