]> git.pld-linux.org Git - packages/gdl.git/blame - gdl.spec
- updated to 2.30.0
[packages/gdl.git] / gdl.spec
CommitLineData
24f77259 1Summary: GNOME Devtool Libraries
cfb69378 2Summary(pl.UTF-8): Biblioteki GNOME Devtool
c95a282d 3Name: gdl
ff803a61
MB
4Version: 2.30.0
5Release: 1
89566316 6License: GPL v2+
c95a282d 7Group: Libraries
ff803a61
MB
8Source0: http://ftp.gnome.org/pub/GNOME/sources/gdl/2.30/%{name}-%{version}.tar.bz2
9# Source0-md5: ce4eef03a36bf6abd9f8cbad4806d7b8
89566316 10BuildRequires: autoconf >= 2.53
c95a282d 11BuildRequires: automake
020f28e1 12BuildRequires: docbook-dtd412-xml
b2420242 13BuildRequires: gettext-devel
7f310be4 14BuildRequires: gtk+2-devel >= 2:2.16.0
89566316 15BuildRequires: gtk-doc >= 1.4
92e83b0f 16BuildRequires: intltool >= 0.40.0
c95a282d 17BuildRequires: libtool
89566316 18BuildRequires: libxml2-devel >= 1:2.6.26
b2420242 19BuildRequires: pkgconfig
ff803a61 20BuildRequires: sed >= 4.0
26d861f6 21# sr@Latn vs. sr@latin
22Conflicts: glibc-misc < 6:2.7
c95a282d 23BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
24
25%description
26This package contains components and libraries that are intended to be
27shared between GNOME development tools, including gnome-debug,
28gnome-build, and anjuta2. The current pieces of GDL include: a symbol
cce19a1d 29browser bonobo component (symbol-browser-control), a docking widget
30(gdl), a utility library that also contains the stubs and skels for
31the symbol browser and text editor components (gdl, idl).
c95a282d 32
f403039b
JR
33%description -l pl.UTF-8
34Ten pakiet zawiera komponenty i biblioteki zaprojektowane jako wspólne
35dla różnych narzędzi programistycznych GNOME, takich jak: gnome-debug,
36gnome-build i anjuta2. Aktualnie GDL zawiera: przeglądarkę symboli
f7783e9f 37jako komponent bonobo (symbol-browser-control), dokowany element
f403039b
JR
38interfejsu graficznego (gdl), bibliotekę narzędzi zawierającą także
39szkielety dla przeglądarki symboli i komponentów edytora tekstu (gdl,
f7783e9f 40idl).
a070abb4 41
c95a282d 42%package devel
43Summary: Header files for gdl development
cfb69378 44Summary(pl.UTF-8): Pliki nagłówkowe do biblioteki gdl
c95a282d 45Group: Development/Libraries
4ddc4132 46Requires: %{name} = %{version}-%{release}
7f310be4 47Requires: gtk+2-devel >= 2:2.16.0
89566316 48Requires: libxml2-devel >= 1:2.6.26
c95a282d 49
50%description devel
51This package contains the header files needed to develop programs that
52use these gdl.
53
f403039b
JR
54%description devel -l pl.UTF-8
55Pakiet zawiera pliki nagłówkowe niezbędne do kompilowania programów
56używających bibliotek gdl.
c95a282d 57
58%package static
59Summary: Static libraries for gdl development
cfb69378 60Summary(pl.UTF-8): Statyczne biblioteki gdl
c95a282d 61Group: Development/Libraries
4ddc4132 62Requires: %{name}-devel = %{version}-%{release}
c95a282d 63
64%description static
65This package contains the static gdl libraries.
66
f403039b 67%description static -l pl.UTF-8
c95a282d 68Pakiet zawiera statyczne biblioteki gdl.
69
89566316
MB
70%package apidocs
71Summary: gdl library API documentation
72Summary(pl.UTF-8): Dokumentacja API biblioteki gdl
73Group: Documentation
74Requires: gtk-doc-common
75
76%description apidocs
77gdl library API documentation.
78
79%description apidocs -l pl.UTF-8
80Dokumentacja API biblioteki gdl.
81
c95a282d 82%prep
83%setup -q
84
ff803a61
MB
85sed -i -e 's/^en@shaw//' po/LINGUAS
86rm -f po/en@shaw.po
87
c95a282d 88%build
fe8ddd99 89%{__glib_gettextize}
d09dd964 90%{__gtkdocize}
e90ea9cb 91%{__intltoolize}
c95a282d 92%{__libtoolize}
8af38820 93%{__aclocal}
c95a282d 94%{__autoconf}
89566316 95%{__autoheader}
c95a282d 96%{__automake}
ed81ca9b 97%configure \
ff803a61 98 --disable-silent-rules \
89566316
MB
99 --with-html-dir=%{_gtkdocdir} \
100 --enable-gtk-doc \
ed81ca9b
MB
101 --enable-static
102
c95a282d 103%{__make}
104
105%install
106rm -rf $RPM_BUILD_ROOT
107
108%{__make} install \
109 DESTDIR=$RPM_BUILD_ROOT
110
89566316 111%find_lang %{name}-1
c95a282d 112
113%clean
114rm -rf $RPM_BUILD_ROOT
115
97e15588
JB
116%post -p /sbin/ldconfig
117%postun -p /sbin/ldconfig
c95a282d 118
a070abb4 119%files -f %{name}-1.lang
c95a282d 120%defattr(644,root,root,755)
121%doc AUTHORS ChangeLog NEWS README
89566316 122%attr(755,root,root) %{_libdir}/libgdl-1.so.*.*.*
fb3064f6 123%attr(755,root,root) %ghost %{_libdir}/libgdl-1.so.3
c95a282d 124%{_datadir}/gdl
c95a282d 125
126%files devel
127%defattr(644,root,root,755)
89566316 128%attr(755,root,root) %{_libdir}/libgdl-1.so
c95a282d 129%{_includedir}/libgdl-1.0
89566316 130%{_libdir}/libgdl-1.la
89566316 131%{_pkgconfigdir}/gdl-1.0.pc
c95a282d 132
133%files static
134%defattr(644,root,root,755)
89566316 135%{_libdir}/libgdl-1.a
89566316
MB
136
137%files apidocs
138%defattr(644,root,root,755)
139%{_gtkdocdir}/gdl
This page took 0.075654 seconds and 4 git commands to generate.