Browse Source

"Andreas V. Meier" <avmeier@web.de>:

adding avm/rtsp, a library to play real audio streams.


git-svn-id: http://www.rocklinux.org/svn/rock-linux/trunk@1867 c5f82cb5-29bc-0310-9cd0-bff59a50e3bc
rocklinux
Rene Rebe 21 years ago
parent
commit
647ee14440
4 changed files with 68 additions and 1 deletions
  1. +2
    -1
      Documentation/Developers/CHANGELOG-RENE
  2. +16
    -0
      package/avm/rtsp/rtsp.conf
  3. +45
    -0
      package/avm/rtsp/rtsp.desc
  4. +5
    -0
      package/jimmy/mplayer/mplayer.conf

+ 2
- 1
Documentation/Developers/CHANGELOG-RENE

@ -1,7 +1,8 @@
*) 2003-11-27 (2.0.0-rc3 - 2.0.0-rc4)
*) 2003-11-26 (2.0.0-rc3 - 2.0.0-rc4)
- improved /lib .{a,la} migration
- Andreas V. Meier: added avm/rtsp and enabled support in mplayer
*) 2003-11-25 (2.0.0-rc3 - 2.0.0-rc4)

+ 16
- 0
package/avm/rtsp/rtsp.conf

@ -0,0 +1,16 @@
rtsp_pm(){
echo "creating Makefiles for linux"
./genMakefiles linux
}
rtsp_postm(){
echo "installing to $libdir/live"
cd .. ; cp -r live/* $libdir/
}
runconf=0
makeinstopt=''
hook_add premake 3 "rtsp_prem"
hook_add postmake 3 "rtsp_postm"

+ 45
- 0
package/avm/rtsp/rtsp.desc

@ -0,0 +1,45 @@
[COPY] --- ROCK-COPYRIGHT-NOTE-BEGIN ---
[COPY]
[COPY] This copyright note is auto-generated by ./scripts/Create-CopyPatch.
[COPY] Please add additional copyright information _after_ the line containing
[COPY] the ROCK-COPYRIGHT-NOTE-END tag. Otherwise it might get removed by
[COPY] the ./scripts/Create-CopyPatch script. Do not edit this copyright text!
[COPY]
[COPY] ROCK Linux: rock-src/package/avm/rtsp/rtsp.desc
[COPY] ROCK Linux is Copyright (C) 1998 - 2003 Clifford Wolf
[COPY]
[COPY] This program is free software; you can redistribute it and/or modify
[COPY] it under the terms of the GNU General Public License as published by
[COPY] the Free Software Foundation; either version 2 of the License, or
[COPY] (at your option) any later version. A copy of the GNU General Public
[COPY] License can be found at Documentation/COPYING.
[COPY]
[COPY] Many people helped and are helping developing ROCK Linux. Please
[COPY] have a look at http://www.rocklinux.org/ and the Documentation/TEAM
[COPY] file for details.
[COPY]
[COPY] --- ROCK-COPYRIGHT-NOTE-END ---
[I] A set of C++ libraries for multimedia streaming
[T] This code forms a set of C++ libraries for multimedia streaming, using
[T] open standard protocols (RTP/RTCP, RTSP, SIP). These libraries - which can
[T] be compiled for Unix (including Linux and Mac OS X), Windows, and QNX (and
[T] other POSIX-compliant systems) - can be used to build streaming
[T] applications.
[U] http://www.live.com/liveMedia/
[A] Developers at live.com
[M] Andreas V. 'netrunner' Meier <avmeier@web.de>
[C] extra/multimedia
[L] LGPL
[S] Stable
[V] 2003.11.25
[P] X -----5---9 800.000
[D] 0 live.2003.11.25.tar.gz http://www.live.com/liveMedia/public/

+ 5
- 0
package/jimmy/mplayer/mplayer.conf

@ -63,6 +63,9 @@ confopt="$confopt --enable-linux-devfs --with-extraincdir=/usr/include/libpng"
confopt="$confopt --enable-fbdev --enable-largefiles --enable-streaming"
confopt="$confopt --enable-shared-pp"
# enable live support if present
[ -f $root/var/adm/package/rtsp ] && var_append confopt " " "--enable-live"
if [ $arch = x86 ] ; then
var_append confopt " " "--with-win32libdir=$root/$prefix/lib/win32"
fi
@ -75,6 +78,8 @@ if test "$ROCKCFG_PKG_MPLAYER_BLINKENLIGHTS" != 0 ; then
var_append confopt " " "--enable-bl"
fi
var_append confopt " " "--enable-live"
type -p gtk-config > /dev/null && var_append confopt " " "--enable-gui"
test "$ROCKCFG_DISABLE_NLS" = 1 && var_append confopt " " "--disable-i18n"

Loading…
Cancel
Save