source: projects/specs/trunk/lib/libd/libdv/libdv-vl.spec @ 521

Revision 521, 3.7 KB checked in by daisuke, 14 years ago (diff)

import VineSeed package specs

Line 
1Summary: A software codec for DV video.
2Summary(ja): DVビデオのためのソフトウエアコーデック
3Name: libdv
4Version: 1.0.0
5Release: 2%{?_dist_release}
6License: LGPL
7Group: System Environment/Libraries
8Source: http://prdownloads.sourceforge.net/libdv/%{name}-%{version}.tar.gz
9Patch0: libdv-0.104-amd64reloc.patch
10Patch1: libdv-1.0.0-gtk2.patch
11URL: http://libdv.sourceforge.net/
12BuildRoot: %{_tmppath}/%{name}-%{version}-root
13BuildRequires: pkgconfig >= 0.9.0
14BuildRequires: gtk2-devel
15
16%description
17The Quasar DV codec (libdv) is a software codec for DV video, the encoding
18format used by most digital camcorders, typically those that support the
19IEEE 1394 (a.k.a. FireWire or i.Link) interface. Libdv was developed
20according to the official standards for DV video: IEC 61834 and SMPTE 314M.
21
22
23%package devel
24Summary: Development package for libdv library.
25Summary(ja): libdv ライブラリの開発用パッケージ
26Group: Development/Libraries
27Requires: %{name} = %{version}-%{release}
28Requires: pkgconfig >= 0.9.0
29
30%description devel
31The Quasar DV codec (libdv) is a software codec for DV video, the encoding
32format used by most digital camcorders, typically those that support the
33IEEE 1394 (a.k.a. FireWire or i.Link) interface. Libdv was developed
34according to the official standards for DV video: IEC 61834 and SMPTE 314M.
35
36This is the libraries, include files and other resources that are used to
37incorporate libdv into applications.
38
39
40%package tools
41Summary: Basic tools to manipulate Digital Video streams
42Summary: デジタルビデオストリームを扱うための基本ツール
43Group: Applications/Multimedia
44Requires: %{name} = %{version}-%{release}
45
46%description tools
47This package contains some basic programs to display and encode
48digital video streams. This programs uses the Quasar DV codec (libdv),
49a software codec for DV video, the encoding format used by most
50digital camcorders, typically those that support the IEEE 1394
51(a.k.a. FireWire or i.Link) interface.
52
53%prep
54%setup -q
55%patch1 -p1 -b .gtk2
56
57%build
58libtoolize
59autoreconf -f -i
60%configure
61make %{?_smp_mflags}
62
63%install
64rm -rf %{buildroot}
65%makeinstall
66
67rm -f %{buildroot}%{_libdir}/*.{a,la}
68
69%post -p /sbin/ldconfig
70
71%postun -p /sbin/ldconfig
72
73%clean
74rm -rf %{buildroot}
75
76%files
77%defattr(-, root, root)
78%doc AUTHORS ChangeLog COPY* NEWS README* TODO
79%{_libdir}/*.so.*
80
81%files devel
82%defattr(-, root, root)
83%{_includedir}/%{name}
84%{_libdir}/*.so
85%{_libdir}/pkgconfig/*
86
87%files tools
88%defattr(-, root, root)
89%{_bindir}/*
90%{_mandir}/man1/*
91
92%changelog
93* Sun Jul 12 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 1.0.2-1
94- add Patch1 to build with gtk2
95  - add BR: gtk2-devel instead of gtk+-devel
96- remove static libs
97
98* Tue Aug 19 2008 Shu KONNO <owa@bg.wakwak.com> 1.0.0-1vl5
99- applied new versioning policy, spec in utf-8
100
101* Sun Feb 11 2007 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 1.0.0-0vl1
102- new upstream release
103- dropped Patch0 (merged into upstream)
104
105* Tue Oct 17 2006 NAKAMURA Kenta <kenta@vinelinux.org> 0.104-0vl2
106- added amd64reloc.patch
107
108* Fri Jun 10 2005 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 0.104-0vl1
109- new upstream release
110
111* Thu Apr 15 2004 Daisuke SUZUKI <daisuke@linux.or.jp> 0.102-0vl1
112- new upstream release
113
114* Fri Feb 20 2004 Daisuke SUZUKI <daisuke@linux.or.jp> 0.101-0vl1
115- initial build for Vine Linux
116- new upstream release
117
118* Mon Mar 31 2003 Matthias Saou <matthias.saou@est.une.marmotte.net>
119- Rebuilt for Red Hat Linux 9.
120- Exclude .la files.
121
122* Thu Jan 23 2003 Matthias Saou <matthias.saou@est.une.marmotte.net>
123- Update to 0.99.
124
125* Thu Sep 26 2002 Matthias Saou <matthias.saou@est.une.marmotte.net>
126- Rebuilt for Red Hat Linux 8.0.
127
128* Thu Aug  1 2002 Matthias Saou <matthias.saou@est.une.marmotte.net>
129- Spec file rewrite from the one included with the sources.
130
Note: See TracBrowser for help on using the repository browser.