mpg123/mpg123.spec

Thu, 04 Oct 2012 20:30:05 +0200

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Thu, 04 Oct 2012 20:30:05 +0200
changeset 715
c10fb90893b9
parent 367
e13c1f2b445e
permissions
-rw-r--r--

Correct out of date build configuration, porting to Solaris 11 network
link infrastructure and new libpcap logic. This additionally allows for
device drivers in subdirectories of /dev. Correct packaged nmap
personalities and signatures to work out of the box. Finally, hack
arpd logic to properly close sockets and quit on TERM by repeating
signaling in the run command script. Sadly, all this fails to correct
the run time behaviour of honeyd which fails to bind to the IP layer.

michael@39 1 ##
michael@39 2 ## mpg123.spec -- OpenPKG RPM Package Specification
michael@39 3 ## Copyright (c) 2000-2008 OpenPKG Foundation e.V. <http://openpkg.net/>
michael@39 4 ##
michael@39 5 ## Permission to use, copy, modify, and distribute this software for
michael@39 6 ## any purpose with or without fee is hereby granted, provided that
michael@39 7 ## the above copyright notice and this permission notice appear in all
michael@39 8 ## copies.
michael@39 9 ##
michael@39 10 ## THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
michael@39 11 ## WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
michael@39 12 ## MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
michael@39 13 ## IN NO EVENT SHALL THE AUTHORS AND COPYRIGHT HOLDERS AND THEIR
michael@39 14 ## CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
michael@39 15 ## SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
michael@39 16 ## LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
michael@39 17 ## USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
michael@39 18 ## ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
michael@39 19 ## OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
michael@39 20 ## OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
michael@39 21 ## SUCH DAMAGE.
michael@39 22 ##
michael@39 23
michael@39 24 # package information
michael@39 25 Name: mpg123
michael@39 26 Summary: MP3 Decoder/Player
michael@39 27 URL: http://www.mpg123.org/
michael@39 28 Vendor: Michael Hipp
michael@39 29 Packager: OpenPKG Foundation e.V.
michael@39 30 Distribution: OpenPKG Community
michael@39 31 Class: PLUS
michael@39 32 Group: Audio
michael@39 33 License: GPL
michael@638 34 Version: 1.14.4
michael@638 35 Release: 20120800
michael@40 36
michael@40 37 # package options
michael@40 38 %option with_dev no
michael@39 39
michael@39 40 # list of sources
michael@39 41 Source0: http://www.mpg123.de/download/mpg123-%{version}.tar.bz2
michael@39 42
michael@39 43 # build information
michael@85 44 BuildPreReq: OpenPKG, openpkg >= 20040130, make
michael@39 45 PreReq: OpenPKG, openpkg >= 20040130
michael@39 46
michael@39 47 %description
michael@39 48 mpg123 is a real time MPEG Audio Player for Layer 1,2 and Layer 3.
michael@39 49
michael@39 50 %track
michael@39 51 prog mpg123 = {
michael@39 52 version = %{version}
michael@39 53 url = http://www.mpg123.de/download.shtml
michael@39 54 regex = mpg123-(__VER__)\.tar\.bz2
michael@39 55 }
michael@39 56
michael@39 57 %prep
michael@39 58 %setup -q
michael@638 59 %{l_shtool} subst \
michael@638 60 -e 's;^\(DEFAULT_INCLUDES *=.*\);\1 -I. -I$(top_srcdir)/libltdl;' \
michael@638 61 -e 's;^\(mpg123_LDFLAGS *=.*\);\1 -static;' \
michael@638 62 src/output/Makefile.in \
michael@638 63 src/Makefile.in
michael@39 64
michael@39 65 %build
michael@39 66 CC="%{l_cc}" \
michael@39 67 CFLAGS="%{l_cflags -O}" \
michael@39 68 ./configure \
michael@39 69 --prefix=%{l_prefix} \
michael@39 70 --mandir=%{l_prefix}/man \
michael@39 71 --enable-static \
michael@40 72 --disable-shared
michael@39 73 %{l_make} %{l_mflags -O}
michael@39 74
michael@39 75 %install
michael@39 76 %{l_make} %{l_mflags} install DESTDIR="$RPM_BUILD_ROOT"
michael@40 77 %if "%{with_dev}" != "yes"
michael@40 78 rm -rf $RPM_BUILD_ROOT%{l_prefix}/include
michael@40 79 rm -rf $RPM_BUILD_ROOT%{l_prefix}/lib
michael@40 80 %else
michael@39 81 rm -f $RPM_BUILD_ROOT%{l_prefix}/lib/libmpg123.so*
michael@39 82 rm -f $RPM_BUILD_ROOT%{l_prefix}/lib/libmpg123.la
michael@39 83 rm -f $RPM_BUILD_ROOT%{l_prefix}/lib/mpg123/*.a
michael@40 84 %endif
michael@39 85 %{l_rpmtool} files -v -ofiles -r$RPM_BUILD_ROOT %{l_files_std}
michael@39 86
michael@39 87 %files -f files
michael@39 88
michael@39 89 %clean
michael@39 90

mercurial