2007-01-15 23:46:07 +00:00
|
|
|
|
#
|
2008-02-04 16:44:39 +00:00
|
|
|
|
# spec file for package zvbi (Version 0.2.26)
|
2007-01-15 23:46:07 +00:00
|
|
|
|
#
|
2008-02-04 16:44:39 +00:00
|
|
|
|
# Copyright (c) 2008 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
2007-01-15 23:46:07 +00:00
|
|
|
|
# This file and all modifications and additions to the pristine
|
|
|
|
|
# package are under the same license as the package itself.
|
|
|
|
|
#
|
2007-08-31 14:07:34 +00:00
|
|
|
|
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
2007-01-15 23:46:07 +00:00
|
|
|
|
#
|
|
|
|
|
|
|
|
|
|
# norootforbuild
|
|
|
|
|
|
2007-08-31 14:07:34 +00:00
|
|
|
|
Name: zvbi
|
|
|
|
|
BuildRequires: doxygen gcc-c++ xorg-x11-devel
|
2008-02-04 16:44:39 +00:00
|
|
|
|
Url: http://zapping.sf.net/
|
2007-08-31 14:07:34 +00:00
|
|
|
|
License: GPL v2 or later
|
|
|
|
|
Group: Development/Libraries/Other
|
2008-02-04 16:44:39 +00:00
|
|
|
|
AutoReqProv: on
|
|
|
|
|
Version: 0.2.26
|
|
|
|
|
Release: 1
|
2007-08-31 14:07:34 +00:00
|
|
|
|
Summary: VBI Decoding Library
|
|
|
|
|
Source: %{name}-%{version}.tar.bz2
|
|
|
|
|
Patch2: zvbi-glibc27.diff
|
|
|
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
2008-02-04 16:44:39 +00:00
|
|
|
|
|
2007-01-15 23:46:07 +00:00
|
|
|
|
%package devel
|
2007-08-31 14:07:34 +00:00
|
|
|
|
Group: Development/Libraries/Other
|
|
|
|
|
Summary: VBI decoding library - devel package
|
|
|
|
|
Requires: zvbi = %{version}
|
|
|
|
|
Requires: glibc-devel
|
2007-01-15 23:46:07 +00:00
|
|
|
|
|
|
|
|
|
%description devel
|
|
|
|
|
include files, static library, ...
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Authors:
|
|
|
|
|
--------
|
|
|
|
|
Edgar Toernig <froese@gmx.de>
|
|
|
|
|
Michael H. Schimek <mschimek@users.sourceforge.net>
|
|
|
|
|
I<EFBFBD>aki Garc<EFBFBD>a Etxebarria <garetxe@users.sourceforge.net>
|
|
|
|
|
|
|
|
|
|
%description
|
|
|
|
|
VBI stands for Vertical Blanking Interval, a gap between the image data
|
|
|
|
|
transmitted in an analog video signal. This gap is used to transmit AM
|
|
|
|
|
modulated data for various data services like Teletext and Closed
|
|
|
|
|
Caption.
|
|
|
|
|
|
|
|
|
|
The zvbi library provides routines to read from raw VBI sampling
|
|
|
|
|
devices, to demodulate raw to sliced VBI data, and to interpret the
|
|
|
|
|
data of several popular services.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Authors:
|
|
|
|
|
--------
|
|
|
|
|
Edgar Toernig <froese@gmx.de>
|
|
|
|
|
Michael H. Schimek <mschimek@users.sourceforge.net>
|
|
|
|
|
I<EFBFBD>aki Garc<EFBFBD>a Etxebarria <garetxe@users.sourceforge.net>
|
|
|
|
|
|
|
|
|
|
%prep
|
|
|
|
|
%setup -q
|
2007-08-31 14:07:34 +00:00
|
|
|
|
%patch2
|
2007-01-15 23:46:07 +00:00
|
|
|
|
|
|
|
|
|
%build
|
|
|
|
|
ACLOCAL="aclocal -I m4" autoreconf -fi
|
2008-02-04 16:44:39 +00:00
|
|
|
|
export CFLAGS="$RPM_OPT_FLAGS"
|
2007-01-15 23:46:07 +00:00
|
|
|
|
./configure --prefix=/usr \
|
|
|
|
|
--libdir=%{_libdir} \
|
2008-02-04 16:44:39 +00:00
|
|
|
|
--mandir=%{_mandir} \
|
|
|
|
|
--disable-static
|
2007-01-15 23:46:07 +00:00
|
|
|
|
make
|
|
|
|
|
|
|
|
|
|
%install
|
|
|
|
|
make DESTDIR="%{buildroot}" install
|
2008-02-04 16:44:39 +00:00
|
|
|
|
rm %buildroot%_libdir/*.la
|
2007-08-31 14:07:34 +00:00
|
|
|
|
%find_lang %name
|
|
|
|
|
|
|
|
|
|
%clean
|
|
|
|
|
rm -rf %buildroot
|
2007-01-15 23:46:07 +00:00
|
|
|
|
|
|
|
|
|
%post
|
|
|
|
|
%run_ldconfig
|
|
|
|
|
|
|
|
|
|
%postun
|
|
|
|
|
%run_ldconfig
|
|
|
|
|
|
2007-08-31 14:07:34 +00:00
|
|
|
|
%files -f %name.lang
|
2007-01-15 23:46:07 +00:00
|
|
|
|
%defattr(-,root,root)
|
2008-02-04 16:44:39 +00:00
|
|
|
|
%{_bindir}/*
|
2007-01-15 23:46:07 +00:00
|
|
|
|
%{_sbindir}/zvbid
|
|
|
|
|
%{_libdir}/libzvbi*.so.*
|
2008-02-04 16:44:39 +00:00
|
|
|
|
%{_mandir}/man1/*
|
|
|
|
|
%doc AUTHORS BUGS COPYING NEWS README TODO
|
2007-01-15 23:46:07 +00:00
|
|
|
|
|
|
|
|
|
%files devel
|
|
|
|
|
%defattr(-,root,root)
|
|
|
|
|
%{_includedir}/libzvbi.h
|
|
|
|
|
%{_libdir}/libzvbi*.so
|
|
|
|
|
%{_libdir}/pkgconfig/zvbi-0.2.pc
|
|
|
|
|
%doc doc/html
|
|
|
|
|
|
2007-08-31 14:07:34 +00:00
|
|
|
|
%changelog
|
2008-02-04 16:44:39 +00:00
|
|
|
|
* Mon Feb 04 2008 mmarek@suse.cz
|
|
|
|
|
- updated to 0.2.26
|
|
|
|
|
* new program zvbi-ntsc-cc: ntsc-cc Closed Caption decoder from
|
|
|
|
|
the Xawtv package using libzvbi for driver access and bit
|
|
|
|
|
slicing.
|
|
|
|
|
* support for raw VBI capturing with unknown field order
|
|
|
|
|
* lots of other enhancements and bugfixes
|
|
|
|
|
- don't install static libraries and *.la files
|
|
|
|
|
* Fri Aug 31 2007 mmarek@suse.cz
|
2007-08-31 14:07:34 +00:00
|
|
|
|
- fixed build with new glibc
|
|
|
|
|
- specfile cleanup
|
2008-02-04 16:44:39 +00:00
|
|
|
|
* Wed Jan 25 2006 mls@suse.de
|
2007-01-15 23:46:07 +00:00
|
|
|
|
- converted neededforbuild to BuildRequires
|
2008-02-04 16:44:39 +00:00
|
|
|
|
* Tue Sep 27 2005 mls@suse.de
|
2007-01-15 23:46:07 +00:00
|
|
|
|
- make devel package require base package
|
2008-02-04 16:44:39 +00:00
|
|
|
|
* Wed Jul 27 2005 kraxel@suse.de
|
2007-01-15 23:46:07 +00:00
|
|
|
|
- update to version 0.2.16.
|
2008-02-04 16:44:39 +00:00
|
|
|
|
* Mon Jan 24 2005 kraxel@suse.de
|
2007-01-15 23:46:07 +00:00
|
|
|
|
- update to version 0.2.13.
|
2008-02-04 16:44:39 +00:00
|
|
|
|
* Tue Jan 11 2005 kraxel@suse.de
|
2007-01-15 23:46:07 +00:00
|
|
|
|
- build fix: doygen needs libpng.
|
2008-02-04 16:44:39 +00:00
|
|
|
|
* Wed Jan 05 2005 kraxel@suse.de
|
2007-01-15 23:46:07 +00:00
|
|
|
|
- fix documentation build.
|
2008-02-04 16:44:39 +00:00
|
|
|
|
* Tue Jan 04 2005 kraxel@suse.de
|
2007-01-15 23:46:07 +00:00
|
|
|
|
- update to version 0.2.11
|
2008-02-04 16:44:39 +00:00
|
|
|
|
* Tue Jun 08 2004 kraxel@suse.de
|
2007-01-15 23:46:07 +00:00
|
|
|
|
- update to version 0.2.8
|
2008-02-04 16:44:39 +00:00
|
|
|
|
* Wed Feb 11 2004 kraxel@suse.de
|
2007-01-15 23:46:07 +00:00
|
|
|
|
- update to version 0.2.5
|
2008-02-04 16:44:39 +00:00
|
|
|
|
* Sun Nov 09 2003 adrian@suse.de
|
2007-01-15 23:46:07 +00:00
|
|
|
|
- add %%run_ldconfig
|
2008-02-04 16:44:39 +00:00
|
|
|
|
* Thu Jun 19 2003 ro@suse.de
|
2007-01-15 23:46:07 +00:00
|
|
|
|
- build with current gettext
|
2008-02-04 16:44:39 +00:00
|
|
|
|
* Tue May 27 2003 ro@suse.de
|
2007-01-15 23:46:07 +00:00
|
|
|
|
- add .la file to devel file list
|
2008-02-04 16:44:39 +00:00
|
|
|
|
* Mon Feb 17 2003 kraxel@suse.de
|
2007-01-15 23:46:07 +00:00
|
|
|
|
- updated to version 0.2.4 (adds v4l2 support)
|
2008-02-04 16:44:39 +00:00
|
|
|
|
* Fri Jan 17 2003 kraxel@suse.de
|
2007-01-15 23:46:07 +00:00
|
|
|
|
- fixed spec to make the package build on older distributions too.
|
2008-02-04 16:44:39 +00:00
|
|
|
|
* Tue Jan 14 2003 kraxel@suse.de
|
2007-01-15 23:46:07 +00:00
|
|
|
|
- updated to version 0.2.3
|
2008-02-04 16:44:39 +00:00
|
|
|
|
* Mon Nov 18 2002 schwab@suse.de
|
2007-01-15 23:46:07 +00:00
|
|
|
|
- Add AM_GNU_GETTEXT_VERSION.
|
2008-02-04 16:44:39 +00:00
|
|
|
|
* Wed Nov 13 2002 kraxel@suse.de
|
2007-01-15 23:46:07 +00:00
|
|
|
|
- updated to version 0.2.2
|
2008-02-04 16:44:39 +00:00
|
|
|
|
* Mon Nov 11 2002 ro@suse.de
|
2007-01-15 23:46:07 +00:00
|
|
|
|
- use x-devel-packages in neededforbuild
|
2008-02-04 16:44:39 +00:00
|
|
|
|
* Mon Jun 17 2002 kraxel@suse.de
|
2007-01-15 23:46:07 +00:00
|
|
|
|
- updated to version 0.2.1
|
2008-02-04 16:44:39 +00:00
|
|
|
|
* Tue Apr 30 2002 kraxel@suse.de
|
2007-01-15 23:46:07 +00:00
|
|
|
|
- fixed lib64 build problems.
|
2008-02-04 16:44:39 +00:00
|
|
|
|
* Thu Apr 11 2002 kraxel@suse.de
|
2007-01-15 23:46:07 +00:00
|
|
|
|
- initial release.
|