Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to master grimoire by Thomas Orgis (63e758be8e2a74b789e12e154398c08e36a348f0)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: Thomas Orgis <scm AT sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] GIT changes to master grimoire by Thomas Orgis (63e758be8e2a74b789e12e154398c08e36a348f0)
  • Date: Wed, 19 Mar 2014 06:14:52 -0500

GIT changes to master grimoire by Thomas Orgis <sobukus AT sourcemage.org>:

ChangeLog | 3 +
video/avidemux3/BUILD | 8 ++++
video/avidemux3/DEPENDS | 90
++++++++++++++++++++++++++++++++++++++++++++++++
video/avidemux3/DETAILS | 22 +++++++++++
video/avidemux3/HISTORY | 2 +
video/avidemux3/INSTALL | 2 +
6 files changed, 127 insertions(+)

New commits:
commit 2cddf4adfe94d7bac0919a2657e9e9495cd5932b
Author: Thomas Orgis <sobukus AT sourcemage.org>
Commit: Thomas Orgis <sobukus AT sourcemage.org>

avidemux3: new spell

diff --git a/ChangeLog b/ChangeLog
index 6910076..cb2f1b9 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,6 @@
+2014-03-19 Thomas Orgis <sobukus AT sourcemage.org>
+ * video/avidemux3: new spell, version 3 of the video editor
+
2014-03-15 Florian Franzmann <siflfran AT hawo.stw.uni-erlangen.de>
* spelling/goldendict: new spell, a meta-dictionary

diff --git a/video/avidemux3/BUILD b/video/avidemux3/BUILD
new file mode 100755
index 0000000..c3b0730
--- /dev/null
+++ b/video/avidemux3/BUILD
@@ -0,0 +1,8 @@
+if is_depends_enabled $SPELL qt4; then
+ PATH="/usr/bin/qt4:$PATH"
+fi &&
+# Don't pollute /tmp.
+sed -i 's,/tmp/log,log,g' bootStrap.bash &&
+# We want avidemux3_cli so that the built avidemux3_jobs can
+# actually work.
+bash bootStrap.bash --with-cli $OPTS
diff --git a/video/avidemux3/DEPENDS b/video/avidemux3/DEPENDS
new file mode 100755
index 0000000..e770467
--- /dev/null
+++ b/video/avidemux3/DEPENDS
@@ -0,0 +1,90 @@
+depends cmake &&
+depends -sub CXX gcc &&
+depends libxml2 &&
+depends yasm &&
+depends sqlite &&
+
+# As of version 2.6.8, the gtk version just crashes (not just on SMGL).
+# See http://avidemux.org/smuf/index.php?topic=12721.0 .
+optional_depends gtk+3 "--with-gtk" "--without-gtk" \
+"for gtk+3 gui (unstable!)" &&
+optional_depends qt4 "--with-qt4" "--without-qt4" "for Qt gui" &&
+
+# Sorry, using the simple bootstrap script, so no selective disabling
+# of plugins. So what ever is present will be used.
+# Upside is: It's plugins, no strict linking.
+
+optional_depends libmad \
+ "" \
+ "" \
+ "for mp3 audio decoding" &&
+
+optional_depends a52dec \
+ "" \
+ "" \
+ "for AC3 audio decoding" &&
+
+optional_depends aften \
+ "" \
+ "" \
+ "for AC3 audio encoding" &&
+
+optional_depends libdca \
+ "" \
+ "" \
+ "for DTS audio decoding" &&
+
+optional_depends lame \
+ "" \
+ "" \
+ "for mp3 audio encoding" &&
+
+optional_depends libvorbis \
+ "" \
+ "" \
+ "for OGG/Vorbis support" &&
+
+optional_depends xvid \
+ "" \
+ "" \
+ "for xvid video encoding" &&
+
+optional_depends x264 \
+ "" \
+ "" \
+ "for H264 video encoding" &&
+
+optional_depends freetype2 \
+ "" \
+ "" \
+ "for subtitle rendering" &&
+
+optional_depends alsa-lib \
+ "" \
+ "" \
+ "for alsa audio output" &&
+
+optional_depends esound \
+ "" \
+ "" \
+ "for esd audio output" &&
+
+optional_depends JACK-DRIVER \
+ "" \
+ "" \
+ "for jack driver support" &&
+
+optional_depends libsamplerate \
+ "" \
+ "" \
+ "for resampling support" &&
+
+optional_depends faad2 \
+ "" \
+ "" \
+ "for AAC audio decoding" &&
+
+optional_depends sdl \
+ "" \
+ "" \
+ "for SDL audio/video output"
diff --git a/video/avidemux3/DETAILS b/video/avidemux3/DETAILS
new file mode 100755
index 0000000..e85c324
--- /dev/null
+++ b/video/avidemux3/DETAILS
@@ -0,0 +1,22 @@
+ SPELL=avidemux3
+ VERSION=2.6.8
+ SOURCE=${SPELL%3}_$VERSION.tar.gz
+SOURCE_DIRECTORY="$BUILD_DIRECTORY/${SPELL%3}_$VERSION"
+ SOURCE_URL[0]=http://download.berlios.de/${SPELL%3}/$SOURCE
+ SOURCE_URL[1]=http://download2.berlios.de/${SPELL%3}/$SOURCE
+ SOURCE_URL[2]=$SOURCEFORGE_URL/${SPELL%3}/$SOURCE
+ WEB_SITE=http://fixounet.free.fr/avidemux/
+
SOURCE_HASH=sha512:57a4042f1a9d46462850871d36950215c5ffb5b66ce2f2cde09d747e946c05adb7a550ac7763c96f4c1bcb2c39881407d9d88bc64c93053741091751495ba0b0
+ LICENSE[0]=GPL
+ ENTERED=20140319
+ KEYWORDS="video"
+ SHORT="free video editing application"
+cat << EOF
+Avidemux is a free video editor designed for simple cutting, filtering
+and encoding tasks. It supports many file types, including AVI, DVD
+compatible MPEG files, MP4 and ASF, using a variety of codecs. Tasks can
+be automated using projects, job queue and powerful scripting
+capabilities.
+
+This is the version bringing you avidemux3.
+EOF
diff --git a/video/avidemux3/HISTORY b/video/avidemux3/HISTORY
new file mode 100644
index 0000000..dd3e80f
--- /dev/null
+++ b/video/avidemux3/HISTORY
@@ -0,0 +1,2 @@
+2014-03-19 Thomas Orgis <sobukus AT sourcemage.org>
+ * DETAILS, BUILD, INSTALL, DEPENDS: Forked new spell off avidemux2
diff --git a/video/avidemux3/INSTALL b/video/avidemux3/INSTALL
new file mode 100755
index 0000000..e7cd929
--- /dev/null
+++ b/video/avidemux3/INSTALL
@@ -0,0 +1,2 @@
+# Stuff has been prepared in install/.
+cp -a install/usr/* "$INSTALL_ROOT/usr"



  • [SM-Commit] GIT changes to master grimoire by Thomas Orgis (63e758be8e2a74b789e12e154398c08e36a348f0), Thomas Orgis, 03/19/2014

Archive powered by MHonArc 2.6.24.

Top of Page