Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to master grimoire by Ivan Lezhnjov Jr (a0cb30ba566bbbb929b0aa61946c97de5249cd5e)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: Ivan Lezhnjov Jr <scm AT sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] GIT changes to master grimoire by Ivan Lezhnjov Jr (a0cb30ba566bbbb929b0aa61946c97de5249cd5e)
  • Date: Thu, 10 Apr 2008 13:50:00 -0500

GIT changes to master grimoire by Ivan Lezhnjov Jr
<ivan.lezhnjov.jr AT sourcemage.org>:

ChangeLog | 1 +
video/oxine/BUILD | 2 ++
video/oxine/CONFIGURE | 19 +++++++++++++++++++
video/oxine/DEPENDS | 36 ++++++++++++++++++++++++++++++++++++
video/oxine/DETAILS | 15 +++++++++++++++
video/oxine/HISTORY | 2 ++
6 files changed, 75 insertions(+)

New commits:
commit f9fb22e3517a8ee789fe45867a03c65bfbe4f271
Author: Ivan Lezhnjov Jr <ivan.lezhnjov.jr AT sourcemage.org>
Commit: Ivan Lezhnjov Jr <ivan.lezhnjov.jr AT sourcemage.org>

oxine: new spell, a lightweight pure OSD (on screen display) GUI for the
famous xine engine

diff --git a/ChangeLog b/ChangeLog
index 683ffc0..e4997a7 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -18,6 +18,7 @@
* video/pitivi: new spell, Open Source non-linear video editor
written in Python
* perl-cpan/perl-mrml: new spell, Perl implementation of MRML
technology
* perl-cpan/xml-handler-easytree-generator: new spell, EasyTree
structures generator similar to CGI.pm
+ * video/oxine: new spell, a lightweight pure OSD (on screen display)
GUI for the famous xine engine

2008-04-09 Vlad Glagolev <stealth AT sourcemage.org>
* gnu.gpg: imported F4850180 (Eric Blake <ebb9 AT byu.net>)
diff --git a/video/oxine/BUILD b/video/oxine/BUILD
new file mode 100755
index 0000000..f8e7751
--- /dev/null
+++ b/video/oxine/BUILD
@@ -0,0 +1,2 @@
+OPTS="$OXINE_OPTS $OPTS" &&
+default_build
diff --git a/video/oxine/CONFIGURE b/video/oxine/CONFIGURE
new file mode 100755
index 0000000..30931b5
--- /dev/null
+++ b/video/oxine/CONFIGURE
@@ -0,0 +1,19 @@
+config_query_option OXINE_OPTS "Enable support for debugging?" n \
+ "--enable-debug" \
+ "" &&
+
+config_query_option OXINE_OPTS "Enable support for background image
rebuilding?" y \
+ "--enable-background-rebuilding" \
+ "" &&
+
+config_query_option OXINE_OPTS "Activate SHOUTcast support?" y \
+ "" \
+ "--disable-shoutcast" &&
+
+config_query_option OXINE_OPTS "Activate YouTube support?" y \
+ "" \
+ "--disable-youtube" &&
+
+config_query_option OXINE_OPTS "Activate TV Links support?" y \
+ "" \
+ "--disable-tvlinks"
diff --git a/video/oxine/DEPENDS b/video/oxine/DEPENDS
new file mode 100755
index 0000000..0dcb7c8
--- /dev/null
+++ b/video/oxine/DEPENDS
@@ -0,0 +1,36 @@
+depends xorg-server &&
+depends xorg-libs &&
+depends util-linux &&
+
+optional_depends "lirc" "" "--disable-lirc" "Enable support for remote
controls with oxine?" &&
+optional_depends "gdk-pixbuf" "" "--disable-gdkpixbuf" "Activate gdk-pixbuf
support?" &&
+optional_depends "imagemagick" "" "--without-imagemagick" "Turn on
ImageMagick support?" &&
+optional_depends "curl" "" "--without-curl" "Turn on CURL support?" &&
+optional_depends "libcdio" "" "" "Activates ISO type identification feature"
&&
+optional_depends "mdsplib" "" "--disable-weather" "Activate weather reports
feature?" &&
+optional_depends "libjsw" "" "--without-jsw" "Allows to control oxine with
joystick device" &&
+optional_depends "hal" "" "--disable-hal" "Activate automatic detection of
media with HAL?" &&
+
+if is_depends_enabled $SPELL hal; then
+
+ depends dbus &&
+ depends glib
+
+fi
+
+optional_depends "libexif" "" "--disable-exif" "Adds support for image
metadata" &&
+optional_depends "pmount" "" "" "Use pmount to u- mount volumes recognized
by HAL?" &&
+optional_depends "eject" "" "" "Let oxine eject CDs with eject?" &&
+optional_depends "cdparanoia" "" "" "Add support for extraction of Audio
CDs?" &&
+
+if is_depends_enabled $SPELL cdparanoia; then
+
+ depends lame &&
+ optional_depends "vorbis-tools" "" "" "Compresses extracted CD tracks
using OGG format" &&
+ optional_depends "flac" "" "" "Creates lossless copies with FLAC"
+
+fi
+
+optional_depends "coreutils" "" "" "Adds support for creating DVD & VCD
images" &&
+optional_depends "avahi" "--enable-aex" "" "Activate Apple Airport Express
(AEX) support?"
+#optional_depends "vdr" "--enable-vdr" "" "Activate Video Disc Recorder
(VDR) support?"
diff --git a/video/oxine/DETAILS b/video/oxine/DETAILS
new file mode 100755
index 0000000..35c7281
--- /dev/null
+++ b/video/oxine/DETAILS
@@ -0,0 +1,15 @@
+ SPELL=oxine
+ VERSION=0.7.1
+ SOURCE=$SPELL-$VERSION.tar.gz
+SOURCE_DIRECTORY=$BUILD_DIRECTORY/$SPELL-$VERSION
+ SOURCE_URL[0]=http://heanet.dl.sourceforge.net/sourceforge/oxine/$SOURCE
+ WEB_SITE=http://oxine.sourceforge.net
+ ENTERED=20071209
+
SOURCE_HASH=sha512:96f6851f6277d97530b1f4d95d0f0843c9c3262d1a97ccc431e8a674441e06ca8fc24a65f83be5735f54e089d636e60fb297fa7958279b24004eecbc1711a257
+ LICENSE[0]=GPL
+ SHORT="OSD (on screen display) front end for xine-lib"
+cat << EOF
+oxine is a lightweight pure OSD (on screen display) GUI for the famous xine
+engine. oxine is particularly suited for set-top boxes or home entertainment
+systems.
+EOF
diff --git a/video/oxine/HISTORY b/video/oxine/HISTORY
new file mode 100644
index 0000000..1b63774
--- /dev/null
+++ b/video/oxine/HISTORY
@@ -0,0 +1,2 @@
+2007-03-22 Ivan Lezhnjov Jr. <ivan.lezhnjov.jr AT gmail.com>
+ * BUILD, CONFIGURE, DEPENDS, DETAILS, HISTORY: created this spell.




Archive powered by MHonArc 2.6.24.

Top of Page