Difference between revisions of "Gst-plugins-base"

From CBLFS
Jump to navigationJump to search
m (Non-Multilib)
(multilib fix for gobject-introspection)
 
(5 intermediate revisions by 3 users not shown)
Line 2: Line 2:
 
|-
 
|-
 
!Download Source:
 
!Download Source:
| http://gstreamer.freedesktop.org/src/gst-plugins-base/gst-plugins-base-0.10.10.tar.bz2
+
| http://gstreamer.freedesktop.org/src/gst-plugins-base/gst-plugins-base-{{Gst-plugins-base-Version}}.tar.bz2
 
|}
 
|}
  
 
----
 
----
 +
 +
{{Package-Introduction|GStreamer Base Plugins is a well-groomed and well-maintained collection of GStreamer plugins and elements, spanning the range of possible types of elements one would want to write for GStreamer. It also contains helper libraries and base classes useful for writing elements. A wide range of video and audio decoders, encoders, and filters are included.|http://www.gstreamer.net}}
  
 
== Dependencies ==
 
== Dependencies ==
  
 
=== Required ===
 
=== Required ===
* [[gstreamer]]
+
* [[gstreamer-core]]
 
* [[liboil]]
 
* [[liboil]]
  
Line 50: Line 52:
 
Compile the package:
 
Compile the package:
  
  CC="gcc ${BUILD32}" USE_ARCH=32 PKG_CONFIG_PATH="${PKG_CONFIG_PATH32}" \
+
  export CC="gcc ${BUILD32}"
 +
export USE_ARCH=32
 +
export PKG_CONFIG_PATH="${PKG_CONFIG_PATH32}"
 +
sed -i 's/gir-1.0/&-32/' $(grep -lr gir-1.0 *) &&
 
  ./configure --prefix=/usr &&
 
  ./configure --prefix=/usr &&
 
  make
 
  make
Line 57: Line 62:
  
 
  make install
 
  make install
 +
unset PKG_CONFIG_PATH
 +
unset USE_ARCH
 +
unset CC
  
 
=== N32 ===
 
=== N32 ===
Line 62: Line 70:
 
Compile the package:
 
Compile the package:
  
  CC="gcc ${BUILDN32}" USE_ARCH=n32 PKG_CONFIG_PATH="${PKG_CONFIG_PATHN32}" \
+
  export CC="gcc ${BUILDN32}"
 +
export USE_ARCH=n32
 +
export PKG_CONFIG_PATH="${PKG_CONFIG_PATHN32}"
 +
sed -i 's/gir-1.0/&-n32/' $(grep -lr gir-1.0 *) &&
 
  ./configure --prefix=/usr --libdir=/usr/lib32 &&
 
  ./configure --prefix=/usr --libdir=/usr/lib32 &&
 
  make
 
  make
Line 68: Line 79:
 
Install the package:
 
Install the package:
  
  make install &&
+
  make install
 +
unset PKG_CONFIG_PATH
 +
unset USE_ARCH
 +
unset CC
  
 
=== 64Bit ===
 
=== 64Bit ===
Line 74: Line 88:
 
Compile the package:
 
Compile the package:
  
  CC="gcc ${BUILD64}" USE_ARCH=64 PKG_CONFIG_PATH="${PKG_CONFIG_PATH64}" \
+
  export CC="gcc ${BUILD64}"
 +
export USE_ARCH=64
 +
export PKG_CONFIG_PATH="${PKG_CONFIG_PATH64}"
 +
sed -i 's/gir-1.0/&-64/' $(grep -lr gir-1.0 *) &&
 
  ./configure --prefix=/usr --libdir=/usr/lib64 &&
 
  ./configure --prefix=/usr --libdir=/usr/lib64 &&
 
  make
 
  make
Line 81: Line 98:
  
 
  make install
 
  make install
 +
unset PKG_CONFIG_PATH
 +
unset USE_ARCH
 +
unset CC
  
 
== Content ==
 
== Content ==
 
The GStreamer Base Plug-ins is a well-groomed and well-maintained collection of GStreamer plug-ins and elements, spanning the range of possible types of elements one would want to write for GStreamer. It also contains helper libraries and base classes useful for writing elements. A wide range of video and audio decoders, encoders, and filters are included.
 
  
  
Installed Programs: gst-visualise-0.10
+
Installed Programs: gst-visualise-{{Gstreamer-Version2}}
  
 
Installed Libraries: libgst*.{so,a} and numerous GStreamer plugins
 
Installed Libraries: libgst*.{so,a} and numerous GStreamer plugins
  
Installed Directories: /usr/include/gstreamer-0.10/gst/{too numerous to list} and /usr/share/gtk-doc/html/gst-plugins-base-libs-0.10
+
Installed Directories: /usr/include/gstreamer-{{Gstreamer-Version2}}/gst/{too numerous to list} and /usr/share/gtk-doc/html/gst-plugins-base-libs-{{Gstreamer-Version2}}
  
 
=== Short Descriptions ===
 
=== Short Descriptions ===
  
gst-visualise-0.10: is used to run a basic GStreamer pipeline to display a graphical visualisation of an audio stream.
+
gst-visualise-{{Gstreamer-Version2}}: is used to run a basic GStreamer pipeline to display a graphical visualisation of an audio stream.

Latest revision as of 01:50, 9 January 2010

Download Source: http://gstreamer.freedesktop.org/src/gst-plugins-base/gst-plugins-base-0.10.31.tar.bz2

Introduction to Gst-plugins-base

GStreamer Base Plugins is a well-groomed and well-maintained collection of GStreamer plugins and elements, spanning the range of possible types of elements one would want to write for GStreamer. It also contains helper libraries and base classes useful for writing elements. A wide range of video and audio decoders, encoders, and filters are included.

Project Homepage: http://www.gstreamer.net

Dependencies

Required

Optional

Required to build the API Documentation

Non-Multilib

Compile the package:

./configure --prefix=/usr &&
make

Install the package

make install

Multilib

32Bit

Compile the package:

export CC="gcc ${BUILD32}"
export USE_ARCH=32
export PKG_CONFIG_PATH="${PKG_CONFIG_PATH32}"
sed -i 's/gir-1.0/&-32/' $(grep -lr gir-1.0 *) &&
./configure --prefix=/usr &&
make

Install the package:

make install
unset PKG_CONFIG_PATH
unset USE_ARCH
unset CC

N32

Compile the package:

export CC="gcc ${BUILDN32}"
export USE_ARCH=n32
export PKG_CONFIG_PATH="${PKG_CONFIG_PATHN32}"
sed -i 's/gir-1.0/&-n32/' $(grep -lr gir-1.0 *) &&
./configure --prefix=/usr --libdir=/usr/lib32 &&
make

Install the package:

make install
unset PKG_CONFIG_PATH
unset USE_ARCH
unset CC

64Bit

Compile the package:

export CC="gcc ${BUILD64}"
export USE_ARCH=64
export PKG_CONFIG_PATH="${PKG_CONFIG_PATH64}"
sed -i 's/gir-1.0/&-64/' $(grep -lr gir-1.0 *) &&
./configure --prefix=/usr --libdir=/usr/lib64 &&
make

Install the package:

make install
unset PKG_CONFIG_PATH
unset USE_ARCH
unset CC

Content

Installed Programs: gst-visualise-0.10

Installed Libraries: libgst*.{so,a} and numerous GStreamer plugins

Installed Directories: /usr/include/gstreamer-0.10/gst/{too numerous to list} and /usr/share/gtk-doc/html/gst-plugins-base-libs-0.10

Short Descriptions

gst-visualise-0.10: is used to run a basic GStreamer pipeline to display a graphical visualisation of an audio stream.