id3lib/id3lib.spec

Fri, 16 Jan 2009 10:58:21 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Fri, 16 Jan 2009 10:58:21 +0100
changeset 92
645923d1e875
parent 75
b3a835aa617c
child 387
33ae2d61c751
permissions
-rw-r--r--

Correct and improve code logic, buildconf, and packaging. In particular:
1. Use descriptive variable names <var>libs instead of just <var>.
2. Although Nokia states in all Qt builds that 'NOTE: When linking
against OpenSSL, you can override the default library names
through OPENSSL_LIBS.' and even gives an example, their own
configuration logic rejects such an attempt. Correct this by
hard coding the OpenSSL library string in the configure script.
3. Consistently use the whitespace substitution [\t ] throughout.
4. Patch the buggy INCPATH of SQL plugin Qmake project files.
5. Add the 'x11' configuration variable to the qtconfig Qmake
project using the src/gui/gui.pro file as a model. This is
needed for qtconfig although not in other tools, because
the qtconfig buildconf indirectly includes qt_x11_p.h which
is dependent on X11 headers.
6. Avoid 'ld.so: fatal: hardware capability unsupported: SSE2 AMD_3DNow'
on platforms for which the config.tests/unix/[3dnow|sse2] succeed
although unsopported at run time by testing for the x86-64
instruction set at build time and regulating hardware capabilities.
7. Correctly install the desinger plugin by explicitly building it.
8. Remove custom plugin installation logic which is unnecessary.
9. Correct removal of temporary paths from shared object files.

michael@75 1 ##
michael@75 2 ## id3lib.spec -- OpenPKG RPM Specification
michael@75 3 ## Copyright (c) 2009 Michael Schloh von Bennewitz <michael@schloh.com>
michael@75 4 ##
michael@75 5 ## Permission to use, copy, modify, and distribute this software for
michael@75 6 ## any purpose with or without fee is hereby granted, provided that
michael@75 7 ## the above copyright notice and this permission notice appear in all
michael@75 8 ## copies.
michael@75 9 ##
michael@75 10 ## THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
michael@75 11 ## WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
michael@75 12 ## MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
michael@75 13 ## IN NO EVENT SHALL THE AUTHORS AND COPYRIGHT HOLDERS AND THEIR
michael@75 14 ## CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
michael@75 15 ## SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
michael@75 16 ## LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
michael@75 17 ## USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
michael@75 18 ## ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
michael@75 19 ## OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
michael@75 20 ## OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
michael@75 21 ## SUCH DAMAGE.
michael@75 22 ##
michael@75 23
michael@75 24
michael@75 25 # package information
michael@75 26 Name: id3lib
michael@75 27 Summary: ID3v1 and ID3v2 SDK
michael@75 28 URL: http://id3lib.sourceforge.net/
michael@75 29 Vendor: Thijmen Klok
michael@75 30 Packager: Michael Schloh von Bennewitz
michael@75 31 Distribution: Michael Schloh von Bennewitz
michael@75 32 Class: EVAL
michael@75 33 Group: Audio
michael@75 34 License: LGPL
michael@75 35 Version: 3.8.3
michael@75 36 Release: 20090106
michael@75 37
michael@75 38 # list of sources
michael@75 39 Source0: http://switch.dl.sourceforge.net/id3lib/id3lib-%{version}.tar.gz
michael@75 40
michael@75 41 # build information
michael@75 42 Prefix: %{l_prefix}
michael@75 43 BuildRoot: %{l_buildroot}
michael@85 44 BuildPreReq: OpenPKG, openpkg >= 20040130, make, gcc, gcc::with_cxx = yes
michael@75 45 PreReq: OpenPKG, openpkg >= 20040130
michael@75 46 AutoReq: no
michael@75 47 AutoReqProv: no
michael@75 48
michael@75 49 %description
michael@75 50 id3lib is an Opensource, cross platform software development library
michael@75 51 for reading, writing, and manipulating ID3v1 and ID3v2 tags. It is
michael@75 52 an ongoing project whose primary goals are full compliance with the
michael@75 53 ID3v2 standard, portability across several platforms, and providing
michael@75 54 a powerful and feature rich API with a highly stable and efficient
michael@75 55 implementation.
michael@75 56
michael@75 57 %track
michael@75 58 prog id3lib = {
michael@75 59 version = %{version}
michael@75 60 url = http://switch.dl.sourceforge.net/id3lib/
michael@75 61 regex = id3lib-(__VER__)\.tar\.gz
michael@75 62 }
michael@75 63
michael@75 64 %prep
michael@75 65 # unpack sources
michael@75 66 %setup -q
michael@75 67
michael@75 68 %build
michael@75 69 # prepare configuration
michael@75 70 CC="%{l_cc}" \
michael@75 71 CXX="%{l_cxx}" \
michael@75 72 CFLAGS="%{l_cflags -O}" \
michael@75 73 CXXFLAGS="%{l_cxxflags -O}" \
michael@75 74 CPPFLAGS="%{l_cppflags}" \
michael@75 75 LDFLAGS="%{l_ldflags}" \
michael@75 76 ./configure \
michael@75 77 --prefix=%{l_prefix} \
michael@75 78 --disable-shared
michael@75 79
michael@75 80 # build using parallel make
michael@75 81 %{l_make} %{l_mflags -O}
michael@75 82
michael@75 83 %install
michael@75 84 # remove previously existing installations
michael@75 85 rm -rf $RPM_BUILD_ROOT
michael@75 86
michael@75 87 # run the native installation logic
michael@75 88 %{l_make} %{l_mflags} install DESTDIR=$RPM_BUILD_ROOT
michael@75 89
michael@75 90 # strip binaries of symbols
michael@75 91 strip $RPM_BUILD_ROOT%{l_prefix}/bin/* >/dev/null 2>&1 || true
michael@75 92
michael@75 93 # determine installation files
michael@75 94 %{l_rpmtool} files -v -ofiles -r$RPM_BUILD_ROOT %{l_files_std}
michael@75 95
michael@75 96 %files -f files
michael@75 97
michael@75 98 %clean
michael@75 99 rm -rf $RPM_BUILD_ROOT
michael@75 100

mercurial