Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to master grimoire by Vlad Glagolev (c77ddd96433d12c658b5198043ef4653987cf9cf)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: Vlad Glagolev <scm AT sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] GIT changes to master grimoire by Vlad Glagolev (c77ddd96433d12c658b5198043ef4653987cf9cf)
  • Date: Sun, 27 Apr 2014 04:22:51 -0500

GIT changes to master grimoire by Vlad Glagolev <stealth AT sourcemage.org>:

graphics/optipng/BUILD | 1
graphics/optipng/DETAILS | 1
graphics/optipng/HISTORY | 4 +
video/mpv/CONFIGURE | 24 +++++++++-
video/mpv/DEPENDS | 108
+++++++++++++++++++++++++----------------------
video/mpv/DETAILS | 4 -
video/mpv/HISTORY | 6 ++
7 files changed, 94 insertions(+), 54 deletions(-)

New commits:
commit c77ddd96433d12c658b5198043ef4653987cf9cf
Author: Vlad Glagolev <stealth AT sourcemage.org>
Commit: Vlad Glagolev <stealth AT sourcemage.org>

optipng: fixed man directory

commit c2008643dd280a02ee96aa6000d18c0da42575a7
Author: Vlad Glagolev <stealth AT sourcemage.org>
Commit: Vlad Glagolev <stealth AT sourcemage.org>

mpv: => 0.3.8

diff --git a/graphics/optipng/BUILD b/graphics/optipng/BUILD
index 2f26843..f9af227 100755
--- a/graphics/optipng/BUILD
+++ b/graphics/optipng/BUILD
@@ -1,4 +1,5 @@
./configure -prefix="$INSTALL_ROOT/usr" \
+ -mandir="$INSTALL_ROOT/usr/share/man" \
$OPTS &&

make
diff --git a/graphics/optipng/DETAILS b/graphics/optipng/DETAILS
index 19c70a0..e1dbf94 100755
--- a/graphics/optipng/DETAILS
+++ b/graphics/optipng/DETAILS
@@ -1,6 +1,7 @@
SPELL=optipng
VERSION=0.7.5
SECURITY_PATCH=2
+ PATCHLEVEL=1
SOURCE=$SPELL-$VERSION.tar.gz
SOURCE_URL[0]=$SOURCEFORGE_URL/$SPELL/$SOURCE

SOURCE_HASH=sha512:6f319965739235387e99244dda5f52533e22b7040301cf680180e383f24361819f66cb3adf1a90923e9509ed08d55bbe442ec363310c385fcf70f551febfbb6f
diff --git a/graphics/optipng/HISTORY b/graphics/optipng/HISTORY
index 6379d6d..ed09390 100644
--- a/graphics/optipng/HISTORY
+++ b/graphics/optipng/HISTORY
@@ -1,3 +1,7 @@
+2014-04-27 Vlad Glagolev <stealth AT sourcemage.org>
+ * DETAILS: PATCHLEVEL=1
+ * BUILD: fixed man directory
+
2014-03-26 Vlad Glagolev <stealth AT sourcemage.org>
* DETAILS: updated spell to 0.7.5

diff --git a/video/mpv/CONFIGURE b/video/mpv/CONFIGURE
index 305d101..dc74197 100755
--- a/video/mpv/CONFIGURE
+++ b/video/mpv/CONFIGURE
@@ -1,9 +1,29 @@
default_configure &&

config_query_option MPV_OPTS "Compile-in debugging information?" y \
- "" \
+ "--enable-debug-build" \
"--disable-debug-build" &&

+config_query_option MPV_OPTS "Enable Joystick input support?" n \
+ "--enable-joystick" \
+ "--disable-joystick" &&
+
+config_query_option MPV_OPTS "Enable encoding functionality?" y \
+ "--enable-encoding" \
+ "--disable-encoding" &&
+
+config_query_option MPV_OPTS "Enable DVB (Digital Video Broadcast) support?"
y \
+ "--enable-dvb" \
+ "--disable-dvb" &&
+
+if list_find "$MPV_OPTS" "--enable-dvb"; then
+ config_query_option MPV_OPTS "Enable DVB input module?" y \
+ "--enable-dvbin" \
+ "--disable-dvbin"
+else
+ list_add MPV_OPTS "--disable-dvbin"
+fi &&
+
config_query_option MPV_OPTS "Enable VCD (VideoCD) support?" y \
- "" \
+ "--enable-vcd" \
"--disable-vcd"
diff --git a/video/mpv/DEPENDS b/video/mpv/DEPENDS
index 7c8bb3e..80585e4 100755
--- a/video/mpv/DEPENDS
+++ b/video/mpv/DEPENDS
@@ -1,25 +1,25 @@
depends perl &&
depends python &&
-depends lua &&
depends -sub STABLE ffmpeg &&

+optional_depends lua \
+ "--enable-lua" \
+ "--disable-lua" \
+ "for Lua scripting support" &&
+
optional_depends docutils \
- "" \
- "--disable-manpage" \
+ "--enable-manpage-build" \
+ "--disable-manpage-build" \
"to build and install manpage" &&

optional_depends texlive \
- "" \
- "--disable-pdf" \
+ "--enable-pdf-build" \
+ "--disable-pdf-build" \
"to build and install PDF manual" &&

-# WARNING: --enable-* flags are strictly forbidden to add in places where
-# they don't exist; it breaks adding proper LDFLAGS and makes configure
-# script choose bad decisions on dependencies
-
# audio output
optional_depends alsa-lib \
- "" \
+ "--enable-alsa" \
"--disable-alsa" \
"for ALSA audio output" &&

@@ -30,116 +30,119 @@ optional_depends oss \
"for OSS4 audio output" &&

optional_depends pulseaudio \
- "" \
+ "--enable-pulse" \
"--disable-pulse" \
"for Pulseaudio audio output" &&

optional_depends portaudio19 \
- "" \
+ "--enable-portaudio" \
"--disable-portaudio" \
"for PortAudio audio output" &&

optional_depends JACK-DRIVER \
- "" \
+ "--enable-jack" \
"--disable-jack" \
"for JACK audio output" &&

optional_depends openal \
"--enable-openal" \
- "" \
+ "--disable-openal" \
"for OpenAL audio output" &&

optional_depends sdl \
"--enable-sdl" \
- "" \
+ "--disable-sdl" \
"for SDL audio output" &&

-# TODO: add sdl2 spell
-#optional_depends sdl2 \
-# "--enable-sdl2" \
-# "" \
-# "for SDL 2.0+ audio and video output" &&
+optional_depends sdl2 \
+ "--enable-sdl2" \
+ "--disable-sdl2" \
+ "for SDL 2.0+ audio and video output" &&

# video output
optional_depends OPENGL \
- "" \
+ "--enable-gl" \
"--disable-gl" \
"for OpenGL video output" &&

optional_depends libcaca \
- "" \
+ "--enable-caca" \
"--disable-caca" \
"for CACA video output" &&

optional_depends libx11 \
- "" \
+ "--enable-x11" \
"--disable-x11" \
"for X11 video output" &&

if is_depends_enabled $SPELL libx11; then
- depends libxext &&
+ optional_depends libxext \
+ "--enable-xext" \
+ "--disable-xext" \
+ "for X extensions" &&

optional_depends libxxf86vm \
- "" \
+ "--enable-xf86vm" \
"--disable-xf86vm" \
"for X video mode extensions" &&

optional_depends libvdpau \
- "" \
+ "--enable-vdpau" \
"--disable-vdpau" \
"for VDPAU acceleration" &&

optional_depends libxv \
- "" \
+ "--enable-xv" \
"--disable-xv" \
"for Xv video output" &&

optional_depends libxinerama \
- "" \
+ "--enable-xinerama" \
"--disable-xinerama" \
"for Xinerama support"
else
- list_add MPV_OPTS "--disable-vm" &&
+ list_add MPV_OPTS "--disable-xf86vm" &&
list_add MPV_OPTS "--disable-vdpau" &&
list_add MPV_OPTS "--disable-xv" &&
- list_add MPV_OPTS "--disable-xinerama"
+ list_add MPV_OPTS "--disable-xinerama" &&
+ list_add MPV_OPTS "--disable-xext"
fi &&

optional_depends libxscrnsaver \
- "" \
+ "--enable-xss" \
"--disable-xss" \
"for screensaver support via xss" &&

# codecs
optional_depends JPEG \
- "" \
+ "--enable-jpeg" \
"--disable-jpeg" \
"for JPEG input/output support" &&

optional_depends libcdio \
- "" \
+ "--enable-cdda" \
"--disable-cdda" \
"for cdda support" &&

optional_depends ladspa \
- "" \
+ "--enable-ladspa" \
"--disable-ladspa" \
"for LADSPA plugin support" &&

optional_depends MPG123 \
- "" \
+ "--enable-mpg123" \
"--disable-mpg123" \
"for libmpg123 MP3 decoding support" &&

# features
optional_depends lirc \
- "" \
+ "--enable-lirc" \
"--disable-lirc" \
"for LIRC (remote control) support" &&

if is_depends_enabled $SPELL libx11; then
optional_depends xproto \
- "" \
+ "--enable-xf86xk" \
"--disable-xf86xk" \
"for multimedia keys support"
else
@@ -147,14 +150,14 @@ else
fi &&

optional_depends v4l-utils \
- "" \
+ "--enable-radio --enable-radio-v4l2" \
"--disable-radio --disable-radio-v4l2" \
"for Video4Linux2 radio interface" &&

if is_depends_enabled $SPELL v4l-utils; then
if is_depends_enabled $SPELL alsa-lib || is_depends_enabled $SPELL oss;
then
config_query_option MPV_OPTS "Enable radio capture (through
PCI/line-in)?" n \
- "" \
+ "--enable-radio-capture" \
"--disable-radio-capture"
else
list_add MPV_OPTS "--disable-radio-capture"
@@ -162,20 +165,20 @@ if is_depends_enabled $SPELL v4l-utils; then
fi &&

optional_depends v4l-utils \
- "" \
+ "--enable-tv --enable-tv-v4l2" \
"--disable-tv --disable-tv-v4l2" \
"for Video4Linux2 TV interface (TV/DVB grabbers)" &&

if is_depends_enabled $SPELL v4l-utils; then
config_query_option MPV_OPTS "Enable Video4Linux2 MPEG PVR?" y \
- "" \
+ "--enable-pvr" \
"--disable-pvr"
else
list_add MPV_OPTS "--disable-pvr"
fi &&

optional_depends samba \
- "" \
+ "--enable-libsmbclient" \
"--disable-libsmbclient" \
"for Samba (SMB) input support" &&

@@ -184,43 +187,48 @@ if is_depends_enabled $SPELL samba; then
fi &&

optional_depends libquvi \
- "" \
+ "--enable-libquvi4" \
"--disable-libquvi4" \
"for parsing media stream URLs via libquvi 0.4.x" &&

optional_depends lcms2 \
- "" \
+ "--enable-lcms2" \
"--disable-lcms2" \
"for LCMS2 support" &&

optional_depends libbluray \
- "" \
+ "--enable-libbluray" \
"--disable-libbluray" \
"for Blu-ray support" &&

optional_depends libdvdread \
- "" \
+ "--enable-dvdread" \
"--disable-dvdread" \
"for reading scrambled (CSS) DVDs" &&

optional_depends libdvdnav \
- "" \
+ "--enable-dvdnav" \
"--disable-dvdnav" \
"for dvd navigation support" &&

+optional_depends libguess \
+ "--enable-libguess" \
+ "--disable-libguess" \
+ "for charset discovery and conversion using libguess" &&
+
optional_depends enca \
- "" \
+ "--enable-enca" \
"--disable-enca" \
"for ENCA charset oracle library support" &&

optional_depends libass \
- "" \
+ "--enable-libass" \
"--disable-libass" \
"for subtitle rendering" &&

if is_depends_enabled $SPELL libass; then
config_query_option MPV_OPTS "Enable libass OSD rendering?" y \
- "" \
+ "--enable-libass-osd" \
"--disable-libass-osd"
else
list_add MPV_OPTS "--disable-libass-osd"
diff --git a/video/mpv/DETAILS b/video/mpv/DETAILS
index 85f4776..70f892b 100755
--- a/video/mpv/DETAILS
+++ b/video/mpv/DETAILS
@@ -1,10 +1,10 @@
SPELL=mpv
- VERSION=0.3.7
+ VERSION=0.3.8
SOURCE=${SPELL}-${VERSION}.tar.gz
SOURCEX=v${VERSION}.tar.gz

SOURCE_URL[0]=https://github.com/${SPELL}-player/${SPELL}/archive/${SOURCEX}
SOURCE_HINTS="no-check-certificate"
-
SOURCE_HASH=sha512:452128df418e50c19cf86041decf77202082fc82997aee36ae95e5c0d447dd1e30fcbe9c28d6ec52b0415252b74791152ec485ddc918a1f010d9cc7b9a0f4b29
+
SOURCE_HASH=sha512:c6a8cc7bf0866a9bfd63a216ad4a07d80898db4fef74c9bda098e4c5a33933366b8eaa102cb6fd7a8e608b6170bd37c889dcbc57dc88dcbfb7db8c29f7daa733
SOURCE_DIRECTORY="$BUILD_DIRECTORY/$SPELL-$VERSION"
DOCS="Copyright DOCS/tech-overview.txt DOCS/OUTDATED-tech/*
$DOCS"
WEB_SITE=http://mpv.io/
diff --git a/video/mpv/HISTORY b/video/mpv/HISTORY
index a669ec2..ee908c2 100644
--- a/video/mpv/HISTORY
+++ b/video/mpv/HISTORY
@@ -1,3 +1,9 @@
+2014-04-27 Vlad Glagolev <stealth AT sourcemage.org>
+ * DETAILS: updated spell to 0.3.8
+ * DEPENDS: lua is _optional_; updated/added flags; updated xf86vm
flag;
+ libxext becomes optional; added libguess, sdl2 optional deps
+ * CONFIGURE: added missing flags, new configure options
+
2014-04-06 Florian Franzmann <siflfran AT hawo.stw.uni-erlangen.de>
* DEPENDS: depend on lua instead of LUA




  • [SM-Commit] GIT changes to master grimoire by Vlad Glagolev (c77ddd96433d12c658b5198043ef4653987cf9cf), Vlad Glagolev, 04/27/2014

Archive powered by MHonArc 2.6.24.

Top of Page