[Midnightbsd-cvs] mports [25045] trunk/audio: add linuxsampler

laffer1 at midnightbsd.org laffer1 at midnightbsd.org
Fri Feb 15 18:40:18 EST 2019


Revision: 25045
          http://svnweb.midnightbsd.org/mports/?rev=25045
Author:   laffer1
Date:     2019-02-15 18:40:18 -0500 (Fri, 15 Feb 2019)
Log Message:
-----------
add linuxsampler

Modified Paths:
--------------
    trunk/audio/Makefile

Added Paths:
-----------
    trunk/audio/linuxsampler/
    trunk/audio/linuxsampler/Makefile
    trunk/audio/linuxsampler/distinfo
    trunk/audio/linuxsampler/files/
    trunk/audio/linuxsampler/files/patch-configure
    trunk/audio/linuxsampler/files/patch-src_Makefile.in
    trunk/audio/linuxsampler/files/patch-src_common_Mutex.cpp
    trunk/audio/linuxsampler/files/patch-src_common_atomic.h
    trunk/audio/linuxsampler/files/patch-src_drivers_audio_AudioChannel.cpp
    trunk/audio/linuxsampler/pkg-descr
    trunk/audio/linuxsampler/pkg-plist

Modified: trunk/audio/Makefile
===================================================================
--- trunk/audio/Makefile	2019-02-15 23:39:04 UTC (rev 25044)
+++ trunk/audio/Makefile	2019-02-15 23:40:18 UTC (rev 25045)
@@ -123,6 +123,7 @@
 SUBDIR += linux-c7-sdl_mixer
 SUBDIR += linux-laudio
 SUBDIR += linux-skype_oss_wrapper
+SUBDIR += linuxsampler
 SUBDIR += madplay
 SUBDIR += mikmod
 SUBDIR += mpdcon

Added: trunk/audio/linuxsampler/Makefile
===================================================================
--- trunk/audio/linuxsampler/Makefile	                        (rev 0)
+++ trunk/audio/linuxsampler/Makefile	2019-02-15 23:40:18 UTC (rev 25045)
@@ -0,0 +1,79 @@
+# $MidnightBSD$
+
+PORTNAME=	linuxsampler
+DISTVERSION=	2.0.0
+CATEGORIES=	audio
+MASTER_SITES=	http://download.linuxsampler.org/packages/
+
+MAINTAINER=	ports at MidnightBSD.org
+COMMENT=	Modular MIDI sampler
+
+LICENSE=	gpl2
+LICENSE_FILE=	${WRKSRC}/COPYING
+
+ONLY_FOR_ARCHS=	amd64 i386
+ONLY_FOR_ARCHS_REASON=	"not yet ported"
+
+BUILD_DEPENDS=	lv2>0:audio/lv2
+LIB_DEPENDS=	libgig.so:audio/libgig \
+		libsndfile.so:audio/libsndfile \
+		libuuid.so:misc/e2fsprogs-libuuid
+
+OPTIONS_DEFINE=	JACK ALSA DSSI LV2
+OPTIONS_DEFAULT=	JACK
+DSSI_DESC=	Enable DSSI support
+LV2_DESC=	Enable LV2 support
+
+USES=		bison gmake libtool pathfix pkgconfig sqlite:3 tar:bzip2
+GNU_CONFIGURE=	yes
+CONFIGURE_ENV=	HAVE_UNIX98=1
+USE_LDCONFIG=	${PREFIX}/lib/linuxsampler
+INSTALL_TARGET=	install-strip
+
+CPPFLAGS+=	-I${LOCALBASE}/include
+LDFLAGS+=	-L${LOCALBASE}/lib
+
+CONFIGURE_ARGS+=	--disable-arts-driver
+
+.include <bsd.mport.options.mk>
+
+.if ${PORT_OPTIONS:MJACK}
+LIB_DEPENDS+=	libjack.so:audio/jack
+.else
+CONFIGURE_ARGS+=--disable-jack-driver
+.endif
+
+.if ${PORT_OPTIONS:MALSA}
+LIB_DEPENDS+=	libasound.so:audio/alsa-lib
+.else
+CONFIGURE_ARGS+=--disable-alsa-driver
+.endif
+
+.if ${PORT_OPTIONS:MDSSI}
+BUILD_DEPENDS+=	dssi>=0:audio/dssi
+RUN_DEPENDS+=	dssi>=0:audio/dssi
+PLIST_SUB+=	DSSI=""
+CPPFLAGS:=	-I${LOCALBASE}/include/dssi ${CPPFLAGS}
+.else
+CONFIGURE_ENV+=	ac_cv_header_dssi_h=no
+PLIST_SUB+=	DSSI="@comment "
+.endif
+
+.if ${PORT_OPTIONS:MLV2}
+BUILD_DEPENDS+=	lv2>=1.14.0_1:audio/lv2
+RUN_DEPENDS+=	lv2>=1.14.0_1:audio/lv2
+PLIST_SUB+=	LV2=""
+.else
+CONFIGURE_ENV+=	ac_cv_header_lv2_h=no
+PLIST_SUB+=	LV2="@comment "
+.endif
+
+post-patch:
+	@${REINPLACE_CMD} -e \
+		's|CXX_CPU_SWITCH=.*|CXX_CPU_SWITCH=|g ; \
+		 s|"lv2core"|"_lv2core_"|' ${WRKSRC}/configure
+
+post-install:
+	@${TOUCH} ${STAGEDIR}${PREFIX}/lib/linuxsampler/plugins/.keep_me
+
+.include <bsd.port.mk>


Property changes on: trunk/audio/linuxsampler/Makefile
___________________________________________________________________
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:keywords
## -0,0 +1 ##
+MidnightBSD=%H
\ No newline at end of property
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
Added: trunk/audio/linuxsampler/distinfo
===================================================================
--- trunk/audio/linuxsampler/distinfo	                        (rev 0)
+++ trunk/audio/linuxsampler/distinfo	2019-02-15 23:40:18 UTC (rev 25045)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1511122817
+SHA256 (linuxsampler-2.0.0.tar.bz2) = 1943d05006d96a9fb49f74a6f38129a4585cb78cc0648885fca9f056529c5c28
+SIZE (linuxsampler-2.0.0.tar.bz2) = 1318939


Property changes on: trunk/audio/linuxsampler/distinfo
___________________________________________________________________
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
Added: trunk/audio/linuxsampler/files/patch-configure
===================================================================
--- trunk/audio/linuxsampler/files/patch-configure	                        (rev 0)
+++ trunk/audio/linuxsampler/files/patch-configure	2019-02-15 23:40:18 UTC (rev 25045)
@@ -0,0 +1,176 @@
+--- configure.orig	2015-07-15 20:30:20 UTC
++++ configure
+@@ -10097,7 +10097,7 @@ $as_echo_n "checking whether the $compil
+   hardcode_minus_L=no
+   hardcode_shlibpath_var=unsupported
+   inherit_rpath=no
+-  link_all_deplibs=unknown
++  link_all_deplibs=no
+   module_cmds=
+   module_expsym_cmds=
+   old_archive_from_new_cmds=
+@@ -10366,7 +10366,7 @@ _LT_EOF
+ 	wlarc=
+       else
+ 	archive_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'
+-	archive_expsym_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib'
++	archive_expsym_cmds='echo "{ global:" > $lib-ver~		 sed -e "s|$|;|" < $export_symbols >> $lib-ver~	 echo "local: *; };" >> $lib-ver~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-version-script $wl$lib-ver -o $lib'
+       fi
+       ;;
+ 
+@@ -10385,7 +10385,7 @@ _LT_EOF
+ _LT_EOF
+       elif $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then
+ 	archive_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'
+-	archive_expsym_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib'
++	archive_expsym_cmds='echo "{ global:" > $lib-ver~		 sed -e "s|$|;|" < $export_symbols >> $lib-ver~	 echo "local: *; };" >> $lib-ver~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-version-script $wl$lib-ver -o $lib'
+       else
+ 	ld_shlibs=no
+       fi
+@@ -10414,7 +10414,7 @@ _LT_EOF
+ 	  if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then
+ 	    hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir'
+ 	    archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'
+-	    archive_expsym_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib'
++	    archive_expsym_cmds='echo "{ global:" > $lib-ver~		 sed -e "s|$|;|" < $export_symbols >> $lib-ver~	 echo "local: *; };" >> $lib-ver~$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-version-script $wl$lib-ver -o $lib'
+ 	  else
+ 	    ld_shlibs=no
+ 	  fi
+@@ -10432,7 +10432,7 @@ _LT_EOF
+     *)
+       if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then
+ 	archive_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'
+-	archive_expsym_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib'
++	archive_expsym_cmds='echo "{ global:" > $lib-ver~		 sed -e "s|$|;|" < $export_symbols >> $lib-ver~	 echo "local: *; };" >> $lib-ver~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-version-script $wl$lib-ver -o $lib'
+       else
+ 	ld_shlibs=no
+       fi
+@@ -11020,7 +11020,7 @@ $as_echo "$lt_cv_irix_exported_symbol" >
+ 	hardcode_direct_absolute=yes
+ 	if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then
+ 	  archive_cmds='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags'
+-	  archive_expsym_cmds='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-retain-symbols-file,$export_symbols'
++	  archive_expsym_cmds='echo "{ global:" > $lib-ver~		 sed -e "s|$|;|" < $export_symbols >> $lib-ver~	 echo "local: *; };" >> $lib-ver~$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-version-script,$lib-ver'
+ 	  hardcode_libdir_flag_spec='${wl}-rpath,$libdir'
+ 	  export_dynamic_flag_spec='${wl}-E'
+ 	else
+@@ -11798,7 +11798,7 @@ freebsd* | dragonfly*)
+   version_type=freebsd-$objformat
+   case $version_type in
+     freebsd-elf*)
+-      library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}'
++      library_names_spec='$libname$release$shared_ext$versuffix  $libname$release$shared_ext$major	 $libname$shared_ext'			 soname_spec='$libname$release$shared_ext$major'
+       need_version=no
+       need_lib_prefix=no
+       ;;
+@@ -12882,7 +12882,7 @@ striplib=
+ old_striplib=
+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether stripping libraries is possible" >&5
+ $as_echo_n "checking whether stripping libraries is possible... " >&6; }
+-if test -n "$STRIP" && $STRIP -V 2>&1 | $GREP "GNU strip" >/dev/null; then
++if test -n "$STRIP" && $STRIP -V 2>&1 | $GREP "strip" >/dev/null; then
+   test -z "$old_striplib" && old_striplib="$STRIP --strip-debug"
+   test -z "$striplib" && striplib="$STRIP --strip-unneeded"
+   { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
+@@ -13130,7 +13130,7 @@ hardcode_automatic_CXX=no
+ inherit_rpath_CXX=no
+ module_cmds_CXX=
+ module_expsym_cmds_CXX=
+-link_all_deplibs_CXX=unknown
++link_all_deplibs_CXX=no
+ old_archive_cmds_CXX=$old_archive_cmds
+ reload_flag_CXX=$reload_flag
+ reload_cmds_CXX=$reload_cmds
+@@ -13348,7 +13348,7 @@ with_gnu_ld=$lt_cv_prog_gnu_ld
+       # archiving commands below assume that GNU ld is being used.
+       if test "$with_gnu_ld" = yes; then
+         archive_cmds_CXX='$CC $pic_flag -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib'
+-        archive_expsym_cmds_CXX='$CC $pic_flag -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib'
++        archive_expsym_cmds_CXX='echo "{ global:" > $lib-ver~		 sed -e "s|$|;|" < $export_symbols >> $lib-ver~	 echo "local: *; };" >> $lib-ver~$CC $pic_flag -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname ${wl}-version-script $wl$lib-ver -o $lib'
+ 
+         hardcode_libdir_flag_spec_CXX='${wl}-rpath ${wl}$libdir'
+         export_dynamic_flag_spec_CXX='${wl}--export-dynamic'
+@@ -13964,7 +13964,7 @@ fi
+ 	    case `$CC -V 2>&1` in
+ 	      *"Version 7."*)
+ 	        archive_cmds_CXX='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib'
+-		archive_expsym_cmds_CXX='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib'
++		archive_expsym_cmds_CXX='echo "{ global:" > $lib-ver~		 sed -e "s|$|;|" < $export_symbols >> $lib-ver~	 echo "local: *; };" >> $lib-ver~$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname ${wl}-version-script $wl$lib-ver -o $lib'
+ 		;;
+ 	      *)  # Version 8.0 or newer
+ 	        tmp_idyn=
+@@ -13972,7 +13972,7 @@ fi
+ 		  ia64*) tmp_idyn=' -i_dynamic';;
+ 		esac
+ 	        archive_cmds_CXX='$CC -shared'"$tmp_idyn"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'
+-		archive_expsym_cmds_CXX='$CC -shared'"$tmp_idyn"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib'
++		archive_expsym_cmds_CXX='echo "{ global:" > $lib-ver~		 sed -e "s|$|;|" < $export_symbols >> $lib-ver~	 echo "local: *; };" >> $lib-ver~$CC -shared'"$tmp_idyn"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-version-script $wl$lib-ver -o $lib'
+ 		;;
+ 	    esac
+ 	    archive_cmds_need_lc_CXX=no
+@@ -14004,7 +14004,7 @@ fi
+ 	      ;;
+ 	    *) # Version 6 and above use weak symbols
+ 	      archive_cmds_CXX='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname -o $lib'
+-	      archive_expsym_cmds_CXX='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname ${wl}-retain-symbols-file ${wl}$export_symbols -o $lib'
++	      archive_expsym_cmds_CXX='echo "{ global:" > $lib-ver~		 sed -e "s|$|;|" < $export_symbols >> $lib-ver~	 echo "local: *; };" >> $lib-ver~$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname ${wl}-version-script ${wl}$lib-ver -o $lib'
+ 	      ;;
+ 	    esac
+ 
+@@ -14015,7 +14015,7 @@ fi
+ 	  cxx*)
+ 	    # Compaq C++
+ 	    archive_cmds_CXX='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib'
+-	    archive_expsym_cmds_CXX='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname  -o $lib ${wl}-retain-symbols-file $wl$export_symbols'
++	    archive_expsym_cmds_CXX='echo "{ global:" > $lib-ver~		 sed -e "s|$|;|" < $export_symbols >> $lib-ver~	 echo "local: *; };" >> $lib-ver~$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname  -o $lib ${wl}-version-script $wl$lib-ver'
+ 
+ 	    runpath_var=LD_RUN_PATH
+ 	    hardcode_libdir_flag_spec_CXX='-rpath $libdir'
+@@ -14049,7 +14049,7 @@ fi
+ 	      # Sun C++ 5.9
+ 	      no_undefined_flag_CXX=' -zdefs'
+ 	      archive_cmds_CXX='$CC -G${allow_undefined_flag} -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags'
+-	      archive_expsym_cmds_CXX='$CC -G${allow_undefined_flag} -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-retain-symbols-file ${wl}$export_symbols'
++	      archive_expsym_cmds_CXX='echo "{ global:" > $lib-ver~		 sed -e "s|$|;|" < $export_symbols >> $lib-ver~	 echo "local: *; };" >> $lib-ver~$CC -G${allow_undefined_flag} -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-version-script ${wl}$lib-ver'
+ 	      hardcode_libdir_flag_spec_CXX='-R$libdir'
+ 	      whole_archive_flag_spec_CXX='${wl}--whole-archive`new_convenience=; for conv in $convenience\"\"; do test -z \"$conv\" || new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive'
+ 	      compiler_needs_object_CXX=yes
+@@ -14122,7 +14122,7 @@ fi
+ 	  archive_cmds_CXX='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $lib'
+ 	  hardcode_libdir_flag_spec_CXX='${wl}-rpath,$libdir'
+ 	  if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then
+-	    archive_expsym_cmds_CXX='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-retain-symbols-file,$export_symbols -o $lib'
++	    archive_expsym_cmds_CXX='echo "{ global:" > $lib-ver~		 sed -e "s|$|;|" < $export_symbols >> $lib-ver~	 echo "local: *; };" >> $lib-ver~$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-version-script,$lib-ver -o $lib'
+ 	    export_dynamic_flag_spec_CXX='${wl}-E'
+ 	    whole_archive_flag_spec_CXX="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive'
+ 	  fi
+@@ -15630,7 +15630,7 @@ freebsd* | dragonfly*)
+   version_type=freebsd-$objformat
+   case $version_type in
+     freebsd-elf*)
+-      library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}'
++      library_names_spec='$libname$release$shared_ext$versuffix  $libname$release$shared_ext$major	 $libname$shared_ext'			 soname_spec='$libname$release$shared_ext$major'
+       need_version=no
+       need_lib_prefix=no
+       ;;
+@@ -16768,9 +16768,9 @@ _ACEOF
+ CXX_CPU_SWITCH=
+ if ! echo "X $CXXFLAGS " | grep -q -- " \(-march=\|-mcpu=\|-mtune=\|-arch=\)" ; then
+   if test "$def_arch_x86" = 1 -a "$host_cpu" != "x86_64"; then
+-    CXX_CPU_SWITCH="-march=$host_cpu"
++    CXX_CPU_SWITCH=
+   elif test "$target_cpu" = "ppc"; then
+-    CXX_CPU_SWITCH="-arch=$host_cpu"
++    CXX_CPU_SWITCH=
+   fi
+ fi
+ 
+@@ -17482,7 +17482,7 @@ fi
+ # parser yacc tables.
+ if echo "$YACC" | grep -q bison; then
+     # NOTE: m4 removes [], that's why it needs to be escaped
+-    bison_version=`$YACC --version | head -n 1 | sed -e 's/[^0-9.]*\([-0-9.]\+\)$/\1/'`
++    bison_version=`$YACC --version | head -n 1 | sed -e 's/[^0-9.]*\([-0-9.]\+\)$/\1/' | sed -e 's/[[:alpha:][:space:]()]*//'`
+     bison_version_major=`echo $bison_version | cut -d. -f1`
+     bison_version_minor=`echo $bison_version | cut -d. -f2`
+ 


Property changes on: trunk/audio/linuxsampler/files/patch-configure
___________________________________________________________________
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
Added: trunk/audio/linuxsampler/files/patch-src_Makefile.in
===================================================================
--- trunk/audio/linuxsampler/files/patch-src_Makefile.in	                        (rev 0)
+++ trunk/audio/linuxsampler/files/patch-src_Makefile.in	2019-02-15 23:40:18 UTC (rev 25045)
@@ -0,0 +1,11 @@
+--- src/Makefile.in.orig	2017-11-19 23:18:33 UTC
++++ src/Makefile.in
+@@ -428,7 +428,7 @@ top_srcdir = @top_srcdir@
+ 
+ # set the include path found by configure
+ AM_CPPFLAGS = $(all_includes) $(GIG_CFLAGS) $(SQLITE3_CFLAGS)
+- at HAVE_WINDOWS_FALSE@system_libs = -lpthread -ldl
++ at HAVE_WINDOWS_FALSE@system_libs = -lpthread
+ @HAVE_WINDOWS_TRUE at system_libs = 
+ @HAVE_WINDOWS_FALSE at SHELL_SUBDIR = shell
+ @HAVE_WINDOWS_TRUE at SHELL_SUBDIR = 


Property changes on: trunk/audio/linuxsampler/files/patch-src_Makefile.in
___________________________________________________________________
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
Added: trunk/audio/linuxsampler/files/patch-src_common_Mutex.cpp
===================================================================
--- trunk/audio/linuxsampler/files/patch-src_common_Mutex.cpp	                        (rev 0)
+++ trunk/audio/linuxsampler/files/patch-src_common_Mutex.cpp	2019-02-15 23:40:18 UTC (rev 25045)
@@ -0,0 +1,10 @@
+--- src/common/Mutex.cpp.orig	2007-11-14 23:42:15 UTC
++++ src/common/Mutex.cpp
+@@ -36,7 +36,6 @@
+ #if !defined(WIN32)
+ #if !defined(_XOPEN_SOURCE) || _XOPEN_SOURCE < 500
+ # undef _XOPEN_SOURCE
+-# define _XOPEN_SOURCE 500 /* to define PTHREAD_MUTEX_ERRORCHECK */
+ # warning "Seems you don't have a UNIX98 compatible system."
+ # warning "Please run LinuxSampler's selftest to make sure this won't be a problem!"
+ # warning "(compile tests with 'make tests', run them with 'src/testcases/linuxsamplertest')"


Property changes on: trunk/audio/linuxsampler/files/patch-src_common_Mutex.cpp
___________________________________________________________________
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
Added: trunk/audio/linuxsampler/files/patch-src_common_atomic.h
===================================================================
--- trunk/audio/linuxsampler/files/patch-src_common_atomic.h	                        (rev 0)
+++ trunk/audio/linuxsampler/files/patch-src_common_atomic.h	2019-02-15 23:40:18 UTC (rev 25045)
@@ -0,0 +1,11 @@
+--- src/common/atomic.h.orig	2009-03-29 18:43:40 UTC
++++ src/common/atomic.h
+@@ -38,7 +38,7 @@
+ #define CONFIG_SMP   /* ... the macro the kernel headers use */
+ #endif
+ 
+-#if defined(__linux__) || defined(WIN32) || defined(__APPLE__)
++#if defined(__linux__) || defined(WIN32) || defined(__APPLE__) || defined(__FreeBSD__) || defined(__DragonFly__)
+ #ifdef _ARCH_PPC
+ 
+ /*


Property changes on: trunk/audio/linuxsampler/files/patch-src_common_atomic.h
___________________________________________________________________
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
Added: trunk/audio/linuxsampler/files/patch-src_drivers_audio_AudioChannel.cpp
===================================================================
--- trunk/audio/linuxsampler/files/patch-src_drivers_audio_AudioChannel.cpp	                        (rev 0)
+++ trunk/audio/linuxsampler/files/patch-src_drivers_audio_AudioChannel.cpp	2019-02-15 23:40:18 UTC (rev 25045)
@@ -0,0 +1,11 @@
+--- src/drivers/audio/AudioChannel.cpp.orig	2012-10-04 18:16:26 UTC
++++ src/drivers/audio/AudioChannel.cpp
+@@ -26,7 +26,7 @@
+ #include "../../common/global_private.h"
+ #include "../../common/Thread.h" // needed for allocAlignedMem() and freeAlignedMem()
+ 
+-#if defined(__APPLE__)
++#if defined(__APPLE__) || defined(__FreeBSD__) || defined(__DragonFly__)
+ # include <stdlib.h>
+ #else
+ # include <malloc.h>


Property changes on: trunk/audio/linuxsampler/files/patch-src_drivers_audio_AudioChannel.cpp
___________________________________________________________________
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
Added: trunk/audio/linuxsampler/pkg-descr
===================================================================
--- trunk/audio/linuxsampler/pkg-descr	                        (rev 0)
+++ trunk/audio/linuxsampler/pkg-descr	2019-02-15 23:40:18 UTC (rev 25045)
@@ -0,0 +1,7 @@
+The LinuxSampler project was founded with the goal to produce a
+free, streaming capable open source pure software audio sampler
+with professional grade features, comparable to both hardware and
+commercial Windows/Mac software samplers and to introduce new
+features not yet available by any other sampler in the world.
+
+WWW: http://www.linuxsampler.org/


Property changes on: trunk/audio/linuxsampler/pkg-descr
___________________________________________________________________
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
Added: trunk/audio/linuxsampler/pkg-plist
===================================================================
--- trunk/audio/linuxsampler/pkg-plist	                        (rev 0)
+++ trunk/audio/linuxsampler/pkg-plist	2019-02-15 23:40:18 UTC (rev 25045)
@@ -0,0 +1,51 @@
+bin/linuxsampler
+bin/ls_instr_script
+bin/lscp
+include/linuxsampler/EventListeners.h
+include/linuxsampler/Sampler.h
+include/linuxsampler/common/Condition.h
+include/linuxsampler/common/ConstCapacityArray.h
+include/linuxsampler/common/Exception.h
+include/linuxsampler/common/Mutex.h
+include/linuxsampler/common/SynchronizedConfig.h
+include/linuxsampler/common/Thread.h
+include/linuxsampler/common/global.h
+include/linuxsampler/common/lsatomic.h
+include/linuxsampler/common/optional.h
+include/linuxsampler/drivers/Device.h
+include/linuxsampler/drivers/DeviceParameter.h
+include/linuxsampler/drivers/audio/AudioChannel.h
+include/linuxsampler/drivers/audio/AudioOutputDevice.h
+include/linuxsampler/drivers/midi/MidiInputDevice.h
+include/linuxsampler/drivers/midi/MidiInputPort.h
+include/linuxsampler/drivers/midi/MidiInstrumentMapper.h
+include/linuxsampler/drivers/midi/VirtualMidiDevice.h
+include/linuxsampler/drivers/midi/midi.h
+include/linuxsampler/effects/Effect.h
+include/linuxsampler/effects/EffectChain.h
+include/linuxsampler/effects/EffectControl.h
+include/linuxsampler/effects/EffectFactory.h
+include/linuxsampler/effects/EffectInfo.h
+include/linuxsampler/engines/Engine.h
+include/linuxsampler/engines/EngineChannel.h
+include/linuxsampler/engines/FxSend.h
+include/linuxsampler/engines/InstrumentManager.h
+include/linuxsampler/plugins/InstrumentEditor.h
+include/linuxsampler/plugins/InstrumentEditorFactory.h
+%%DSSI%%lib/dssi/linuxsampler.a
+%%DSSI%%lib/dssi/linuxsampler.so
+lib/linuxsampler/liblinuxsampler.a
+lib/linuxsampler/liblinuxsampler.so
+lib/linuxsampler/liblinuxsampler.so.4
+lib/linuxsampler/liblinuxsampler.so.4.0.0
+lib/linuxsampler/plugins/.keep_me
+%%LV2%%lib/lv2/linuxsampler.lv2/linuxsampler.a
+%%LV2%%lib/lv2/linuxsampler.lv2/linuxsampler.so
+%%LV2%%lib/lv2/linuxsampler.lv2/linuxsampler.ttl
+%%LV2%%lib/lv2/linuxsampler.lv2/manifest.ttl
+libdata/pkgconfig/linuxsampler.pc
+man/man1/linuxsampler.1.gz
+man/man1/lscp.1.gz
+/var/lib/linuxsampler/instruments.db
+ at dir /var/lib/linuxsampler
+ at dir /var/lib


Property changes on: trunk/audio/linuxsampler/pkg-plist
___________________________________________________________________
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property


More information about the Midnightbsd-cvs mailing list