libdvdread/libdvdread.spec

Fri, 11 Mar 2011 21:30:26 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Fri, 11 Mar 2011 21:30:26 +0100
changeset 0
4f133201e207
child 1
4667f24fe848
permissions
-rw-r--r--

Import package vendor original specs for necessary manipulations.

michael@0 1 Name: libdvdread
michael@0 2 Version: 4.1.4
michael@0 3 Release: 1.4
michael@0 4 Summary: A library for reading DVD video discs based on Ogle code
michael@0 5
michael@0 6 Group: System Environment/Libraries
michael@0 7 License: GPLv2+
michael@0 8 #Source: http://www.mplayerhq.hu/MPlayer/releases/dvdnav/libdvdread-%{version}.tar.bz2
michael@0 9 # svn export svn://svn.mplayerhq.hu/dvdnav/trunk/libdvdread
michael@0 10 Source: %{name}-svn1188.tar.bz2
michael@0 11 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
michael@0 12 # fix endianness issues on bigendian platforms
michael@0 13 Patch0: %{name}-endian.patch
michael@0 14 # dvdread-config: use pkg-config instead of hard-coded
michael@0 15 # multilib-conflicting values
michael@0 16 Patch1: %{name}-multilib.patch
michael@0 17
michael@0 18 %description
michael@0 19 libdvdread provides a simple foundation for reading DVD video disks.
michael@0 20 It provides the functionality that is required to access many DVDs.
michael@0 21
michael@0 22 %package devel
michael@0 23 Summary: Development files for libdvdread
michael@0 24 Group: Development/Libraries
michael@0 25 Requires: %{name} = %{version}-%{release}
michael@0 26 Requires: pkgconfig
michael@0 27
michael@0 28 %description devel
michael@0 29 libdvdread provides a simple foundation for reading DVD video disks.
michael@0 30 It provides the functionality that is required to access many DVDs.
michael@0 31
michael@0 32 This package contains development files for libdvdread.
michael@0 33
michael@0 34 %prep
michael@0 35 %setup -q
michael@0 36 %patch0 -p1 -b .endian
michael@0 37 %patch1 -p1 -b .multilib
michael@0 38
michael@0 39 %build
michael@0 40 ./configure2 \
michael@0 41 --disable-opts \
michael@0 42 --disable-static \
michael@0 43 --disable-strip \
michael@0 44 --extra-cflags="%{optflags}" \
michael@0 45 --libdir=%{_libdir} \
michael@0 46 --prefix=%{_prefix} \
michael@0 47 --shlibdir=%{_libdir} \
michael@0 48
michael@0 49 %{__make} %{?_smp_mflags}
michael@0 50
michael@0 51 %install
michael@0 52 %{__rm} -rf %{buildroot}
michael@0 53 %{__make} install DESTDIR=%{buildroot}
michael@0 54
michael@0 55 %clean
michael@0 56 rm -rf %{buildroot}
michael@0 57
michael@0 58 %post -p /sbin/ldconfig
michael@0 59
michael@0 60 %postun -p /sbin/ldconfig
michael@0 61
michael@0 62 %files
michael@0 63 %defattr(-,root,root,-)
michael@0 64 %doc AUTHORS COPYING ChangeLog README
michael@0 65 %{_libdir}/libdvdread.so.*
michael@0 66
michael@0 67 %files devel
michael@0 68 %defattr(-,root,root,-)
michael@0 69 %doc DEVELOPMENT-POLICY.txt TODO
michael@0 70 %{_bindir}/dvdread-config
michael@0 71 %{_includedir}/dvdread
michael@0 72 %{_libdir}/libdvdread.so
michael@0 73 %{_libdir}/pkgconfig/dvdread.pc
michael@0 74
michael@0 75 %changelog
michael@0 76 * Mon Nov 1 2010 Kozinov Ivan <kozinov@gmail.com> - 4.1.4-0.3.svn1188
michael@0 77 - Build for MeeGo 1.1
michael@0 78
michael@0 79 * Sat Dec 12 2009 Dominik Mierzejewski <rpm@greysector.net> 4.1.4-0.2.svn1188
michael@0 80 - updated to SVN r1188 (rhbz#540155)
michael@0 81
michael@0 82 * Sun Sep 27 2009 Dominik Mierzejewski <rpm@greysector.net> 4.1.4-0.1.svn1183
michael@0 83 - updated to SVN r1183
michael@0 84 - simplified multilib patch
michael@0 85 - fixed endianness issues (rhbz#442508)
michael@0 86 - added some docs
michael@0 87
michael@0 88 * Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4.1.3-4
michael@0 89 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
michael@0 90
michael@0 91 * Sat Jun 27 2009 Rex Dieter <rdieter@fedoraproject.org> - 4.1.3-3
michael@0 92 - fix multilib conflict (#477687)
michael@0 93
michael@0 94 * Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4.1.3-2
michael@0 95 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
michael@0 96
michael@0 97 * Tue Sep 09 2008 Dominik Mierzejewski <rpm@greysector.net> 4.1.3-1
michael@0 98 - update to 4.1.3 final
michael@0 99
michael@0 100 * Sun Aug 31 2008 Dominik Mierzejewski <rpm@greysector.net> 4.1.3-0.3.rc1
michael@0 101 - update to 4.1.3rc1
michael@0 102 - fix include path
michael@0 103
michael@0 104 * Thu Jul 17 2008 Dominik Mierzejewski <rpm@greysector.net> 4.1.3-0.2
michael@0 105 - resurrect package from new upstream
michael@0 106
michael@0 107 * Sun Jan 27 2008 Dominik Mierzejewski <rpm@greysector.net> 0.9.7-4
michael@0 108 - fix missing <inttypes.h> include (bug 428910)
michael@0 109
michael@0 110 * Wed Aug 29 2007 Dominik Mierzejewski <rpm@greysector.net> 0.9.7-3
michael@0 111 - rebuild for BuildID
michael@0 112 - update license tag
michael@0 113
michael@0 114 * Wed Nov 26 2006 Dominik Mierzejewski <rpm@greysector.net> 0.9.7-2
michael@0 115 - Rebuild.
michael@0 116
michael@0 117 * Fri Oct 6 2006 Dams <anvil[AT]livna.org> - 0.9.7-1
michael@0 118 - Updated to 0.9.7
michael@0 119
michael@0 120 * Wed Sep 20 2006 Ville Skyttä <ville.skytta at iki.fi> - 0.9.6-2
michael@0 121 - Rebuild.
michael@0 122
michael@0 123 * Sun Jul 23 2006 Ville Skyttä <ville.skytta at iki.fi> - 0.9.6-1
michael@0 124 - 0.9.6.
michael@0 125 - Specfile cleanup.
michael@0 126
michael@0 127 * Thu Mar 16 2006 Ville Skyttä <ville.skytta at iki.fi> - 0.9.4-4
michael@0 128 - Fix linking with libdl on x86_64.
michael@0 129 - Don't ship static libs.
michael@0 130 - Build with dependency tracking disabled.
michael@0 131 - Convert specfile and docs to UTF-8.
michael@0 132 - Improve package descriptions.
michael@0 133
michael@0 134 * Thu Mar 16 2006 Dams <anvil[AT]livna.org> - 0.9.4-3
michael@0 135 - We BuildConflicting libdvdcss-devel at build time
michael@0 136
michael@0 137 * Mon Mar 13 2006 Thorsten Leemhuis <fedora[AT]leemhuis.info> 0.9.4-2
michael@0 138 - Drop Epoch completely
michael@0 139
michael@0 140 * Thu Mar 09 2006 Andreas Bierfert <andreas.bierfert[AT]lowlatency.de>
michael@0 141 - switch to new release field
michael@0 142 - drop Epoch
michael@0 143
michael@0 144 * Tue Feb 28 2006 Andreas Bierfert <andreas.bierfert[AT]lowlatency.de>
michael@0 145 - add dist
michael@0 146
michael@0 147 * Thu Apr 3 2003 Marius Johndal <mariuslj at ifi.uio.no> 0:0.9.4-0.fdr.1
michael@0 148 - Initial Fedora RPM release.
michael@0 149
michael@0 150 * Mon Mar 31 2003 Matthias Saou <matthias.saou@est.une.marmotte.net>
michael@0 151 - Rebuilt for Red Hat Linux 9.
michael@0 152 - Exclude .la file.
michael@0 153
michael@0 154 * Sun Feb 16 2003 Matthias Saou <matthias.saou@est.une.marmotte.net>
michael@0 155 - Update to 0.9.4.
michael@0 156
michael@0 157 * Thu Sep 26 2002 Matthias Saou <matthias.saou@est.une.marmotte.net>
michael@0 158 - Updated to the latest cvs release.
michael@0 159 - Rebuilt for Red Hat Linux 8.0.
michael@0 160 - Updated URLs.
michael@0 161
michael@0 162 * Mon May 27 2002 Matthias Saou <matthias.saou@est.une.marmotte.net>
michael@0 163 - Update to 0.9.3.
michael@0 164
michael@0 165 * Wed May 15 2002 Matthias Saou <matthias.saou@est.une.marmotte.net>
michael@0 166 - Fixed the libdvdcss.so.0/1/2 problem again.
michael@0 167
michael@0 168 * Thu May 2 2002 Matthias Saou <matthias.saou@est.une.marmotte.net>
michael@0 169 - Back to using libdvdcss 1.1.1, now it's all merged and fine.
michael@0 170 - Rebuilt against Red Hat Linux 7.3.
michael@0 171 - Added the %{?_smp_mflags} expansion.
michael@0 172
michael@0 173 * Sat Jan 12 2002 Matthias Saou <matthias.saou@est.une.marmotte.net>
michael@0 174 - Reverted back to using libdvdcss 0.0.3.ogle3 since it works MUCH better
michael@0 175 than 1.0.x. Doh!
michael@0 176
michael@0 177 * Tue Nov 13 2001 Matthias Saou <matthias.saou@est.une.marmotte.net>
michael@0 178 - Rebuilt against libdvdcss 1.0.0 (added a patch).
michael@0 179
michael@0 180 * Mon Oct 29 2001 Matthias Saou <matthias.saou@est.une.marmotte.net>
michael@0 181 - Spec file cleanup and fixes.
michael@0 182
michael@0 183 * Thu Oct 11 2001 Martin Norbäck <d95mback@dtek.chalmers.se>
michael@0 184 - Updated to version 0.9.2
michael@0 185
michael@0 186 * Tue Sep 25 2001 Martin Norbäck <d95mback@dtek.chalmers.se>
michael@0 187 - Added small patch to fix the ldopen of libdvdcss
michael@0 188
michael@0 189 * Tue Sep 18 2001 Martin Norbäck <d95mback@dtek.chalmers.se>
michael@0 190 - Updated to version 0.9.1
michael@0 191
michael@0 192 * Fri Sep 14 2001 Martin Norbäck <d95mback@dtek.chalmers.se>
michael@0 193 - Split into normal and devel package
michael@0 194
michael@0 195 * Thu Sep 6 2001 Martin Norbäck <d95mback@dtek.chalmers.se>
michael@0 196 - Updated to version 0.9.0
michael@0 197
michael@0 198 * Tue Jul 03 2001 Martin Norbäck <d95mback@dtek.chalmers.se>
michael@0 199 - initial version
michael@0 200
michael@0 201

mercurial