source: projects/specs/trunk/lib/libc/libcdio-paranoia/libcdio-paranoia-vl.spec @ 12492

Revision 12492, 4.0 KB checked in by tomop, 4 years ago (diff)

updated 5 packages

glib2-2.66.0-1

gvfs-1.46.0-1

libcddb-1.3.2-10

libcdio-paranoia-10.2+2.0.1-1

libcdio-2.1.0-1

Line 
1Summary: CD paranoia on top of libcdio
2Name: libcdio-paranoia
3Version: 10.2+2.0.1
4Release: 1%{?_dist_release}
5Group: system
6Vendor: Project Vine
7Distribution: Vine Linux
8
9License: GPLv2+ and LGPLv2+
10URL: http://www.gnu.org/software/libcdio/
11Source0: http://ftp.gnu.org/gnu/libcdio/libcdio-paranoia-%{version}.tar.bz2
12Patch0: libcdio-paranoia-manpage.patch
13BuildRequires: pkgconfig
14BuildRequires: gettext-devel
15BuildRequires: chrpath
16BuildRequires: libcdio-devel
17
18%description
19This CDDA reader distribution ('libcdio-cdparanoia') reads audio from the
20CDROM directly as data, with no analog step between, and writes the
21data to a file or pipe as .wav, .aifc or as raw 16 bit linear PCM.
22
23Split off from libcdio to allow more flexible licensing and to be compatible
24with cdparanoia-III-10.2's license. And also, libcdio is just too large.
25
26
27%package devel
28Summary: Header files and libraries for %{name}
29Group: programming
30Requires: %{name} = %{version}-%{release}
31
32%description devel
33This package contains header files and libraries for %{name}.
34
35
36%debug_package
37
38
39%prep
40%setup -q
41%patch0 -p1
42
43# fix pkgconfig files
44sed -i -e 's,-I${includedir},-I${includedir}/cdio,g' libcdio_paranoia.pc.in
45sed -i -e 's,-I${includedir},-I${includedir}/cdio,g' libcdio_cdda.pc.in
46
47f=doc/ja/cd-paranoia.1.in
48iconv -f euc-jp -t utf-8 -o $f.utf8 $f && mv $f.utf8 $f
49iconv -f ISO88591 -t utf-8 -o THANKS.utf8 THANKS && mv THANKS.utf8 THANKS
50
51
52%build
53%configure \
54        --disable-dependency-tracking \
55        --disable-static \
56        --disable-rpath
57make %{?_smp_mflags}
58
59
60%install
61make install DESTDIR=$RPM_BUILD_ROOT
62
63find $RPM_BUILD_ROOT -type f -name "*.la" -exec rm -f {} ';'
64
65mv $RPM_BUILD_ROOT%{_mandir}/{jp,ja}
66
67# copy include files to an additional directory for backward compatibility
68# this is where most software still expects those files
69cp -a $RPM_BUILD_ROOT%{_includedir}/cdio/paranoia/*.h $RPM_BUILD_ROOT%{_includedir}/cdio/
70
71# remove rpath
72chrpath --delete $RPM_BUILD_ROOT%{_bindir}/*
73chrpath --delete $RPM_BUILD_ROOT%{_libdir}/*.so.*
74
75
76%post -p /sbin/ldconfig
77%postun -p /sbin/ldconfig
78
79
80%files
81%defattr(-,root,root,-)
82%license COPYING COPYING-GPL COPYING-LGPL
83%doc AUTHORS NEWS README THANKS
84%{_bindir}/*
85%{_libdir}/*.so.*
86%{_mandir}/man1/*
87%lang(ja) %{_mandir}/ja/man1/*
88
89%files devel
90%defattr(-,root,root,-)
91%doc doc/overlapdef.txt
92%{_includedir}/cdio/*
93%{_libdir}/*.so
94%{_libdir}/pkgconfig/*.pc
95
96
97%changelog
98* Mon Sep 14 2020 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 10.2*2.0.1-1
99- new upstream release.
100
101* Sat Jul  2 2016 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 10.2+0.93+1
102- new upstream release.
103
104* Sun Jul 13 2014 Yoji TOYODA <bsyamato@sea.plala.or.jp> 10.2+0.90+1-1
105- initial build for Vine Linux
106
107
108* Mon Dec 16 2013 Adrian Reber <adrian@lisas.de> - 10.2+0.90+1-2
109- Rebuilt for new libcdio-0.92
110
111* Tue Aug 20 2013 Adrian Reber <adrian@lisas.de> - 10.2+0.90+1-1
112- updated to 10.2+0.90+1
113- removed all patches previously taken from git
114
115* Wed Jul 31 2013 Frantisek Kluknavsky <fkluknav@redhat.com> - 10.2+0.90-8
116- long name in manual page caused 'whatis' to misbehave
117
118* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 10.2+0.90-7
119- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
120
121* Fri Jan 11 2013 Adrian Reber <adrian@lisas.de> - 10.2+0.90-6
122- remove sed changes on non-installed file
123- fix -devel subpackage Require
124
125* Sat Dec 22 2012 Adrian Reber <adrian@lisas.de> - 10.2+0.90-5
126- provide include files also in the paranoia directory (like in upstream's git)
127
128* Thu Nov 22 2012 Adrian Reber <adrian@lisas.de> - 10.2+0.90-4
129- fix pkgconfig files to point to right include directory
130
131* Mon Nov 05 2012 Adrian Reber <adrian@lisas.de> - 10.2+0.90-3
132- included upstreamed patches which are changing the license
133  headers to be LGPLv2+ for the library parts and GPLv2+ for the
134  binaries
135
136* Tue Oct 30 2012 Adrian Reber <adrian@lisas.de> - 10.2+0.90-2
137- added missing files from git: COPYING-GPL and COPYING-LGPL
138- added patch from git for missing pkgconfig requires
139  and fixed FSF address
140
141* Mon Oct 29 2012 Adrian Reber <adrian@lisas.de> - 10.2+0.90-1
142- initial release
Note: See TracBrowser for help on using the repository browser.