]> git.pld-linux.org Git - packages/zvbi.git/blob - zvbi.spec
- add missing gettextize macro.
[packages/zvbi.git] / zvbi.spec
1 Summary:        Raw VBI, Teletext and Closed Caption decoding library
2 Summary(pl):    Biblioteka dekoduj±ca VBI
3 Name:           zvbi
4 Version:        0.2.4
5 Release:        1
6 License:        GPL v2+
7 Group:          Libraries
8 Source0:        http://dl.sourceforge.net/sourceforge/zapping/%{name}-%{version}.tar.bz2
9 # Source0-md5:  1eb3698c3ff792646b3f79923f12b865
10 URL:            http://zapping.sourceforge.net/
11 BuildRequires:  autoconf
12 BuildRequires:  automake
13 BuildRequires:  libtool
14 BuildRequires:  libunicode-devel
15 BuildRequires:  doxygen
16 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
17
18 %description
19 VBI stands for Vertical Blanking Interval, a gap between the image
20 data transmitted in an analog video signal. This gap is used to
21 transmit AM modulated data for various data services like Teletext and
22 Closed Caption.
23
24 The zvbi library provides routines to read from raw VBI sampling
25 devices, to demodulate raw to sliced VBI data, and to interpret the
26 data of several popular services. It has been written for the Zapping
27 TV viewer <http://zapping.sourceforge.net/>.
28
29 %description -l pl
30 VBI jest skrótem od Vertical Blanking Interval, czyli interwa³
31 wygaszania pionowego, który jest odstêpem pomiêdzy danymi obrazu
32 transmitowanymi w analogowym sygnale wideo. Ten odstêp jest u¿ywany do
33 transmisji danych rozmaitych us³ug takich, jak teletekst i Closed
34 Caption, modulowanych w AM.
35
36 Biblioteka zvbi udostêpnia funkcje do odczytu z surowych urz±dzeñ
37 próbkuj±cych VBI, do demodulacji surowych danych VBI i do
38 interpretacji tych danych dla kilku popularnych us³ug. Zosta³a ona
39 napisana dla programu TV Zapping <http://zapping.sourceforge.net/>.
40
41 %package devel
42 Summary:        zvbi heades files
43 Summary(pl):    Pliki nag³ówkowe do zvbi
44 Group:          Development/Libraries
45 Requires:       %{name} = %{version}
46 Requires:       libunicode-devel
47
48 %description devel
49 Header files and documentation for the support library for the zvbi
50 library.
51
52 %description devel -l pl
53 Pliki nag³ówkowe i dokumentacja do zvbi.
54
55 %package static
56 Summary:        Static zvbi library
57 Summary(pl):    Biblioteka statyczna do zvbi
58 Group:          Development/Libraries
59 Requires:       %{name}-devel = %{version}
60
61 %description static
62 Static zvbi library.
63
64 %description static -l pl
65 Statyczna biblioteka zvbi.
66
67 %prep
68 %setup -q
69
70 #Throw away AM_ACLOCAL_INCLUDE with breaks aclocal regeneration
71 sed -e 's/AM_ACLOCAL_INCLUDE(m4)//g' configure.in > configure.in.new;
72 mv configure.in.new configure.in
73
74 %build
75 rm -f missing
76 %{__libtoolize}
77 %{__gettextize}
78 %{__aclocal}
79 %{__autoconf}
80 %{__automake}
81 %configure
82 %{__make}
83
84 %install
85 rm -rf $RPM_BUILD_ROOT
86
87 %{__make} install \
88         DESTDIR=$RPM_BUILD_ROOT
89
90 %find_lang %{name}
91
92 %post   -p /sbin/ldconfig
93 %postun -p /sbin/ldconfig
94
95 %clean
96 rm -rf $RPM_BUILD_ROOT
97
98 %files -f %{name}.lang
99 %defattr(644,root,root,755)
100 %doc AUTHORS BUGS NEWS README TODO
101 %attr(755,root,root) %{_libdir}/lib*.so.*.*
102
103 %files devel
104 %defattr(644,root,root,755)
105 %doc ChangeLog doc/html
106 %attr(755,root,root) %{_libdir}/lib*.so
107 %{_libdir}/lib*.la
108 %{_includedir}/*
109
110 %files static
111 %defattr(644,root,root,755)
112 %{_libdir}/lib*.a
This page took 0.110487 seconds and 3 git commands to generate.