diff options
author | mef <mef@pkgsrc.org> | 2017-05-27 13:43:00 +0000 |
---|---|---|
committer | mef <mef@pkgsrc.org> | 2017-05-27 13:43:00 +0000 |
commit | dfba5115910fa734fb97c4d0128a9890b85414e9 (patch) | |
tree | 60348d165d720935ade41b3eddce747ae890867b /audio | |
parent | 250db67158e8865c343b55d0a6502b369738e947 (diff) | |
download | pkgsrc-dfba5115910fa734fb97c4d0128a9890b85414e9.tar.gz |
Updated audio/xjadeo to 0.87
----------------------------
2016-11-28 (0.8.7) Robin Gareus <robin@gareus.org>
* fix release builds (mistake in 0.8.6)
2016-11-28 (0.8.6) Robin Gareus <robin@gareus.org>
* explicitly request single-screen fullscreen on OSX
* weak-link against libjack (binaries)
* add NetBSD support
(pkgsrc changes)
- Drop two patches, upstream nos supports NetBSD
(although the one patch still necessary)
- (note) Does this really fit to audio category ?
This application shows video syncing to audio.
Diffstat (limited to 'audio')
-rw-r--r-- | audio/xjadeo/Makefile | 5 | ||||
-rw-r--r-- | audio/xjadeo/distinfo | 12 | ||||
-rw-r--r-- | audio/xjadeo/patches/patch-configure.ac | 113 | ||||
-rw-r--r-- | audio/xjadeo/patches/patch-src_xjadeo_Makefile.am | 17 |
4 files changed, 7 insertions, 140 deletions
diff --git a/audio/xjadeo/Makefile b/audio/xjadeo/Makefile index 0b6335316f3..c1f4e98bc8f 100644 --- a/audio/xjadeo/Makefile +++ b/audio/xjadeo/Makefile @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.5 2017/02/24 21:54:51 maya Exp $ +# $NetBSD: Makefile,v 1.6 2017/05/27 13:43:00 mef Exp $ -DISTNAME= xjadeo-0.8.5 -PKGREVISION= 4 +DISTNAME= xjadeo-0.8.7 CATEGORIES= audio MASTER_SITES= ${MASTER_SITE_GITHUB:=x42/} GITHUB_TAG= v${PKGVERSION_NOREV} diff --git a/audio/xjadeo/distinfo b/audio/xjadeo/distinfo index 939febf0139..2d0e8d9cebf 100644 --- a/audio/xjadeo/distinfo +++ b/audio/xjadeo/distinfo @@ -1,9 +1,7 @@ -$NetBSD: distinfo,v 1.1 2016/06/19 09:16:15 kamil Exp $ +$NetBSD: distinfo,v 1.2 2017/05/27 13:43:00 mef Exp $ -SHA1 (xjadeo-0.8.5.tar.gz) = ed72634312e2d1d5b13a4eeef444895c3f3abfc5 -RMD160 (xjadeo-0.8.5.tar.gz) = 7794ace9bb5b84b4b4fa603347c48d482b95541d -SHA512 (xjadeo-0.8.5.tar.gz) = 124644df6b18518fd7cfabea47cf4b466d41f771891df6805c95a63f18ab9b71ac1568e1d0cdb7df5361f19e742e850fc57ea1239547c00484c15f1a85aa2b18 -Size (xjadeo-0.8.5.tar.gz) = 996023 bytes -SHA1 (patch-configure.ac) = 59dec1d2b0d1922ef8cde791d7c8ac1f349eaa82 -SHA1 (patch-src_xjadeo_Makefile.am) = 42f6a6af900ef495430cf52dea74f83c7c6ddae6 +SHA1 (xjadeo-0.8.7.tar.gz) = 932d165999ff14b3eeb938571ddf17bb670882dc +RMD160 (xjadeo-0.8.7.tar.gz) = c582667d97715a1339acd032f70bec40159aa19a +SHA512 (xjadeo-0.8.7.tar.gz) = a3ea75707a69969e473906bec39b3cda1f66e880600ced8dcb485271ce3b4af7a47181ee229cc070036daf1549333b5017b2d6849227c72a7e3546f04c25df48 +Size (xjadeo-0.8.7.tar.gz) = 996237 bytes SHA1 (patch-src_xjadeo_libsofd.c) = 4af37e40a9e2dacae8a9983228a98ed58e1a612f diff --git a/audio/xjadeo/patches/patch-configure.ac b/audio/xjadeo/patches/patch-configure.ac deleted file mode 100644 index c2eb7862cfb..00000000000 --- a/audio/xjadeo/patches/patch-configure.ac +++ /dev/null @@ -1,113 +0,0 @@ -$NetBSD: patch-configure.ac,v 1.1 2016/06/19 09:16:15 kamil Exp $ - -Fix shell portability problem. - ---- configure.ac.orig 2015-11-25 14:17:19.000000000 +0000 -+++ configure.ac -@@ -51,6 +51,7 @@ case $target_os in - HAVE_GL=1 - AM_CONDITIONAL([TARGET_OSX], true) - AM_CONDITIONAL([TARGET_LINUX], false) -+ AM_CONDITIONAL([TARGET_NETBSD], false) - AM_CONDITIONAL([TARGET_WIN32], false) - dnl 2006/11/13 : 32 bit RGBA is known not to work on OSX ffmpeg+imlib2 - dnl IMLIB2RGBA -@@ -63,9 +64,21 @@ case $target_os in - AC_DEFINE([IMLIB2RGBA], [], [use native RGB32 ffmpeg -> imlib.]) - AM_CONDITIONAL([TARGET_OSX], false) - AM_CONDITIONAL([TARGET_LINUX], true) -+ AM_CONDITIONAL([TARGET_NETBSD], false) - AM_CONDITIONAL([TARGET_WIN32], false) - LIBS="$LIBS -L/usr/X11R6/lib" - ;; -+ *netbsd*) -+ AC_DEFINE([PLATFORM_NETBSD], [], [NetBSD version]) -+ PLATFORM_NETBSD=1 -+ AC_MSG_NOTICE([TARGET: NETBSD]) -+ PM_OS="netbsd"; -+ AC_DEFINE([IMLIB2RGBA], [], [use native RGB32 ffmpeg -> imlib.]) -+ AM_CONDITIONAL([TARGET_OSX], false) -+ AM_CONDITIONAL([TARGET_LINUX], false) -+ AM_CONDITIONAL([TARGET_NETBSD], true) -+ AM_CONDITIONAL([TARGET_WIN32], false) -+ ;; - *mingw32*|*win*) - AC_MSG_NOTICE([TARGET: WINDOWS]) - PM_OS=win -@@ -78,6 +91,7 @@ case $target_os in - HAVE_GL=1 - AM_CONDITIONAL([TARGET_OSX], false) - AM_CONDITIONAL([TARGET_LINUX], false) -+ AM_CONDITIONAL([TARGET_NETBSD], true) - AM_CONDITIONAL([TARGET_WIN32], true) - AC_CHECK_TOOL(WINDRES, windres, false) - if test "$WINDRES" = "false"; then -@@ -89,7 +103,7 @@ case $target_os in - ;; - esac - --if test "x$enable_embed_font" == "xyes"; then -+if test "x$enable_embed_font" = "xyes"; then - AM_CONDITIONAL([EMBED_FONT], true) - else - AM_CONDITIONAL([EMBED_FONT], false) -@@ -119,18 +133,18 @@ AC_CHECK_HEADERS(time.h string.h) - dnl Checks for libraries. - - dnl video output --AH_TEMPLATE([HAVE_GL], [Define to enable openGL (win,osx,linux)]) --AH_TEMPLATE([HAVE_SDL], [Define as 1 if you have the SDL toolkit (win,osx,linux)]) --AH_TEMPLATE([HAVE_LIBXV], [Video Output: XVideo support (linux)]) --AH_TEMPLATE([HAVE_IMLIB2], [Video Output: plain old imlib2 (linux)]) -+AH_TEMPLATE([HAVE_GL], [Define to enable openGL (linux,netbsd,osx,win)]) -+AH_TEMPLATE([HAVE_SDL], [Define as 1 if you have the SDL toolkit (linux,netbsd,osx,win)]) -+AH_TEMPLATE([HAVE_LIBXV], [Video Output: XVideo support (linux,netbsd)]) -+AH_TEMPLATE([HAVE_IMLIB2], [Video Output: plain old imlib2 (linux,netbsd)]) - AH_TEMPLATE([IMLIB2RGBA], [Define for RGBA32 imlib2 (not RGB24)]) - - dnl MTC sync - AH_TEMPLATE([HAVE_MIDI], [general MIDI (MTC) support]) - AH_TEMPLATE([HAVE_JACKMIDI], [Define as 1 to enable JACK-MIDI]) - AH_TEMPLATE([HAVE_PORTMIDI], [Define as 1 to enable the portmidi driver (win,osx)]) --AH_TEMPLATE([ALSA_SEQ_MIDI], [Define as 1 to enable ALSA sequencer (linux)]) --AH_TEMPLATE([ALSA_RAW_MIDI], [Define as 1 to enable ALSA-raw midi (linux)]) -+AH_TEMPLATE([ALSA_SEQ_MIDI], [Define as 1 to enable ALSA sequencer (linux,netbsd)]) -+AH_TEMPLATE([ALSA_RAW_MIDI], [Define as 1 to enable ALSA-raw midi (linux,netbsd)]) - - dnl LTC sync - AH_TEMPLATE([HAVE_LTC], [Define as 1 if you have libltc - http://github.com/x42/libltc ]) -@@ -170,7 +184,7 @@ if test "x$enable_timescale" != "xyes"; - AC_DEFINE(TIMEMAP) - fi - --if test "x$enable_framecrop" == "xyes"; then -+if test "x$enable_framecrop" = "xyes"; then - AC_DEFINE(CROPIMG) - fi - -@@ -462,7 +476,7 @@ else - else - OSDREPORT="${OSDREPORT}-" - fi -- if test "x$enable_embed_font" == "xyes"; then -+ if test "x$enable_embed_font" = "xyes"; then - OSDREPORT="${OSDREPORT} - - embed font: yes" - else -@@ -531,14 +545,14 @@ AC_MSG_NOTICE([ - ]) - fi - --if test -n "$PLATFORM_LINUX" -a -n "$HAVE_PORTMIDI"; then -+if test -n "$PLATFORM_LINUX$PLATFORM_NETBSD" -a -n "$HAVE_PORTMIDI"; then - AC_MSG_NOTICE([ - PortMidi is intended for non Un*x Platforms only. - On Linux, please use JACK, ALSA-seq or ALSA-raw. - ]) - fi - --if test -n "$PLATFORM_LINUX$PLATFORM_OSX" -a -n "$HAVE_QT4"; then -+if test -n "$PLATFORM_LINUX$PLATFORM_OSX$PLATFORM_NETBSD" -a -n "$HAVE_QT4"; then - AC_MSG_WARN([ - qjadeo is deprecated an not intended to be used. - It will be removed in future releases. diff --git a/audio/xjadeo/patches/patch-src_xjadeo_Makefile.am b/audio/xjadeo/patches/patch-src_xjadeo_Makefile.am deleted file mode 100644 index 7d724047a8f..00000000000 --- a/audio/xjadeo/patches/patch-src_xjadeo_Makefile.am +++ /dev/null @@ -1,17 +0,0 @@ -$NetBSD: patch-src_xjadeo_Makefile.am,v 1.1 2016/06/19 09:16:15 kamil Exp $ - -Add NetBSD support. - ---- src/xjadeo/Makefile.am.orig 2015-11-25 14:17:19.000000000 +0000 -+++ src/xjadeo/Makefile.am -@@ -30,6 +30,10 @@ if TARGET_LINUX - xjadeo_SOURCES+=display_glx.c - xjadeo_LDADD+=@JACK_LIBS@ - endif -+if TARGET_NETBSD -+xjadeo_SOURCES+=display_glx.c -+xjadeo_LDADD+=@JACK_LIBS@ -+endif - if TARGET_WIN32 - xjadeo_SOURCES+=display_gl_win.c windows.rc - xjadeo_CFLAGS+=-DUSE_WEAK_JACK |