Date: Thu, 11 Jan 2018 07:16:42 +0000 (UTC) From: Yuri Victorovich <yuri@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r458713 - in head/audio: polyphone rtmidi rtmidi/files Message-ID: <201801110716.w0B7Gg7V074070@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: yuri Date: Thu Jan 11 07:16:42 2018 New Revision: 458713 URL: https://svnweb.freebsd.org/changeset/ports/458713 Log: audio/rtmidi: Update to 3.0.0 Bumped PORTREVISION in audio/polyphone. Submitted by: myself Reported by: portscout Approved by: tcberner (mentor) Differential Revision: https://reviews.freebsd.org/D13855 Modified: head/audio/polyphone/Makefile head/audio/rtmidi/Makefile head/audio/rtmidi/distinfo head/audio/rtmidi/files/patch-configure.ac head/audio/rtmidi/pkg-plist Modified: head/audio/polyphone/Makefile ============================================================================== --- head/audio/polyphone/Makefile Thu Jan 11 06:23:22 2018 (r458712) +++ head/audio/polyphone/Makefile Thu Jan 11 07:16:42 2018 (r458713) @@ -3,6 +3,7 @@ PORTNAME= polyphone DISTVERSION= 1.8 DISTVERSIONSUFFIX= -src +PORTREVISION= 1 CATEGORIES= audio MASTER_SITES= http://polyphone-soundfonts.com/en/download/file/76-polyphone-1-8-src-zip/latest/download?ae95d968569b61bc77f7b8559a14db4d=1/ Modified: head/audio/rtmidi/Makefile ============================================================================== --- head/audio/rtmidi/Makefile Thu Jan 11 06:23:22 2018 (r458712) +++ head/audio/rtmidi/Makefile Thu Jan 11 07:16:42 2018 (r458713) @@ -2,8 +2,8 @@ # $FreeBSD$ PORTNAME= rtmidi -DISTVERSION= 2.1.1-38 -DISTVERSIONSUFFIX= -g907a94c +DISTVERSIONPREFIX= v +DISTVERSION= 3.0.0 CATEGORIES= audio MAINTAINER= yuri@rawbw.com @@ -13,11 +13,11 @@ LICENSE= MIT LIB_DEPENDS= libjack.so:audio/jack -USES= autoreconf localbase libtool +USES= autoreconf libtool localbase GNU_CONFIGURE= yes USE_GITHUB= yes GH_ACCOUNT= thestk -CONFIGURE_ARGS= --with-jack +CONFIGURE_ARGS= --with-jack --disable-static USE_LDCONFIG= yes INSTALL_TARGET= install-strip Modified: head/audio/rtmidi/distinfo ============================================================================== --- head/audio/rtmidi/distinfo Thu Jan 11 06:23:22 2018 (r458712) +++ head/audio/rtmidi/distinfo Thu Jan 11 07:16:42 2018 (r458713) @@ -1,3 +1,3 @@ -TIMESTAMP = 1503103513 -SHA256 (thestk-rtmidi-2.1.1-38-g907a94c_GH0.tar.gz) = 6906d2ac6405eff4a0183307d16c9cf2fd6d9ec1958384d2195e4b47eb309de7 -SIZE (thestk-rtmidi-2.1.1-38-g907a94c_GH0.tar.gz) = 80635 +TIMESTAMP = 1515648219 +SHA256 (thestk-rtmidi-v3.0.0_GH0.tar.gz) = 55cd0fba60321aadcd847481d207bf2b70e783b5bfa1a01037bf916554a7d5c4 +SIZE (thestk-rtmidi-v3.0.0_GH0.tar.gz) = 82839 Modified: head/audio/rtmidi/files/patch-configure.ac ============================================================================== --- head/audio/rtmidi/files/patch-configure.ac Thu Jan 11 06:23:22 2018 (r458712) +++ head/audio/rtmidi/files/patch-configure.ac Thu Jan 11 07:16:42 2018 (r458713) @@ -1,6 +1,6 @@ ---- configure.ac.orig 2017-04-21 15:27:54 UTC +--- configure.ac.orig 2017-09-01 00:10:07 UTC +++ configure.ac -@@ -65,7 +65,7 @@ AC_MSG_CHECKING(whether to compile debug +@@ -72,7 +72,7 @@ AC_MSG_CHECKING(whether to compile debug AC_ARG_ENABLE(debug, [ --enable-debug = enable various debug output], [AC_SUBST( cppflag, [-D__RTMIDI_DEBUG__] ) AC_SUBST( cxxflag, [-g] ) AC_SUBST( object_path, [Debug] ) AC_MSG_RESULT(yes)], @@ -9,7 +9,7 @@ # Set paths if prefix is defined if test "x$prefix" != "x" && test "x$prefix" != "xNONE"; then -@@ -78,7 +78,7 @@ CPPFLAGS="$CPPFLAGS $cppflag" +@@ -85,7 +85,7 @@ CPPFLAGS="$CPPFLAGS $cppflag" # For debugging and optimization ... overwrite default because it has both -g and -O2 #CXXFLAGS="$CXXFLAGS $cxxflag" @@ -18,41 +18,15 @@ # Check compiler and use -Wall if gnu. if [test $GXX = "yes" ;] then -@@ -105,25 +105,25 @@ AC_SUBST( api, [""] ) - AC_SUBST( req, [""] ) - AC_MSG_CHECKING(for MIDI API) - case $host in -- *-*-linux*) -+ *-*-freebsd*) - AC_ARG_WITH(jack, [ --with-jack = choose JACK server support (mac and linux only)], [ - api="$api -D__UNIX_JACK__" - AC_MSG_RESULT(using JACK) - AC_CHECK_LIB(jack, jack_client_open, , AC_MSG_ERROR(JACK support requires the jack library!))], ) - - # Look for ALSA flag -- AC_ARG_WITH(alsa, [ --with-alsa = choose native ALSA sequencer API support (linux only)], [ -- api="$api -D__LINUX_ALSA__" -- req="$req alsa" -- AC_MSG_RESULT(using ALSA) -- AC_CHECK_LIB(asound, snd_seq_open, , AC_MSG_ERROR(ALSA support requires the asound library!))], ) -+ #AC_ARG_WITH(alsa, [ --with-alsa = choose native ALSA sequencer API support (linux only)], [ -+ # api="$api -D__LINUX_ALSA__" -+ # req="$req alsa" -+ # AC_MSG_RESULT(using ALSA) -+ # AC_CHECK_LIB(asound, snd_seq_open, , AC_MSG_ERROR(ALSA support requires the asound library!))], ) - -- if [test "$api" == "";] then -- AC_MSG_RESULT(using ALSA) -- AC_SUBST( api, [-D__LINUX_ALSA__] ) -- req="$req alsa" -- AC_CHECK_LIB(asound, snd_seq_open, , AC_MSG_ERROR(ALSA sequencer support requires the asound library!)) -- fi -+ #if [test "$api" == "";] then -+ # AC_MSG_RESULT(using ALSA) -+ # AC_SUBST( api, [-D__LINUX_ALSA__] ) -+ # req="$req alsa" -+ # AC_CHECK_LIB(asound, snd_seq_open, , AC_MSG_ERROR(ALSA sequencer support requires the asound library!)) -+ #fi - - # Checks for pthread library. +@@ -139,6 +139,11 @@ case $host in AC_CHECK_LIB(pthread, pthread_create, , AC_MSG_ERROR(RtMidi requires the pthread library!)) + ;; + ++ *-*-freebsd*) ++ # Checks for pthread library. ++ AC_CHECK_LIB(pthread, pthread_create, , AC_MSG_ERROR(RtMidi requires the pthread library!)) ++ ;; ++ + *-apple*) + # Look for Core flag + AC_ARG_WITH(core, [ --with-core = choose CoreMidi API support (mac only)]) Modified: head/audio/rtmidi/pkg-plist ============================================================================== --- head/audio/rtmidi/pkg-plist Thu Jan 11 06:23:22 2018 (r458712) +++ head/audio/rtmidi/pkg-plist Thu Jan 11 07:16:42 2018 (r458713) @@ -1,7 +1,6 @@ include/rtmidi/RtMidi.h include/rtmidi/rtmidi_c.h -lib/librtmidi.a lib/librtmidi.so -lib/librtmidi.so.3 -lib/librtmidi.so.3.0.0 +lib/librtmidi.so.4 +lib/librtmidi.so.4.0.0 libdata/pkgconfig/rtmidi.pc
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201801110716.w0B7Gg7V074070>