diff options
Diffstat (limited to 'freebsd/dependencies')
43 files changed, 1060 insertions, 51 deletions
diff --git a/freebsd/dependencies/akode/Makefile b/freebsd/dependencies/akode/Makefile index 1da51212c..35e244e3a 100644 --- a/freebsd/dependencies/akode/Makefile +++ b/freebsd/dependencies/akode/Makefile @@ -22,6 +22,7 @@ PREFIX= ${LOCALBASE} OPTIONS_DEFINE= ALSA_SINK \ JACK_SINK \ OSS_SINK \ + PULSE_SINK \ \ FFMPEG_DECODER \ MPC_DECODER \ @@ -33,6 +34,7 @@ OPTIONS_DEFINE= ALSA_SINK \ OPTIONS_DEFAULT=ALSA_SINK \ JACK_SINK \ OSS_SINK \ + PULSE_SINK \ \ MPC_DECODER \ MPEG_DECODER \ @@ -43,6 +45,7 @@ OPTIONS_DEFAULT=ALSA_SINK \ ALSA_SINK_DESC= Alsa output plugin JACK_SINK_DESC= Jack output plugin OSS_SINK_DESC= OSS output plugin +PULSE_SINK_DESC= PulseAudio output plugin FFMPEG_DECODER_DESC= FFMPEG decoder plugin (broken) MPC_DECODER_DESC= Monkey's Audio decoder plugin MPEG_DECODER_DESC= MPEG audio decoder plugin (including mp3) @@ -68,6 +71,11 @@ CONFIGURE_ARGS+= -DWITH_JACK_SINK="ON" CONFIGURE_ARGS+= -DWITH_OSS_SINK="ON" .endif +.if ${PORT_OPTIONS:MPULSE_SINK} +LIB_DEPENDS+= libpulse-simple.so:${PORTSDIR}/audio/pulseaudio +CONFIGURE_ARGS+= -DWITH_PULSE_SINK="ON" +.endif + .if ${PORT_OPTIONS:MFFMPEG_DECODER} LIB_DEPENDS+= libavformat.so:${PORTSDIR}//multimedia/ffmpeg \ libavcodec.so:${PORTSDIR}//multimedia/ffmpeg diff --git a/freebsd/dependencies/akode/files/patch-amd64_libflac8_fix.diff b/freebsd/dependencies/akode/files/patch-a00-amd64_libflac8_fix.diff index d0334a3a4..d0334a3a4 100644 --- a/freebsd/dependencies/akode/files/patch-amd64_libflac8_fix.diff +++ b/freebsd/dependencies/akode/files/patch-a00-amd64_libflac8_fix.diff diff --git a/freebsd/dependencies/akode/files/patch-clang.diff b/freebsd/dependencies/akode/files/patch-a01-clang.diff index 309665bab..309665bab 100644 --- a/freebsd/dependencies/akode/files/patch-clang.diff +++ b/freebsd/dependencies/akode/files/patch-a01-clang.diff diff --git a/freebsd/dependencies/akode/files/patch-cmake.diff b/freebsd/dependencies/akode/files/patch-a02-cmake.diff index accd12478..accd12478 100644 --- a/freebsd/dependencies/akode/files/patch-cmake.diff +++ b/freebsd/dependencies/akode/files/patch-a02-cmake.diff diff --git a/freebsd/dependencies/akode/files/patch-b00-fix-ogg-on-suse.diff b/freebsd/dependencies/akode/files/patch-b00-fix-ogg-on-suse.diff new file mode 100644 index 000000000..3ff08a2ec --- /dev/null +++ b/freebsd/dependencies/akode/files/patch-b00-fix-ogg-on-suse.diff @@ -0,0 +1,86 @@ +commit 386d5647da414c477f7f045c2850bfb1854e2302 +Author: François Andriot <francois.andriot@free.fr> +Date: Thu Oct 15 04:40:52 2015 +0200 + + Fix OGG detection on openSUSE + + Signed-off-by: François Andriot <francois.andriot@free.fr> + +diff --git a/ConfigureChecks.cmake b/ConfigureChecks.cmake +index 1fa37d7..df4d86a 100644 +--- a/ConfigureChecks.cmake ++++ b/ConfigureChecks.cmake +@@ -210,11 +210,11 @@ if( WITH_XIPH_DECODER ) + check_include_file( "OggFLAC/seekable_stream_decoder.h" HAVE_OGGFLAC_H ) + if( HAVE_OGGFLAC_H ) + tde_save_and_set( CMAKE_REQUIRED_LIBRARIES m OggFLAC FLAC ) +- check_library_exits( OggFLAC OggFLAC__seekable_stream_decoder_process_single "" HAVE_LIBOGGFLAC ) ++ check_library_exists( OggFLAC OggFLAC__seekable_stream_decoder_process_single "" HAVE_LIBOGGFLAC ) + tde_restore( CMAKE_REQUIRED_LIBRARIES ) + if( HAVE_LIBOGGFLAC ) + set( OGGFLAC_LIBRARIES "-lOggFLAC" ) +- endif( HAVE_LIBFLAC ) ++ endif( HAVE_LIBOGGFLAC ) + endif( HAVE_OGGFLAC_H ) + endif( NOT HAVE_LIBFLAC113 ) + endif( FLAC_FOUND ) +@@ -237,7 +237,7 @@ if( WITH_XIPH_DECODER ) + pkg_search_module( SPEEX speex>=1.1 ) + if( SPEEX_FOUND ) + set( HAVE_SPEEX11 1 ) +- check_library_exits( speex speex_decode_int "" HAVE_SPEEX_DECODE_INT ) ++ check_library_exists( speex speex_decode_int "" HAVE_SPEEX_DECODE_INT ) + if( NOT HAVE_SPEEX_DECODE_INT ) + set( BROKEN_SPEEX11 1 ) + endif( ) +@@ -267,6 +267,11 @@ endif( WITH_XIPH_DECODER ) + + if( WITH_XIPH_DECODER ) + ++ pkg_search_module( OGG ogg ) ++ if( NOT OGG_FOUND ) ++ tde_message_fatal( "ogg are required, but not found on your system" ) ++ endif( NOT OGG_FOUND ) ++ + pkg_search_module( VORBIS vorbis ) + if( NOT VORBIS_FOUND ) + tde_message_fatal( "ogg/vorbis are required, but not found on your system" ) +diff --git a/akode/configure.in.in b/akode/configure.in.in +index f18e6c5..80338d5 100644 +--- a/akode/configure.in.in ++++ b/akode/configure.in.in +@@ -1,7 +1,7 @@ + dnl don't remove the below + dnl AC_OUTPUT(akode/akode-config) + +-AM_CONFIG_HEADER(akode/lib/akode_export.h) ++AC_CONFIG_HEADER(akode/lib/akode_export.h) + + AC_DEFUN([AC_CHECK_LIBFLAC], + [ +diff --git a/akode/plugins/xiph_decoder/CMakeLists.txt b/akode/plugins/xiph_decoder/CMakeLists.txt +index a0d1f28..4e6693b 100644 +--- a/akode/plugins/xiph_decoder/CMakeLists.txt ++++ b/akode/plugins/xiph_decoder/CMakeLists.txt +@@ -38,7 +38,7 @@ tde_add_library( + akode-shared + ${FLAC_LIBRARIES} ${OGGFLAC_LIBRARIES} + ${VORBIS_LIBRARIES} ${VORBISFILE_LIBRARIES} +- ${SPEEX_LIBRARIES} ++ ${SPEEX_LIBRARIES} ${OGG_LIBRARIES} + DESTINATION ${LIB_INSTALL_DIR} + ) + +diff --git a/configure.in.in b/configure.in.in +index a6fae9f..0eaed3d 100644 +--- a/configure.in.in ++++ b/configure.in.in +@@ -55,7 +55,7 @@ KDE_CONF_FILES + + dnl without this order in this file, automake will be confused! + dnl +-AM_CONFIG_HEADER(config.h) ++AC_CONFIG_HEADER(config.h) + + dnl checks for programs. + dnl first check for c/c++ compilers diff --git a/freebsd/dependencies/akode/files/patch-b01-add-pulseaudio-support.diff b/freebsd/dependencies/akode/files/patch-b01-add-pulseaudio-support.diff new file mode 100644 index 000000000..4cc158086 --- /dev/null +++ b/freebsd/dependencies/akode/files/patch-b01-add-pulseaudio-support.diff @@ -0,0 +1,134 @@ +commit cf18d66ac5c3904f3f932848f761ec5d103a470c +Author: François Andriot <francois.andriot@free.fr> +Date: Thu Oct 15 04:42:48 2015 +0200 + + Add pulseaudio support + [taken from Fedora patches] + +diff --git a/CMakeLists.txt b/CMakeLists.txt +index f8e2d94..df5b7ea 100644 +--- a/CMakeLists.txt ++++ b/CMakeLists.txt +@@ -49,7 +49,7 @@ OPTION( WITH_LIBLTDL "Build with libltdl" ${WITH_ALL_OPTIONS} ) + + OPTION( WITH_ALSA_SINK "Build with alsa sink" ${WITH_ALL_OPTIONS} ) + OPTION( WITH_JACK_SINK "Build with jack sink" ${WITH_ALL_OPTIONS} ) +-OPTION( WITH_POLYP_SINK "Build with polyp sink" OFF ) ++OPTION( WITH_PULSE_SINK "Build with pulseaudio sink" OFF ) + OPTION( WITH_OSS_SINK "Build with oss sink" ${WITH_ALL_OPTIONS} ) + OPTION( WITH_SUN_SINK "Build with sun sink" OFF ) + +diff --git a/ConfigureChecks.cmake b/ConfigureChecks.cmake +index df4d86a..635db2e 100644 +--- a/ConfigureChecks.cmake ++++ b/ConfigureChecks.cmake +@@ -118,15 +118,15 @@ endif( WITH_OSS_SINK ) + + ##### check polyp support ####################### + +-if( WITH_POLYP_SINK ) ++if( WITH_PULSE_SINK ) + +- pkg_search_module( POLYP polyplib-simple>=0.70 ) ++ pkg_search_module( PULSE libpulse-simple>=0.9.2 ) + +- if( NOT POLYP_FOUND ) +- tde_message_fatal( "polyplib-simple >= 0.70 are required, but not found on your system" ) +- endif( NOT POLYP_FOUND ) ++ if( NOT PULSE_FOUND ) ++ tde_message_fatal( "libpulse-simple >= 0.9.2 are required, but not found on your system" ) ++ endif( NOT PULSE_FOUND ) + +-endif( WITH_POLYP_SINK ) ++endif( WITH_PULSE_SINK ) + + + ##### check sun support ######################### +diff --git a/akode/plugins/CMakeLists.txt b/akode/plugins/CMakeLists.txt +index ce0f3a4..6e11f1a 100644 +--- a/akode/plugins/CMakeLists.txt ++++ b/akode/plugins/CMakeLists.txt +@@ -15,7 +15,7 @@ + tde_conditional_add_subdirectory( WITH_ALSA_SINK alsa_sink ) + tde_conditional_add_subdirectory( WITH_JACK_SINK jack_sink ) + tde_conditional_add_subdirectory( WITH_OSS_SINK oss_sink ) +-tde_conditional_add_subdirectory( WITH_POLYP_SINK polyp_sink ) ++tde_conditional_add_subdirectory( WITH_PULSE_SINK polyp_sink ) + tde_conditional_add_subdirectory( WITH_SUN_SINK sun_sink ) + + tde_conditional_add_subdirectory( WITH_FFMPEG_DECODER ffmpeg_decoder ) +diff --git a/akode/plugins/polyp_sink/CMakeLists.txt b/akode/plugins/polyp_sink/CMakeLists.txt +index 90c4f3c..28a940e 100644 +--- a/akode/plugins/polyp_sink/CMakeLists.txt ++++ b/akode/plugins/polyp_sink/CMakeLists.txt +@@ -15,7 +15,7 @@ include_directories( + ${CMAKE_SOURCE_DIR}/akode/lib + ${CMAKE_CURRENT_BINARY_DIR} + ${CMAKE_CURRENT_SOURCE_DIR} +- ${POLYP_INCLUDE_DIRS} ++ ${PULSE_INCLUDE_DIRS} + ) + + +@@ -26,7 +26,7 @@ set( target libakode_polyp_sink ) + tde_add_library( + ${target} MODULE + SOURCES polyp_sink.cpp +- LINK akode-shared ${POLYP_LIBRARIES} ++ LINK akode-shared ${PULSE_LIBRARIES} + DESTINATION ${LIB_INSTALL_DIR} + ) + +diff --git a/akode/plugins/polyp_sink/Makefile.am b/akode/plugins/polyp_sink/Makefile.am +index b67602a..a58b04c 100644 +--- a/akode/plugins/polyp_sink/Makefile.am ++++ b/akode/plugins/polyp_sink/Makefile.am +@@ -1,7 +1,7 @@ +-INCLUDES = -I$(top_srcdir)/akode/lib -I$(top_builddir)/akode/lib $(POLYP_CFLAGS) $(all_includes) ++INCLUDES = -I$(top_srcdir)/akode/lib -I$(top_builddir)/akode/lib $(PULSE_CFLAGS) $(all_includes) + + lib_LTLIBRARIES = libakode_polyp_sink.la + + libakode_polyp_sink_la_SOURCES = polyp_sink.cpp +-libakode_polyp_sink_la_LDFLAGS = -module -avoid-version -no-undefined $(POLYP_LDFLAGS) +-libakode_polyp_sink_la_LIBADD = ../../lib/libakode.la $(POLYP_LIBADD) ++libakode_polyp_sink_la_LDFLAGS = -module -avoid-version -no-undefined $(PULSE_LDFLAGS) ++libakode_polyp_sink_la_LIBADD = ../../lib/libakode.la $(PULSE_LIBADD) +diff --git a/akode/plugins/polyp_sink/polyp_sink.cpp b/akode/plugins/polyp_sink/polyp_sink.cpp +index 9376dac..b48b63e 100644 +--- a/akode/plugins/polyp_sink/polyp_sink.cpp ++++ b/akode/plugins/polyp_sink/polyp_sink.cpp +@@ -25,7 +25,7 @@ + #elif defined(HAVE_INTTYPES_H) + #include <inttypes.h> + #endif +-#include <polyp/polyplib-simple.h> ++#include <pulse/simple.h> + + #include "audioframe.h" + #include "audiobuffer.h" +@@ -59,7 +59,7 @@ PolypSink::PolypSink() + + bool PolypSink::open() { + int error = 0; +- m_data->server = pa_simple_new(0, "akode-client", PA_STREAM_PLAYBACK, 0, "", &m_data->sample_spec, 0, 255, &error ); ++ m_data->server = pa_simple_new(0, "akode-client", PA_STREAM_PLAYBACK, 0, "", &m_data->sample_spec, 0, 0, &error ); + if (!m_data->server || error != 0) { + m_data->error = true; + close(); +diff --git a/config.h.in b/config.h.in +index 7fe6faf..eed77f8 100644 +--- a/config.h.in ++++ b/config.h.in +@@ -43,9 +43,9 @@ + /* Define if you have libOggFLAC (required for loading OggFLAC files) */ + #undef HAVE_LIBOGGFLAC + +-/* Define if you have polyplib (required if you want Polypaudio server ++/* Define if you have libpulse (required if you want PulseAudio server + support) */ +-#undef HAVE_LIBPOLYP ++#undef HAVE_LIBPULSE + + /* defined if you have libsamplerate library and header */ + #undef HAVE_LIBSAMPLERATE diff --git a/freebsd/dependencies/akode/files/patch-b02-rename-polyp-to-pulse.diff b/freebsd/dependencies/akode/files/patch-b02-rename-polyp-to-pulse.diff new file mode 100644 index 000000000..695c4e1fa --- /dev/null +++ b/freebsd/dependencies/akode/files/patch-b02-rename-polyp-to-pulse.diff @@ -0,0 +1,687 @@ +commit b4697bcfd6567f704e01927fdaf77f3ab5b9112b +Author: Slávek Banko <slavek.banko@axis.cz> +Date: Thu Oct 15 04:46:45 2015 +0200 + + Rename completely from polyp to pulse + + Signed-off-by: Slávek Banko <slavek.banko@axis.cz> + +diff --git a/ConfigureChecks.cmake b/ConfigureChecks.cmake +index 635db2e..838fb28 100644 +--- a/ConfigureChecks.cmake ++++ b/ConfigureChecks.cmake +@@ -116,7 +116,7 @@ if( WITH_OSS_SINK ) + endif( WITH_OSS_SINK ) + + +-##### check polyp support ####################### ++##### check pulse support ####################### + + if( WITH_PULSE_SINK ) + +diff --git a/PACKAGING b/PACKAGING +index da75139..8cbd9f1 100644 +--- a/PACKAGING ++++ b/PACKAGING +@@ -7,9 +7,9 @@ Take especially note of the following: + - If you wish to install plugins in a non-standard place, you can change the + AKODE_SEARCHDIR definition in lib/pluginhandler.cpp. + - You SHOULD not install sinks for backends you don't use. Thus jack_sink +- should only be installed when jackd is available, polyp_sink only when +- the polypaudio server is used and alsa_sink only when using a Linux kernel ++ should only be installed when jackd is available, pulse_sink only when ++ the PulseAudio server is used and alsa_sink only when using a Linux kernel + with ALSA drivers. + When using direct aKode playback sinks will be autodetected by loading and +- probing plugins in this order: polyp, jack, alsa, oss ++ probing plugins in this order: pulse, jack, alsa, oss + +diff --git a/akode/PACKAGING b/akode/PACKAGING +index da75139..8cbd9f1 100644 +--- a/akode/PACKAGING ++++ b/akode/PACKAGING +@@ -7,9 +7,9 @@ Take especially note of the following: + - If you wish to install plugins in a non-standard place, you can change the + AKODE_SEARCHDIR definition in lib/pluginhandler.cpp. + - You SHOULD not install sinks for backends you don't use. Thus jack_sink +- should only be installed when jackd is available, polyp_sink only when +- the polypaudio server is used and alsa_sink only when using a Linux kernel ++ should only be installed when jackd is available, pulse_sink only when ++ the PulseAudio server is used and alsa_sink only when using a Linux kernel + with ALSA drivers. + When using direct aKode playback sinks will be autodetected by loading and +- probing plugins in this order: polyp, jack, alsa, oss ++ probing plugins in this order: pulse, jack, alsa, oss + +diff --git a/akode/configure.in.in b/akode/configure.in.in +index 80338d5..80d0114 100644 +--- a/akode/configure.in.in ++++ b/akode/configure.in.in +@@ -270,24 +270,24 @@ AC_SUBST(JACK_LIBADD) + AC_SUBST(JACK_LDFLAGS) + fi + +-AC_ARG_WITH(polypaudio,AC_HELP_STRING([--with-polypaudio],[Enable Polypaudio server support @<:@default=check@:>@]),[polypaudio_test="$withval"],[polypaudio_test="yes"]) +- +-if test "x$polypaudio_test" = "xyes" ; then +-AC_MSG_CHECKING(for Polypaudio 0.7 or later) +-if $PKG_CONFIG --atleast-version 0.7 polyplib-simple >/dev/null 2>&1 ; then +- POLYP_CFLAGS="`$PKG_CONFIG --cflags polyplib-simple`" +- POLYP_LIBADD="`$PKG_CONFIG --libs-only-l polyplib-simple`" +- POLYP_LDFLAGS="`$PKG_CONFIG --libs-only-L polyplib-simple`" +- have_polyp=yes ++AC_ARG_WITH(pulseaudio,AC_HELP_STRING([--with-pulseaudio],[Enable PulseAudio server support @<:@default=check@:>@]),[pulseaudio_test="$withval"],[pulseaudio_test="yes"]) ++ ++if test "x$pulseaudio_test" = "xyes" ; then ++AC_MSG_CHECKING(for pulseaudio 0.9.2 or later) ++if $PKG_CONFIG --atleast-version 0.9.2 libpulse-simple >/dev/null 2>&1 ; then ++ PULSE_CFLAGS="`$PKG_CONFIG --cflags libpulse-simple`" ++ PULSE_LIBADD="`$PKG_CONFIG --libs-only-l libpulse-simple`" ++ PULSE_LDFLAGS="`$PKG_CONFIG --libs-only-L libpulse-simple`" ++ have_pulse=yes + AC_MSG_RESULT(yes) +- AC_DEFINE(HAVE_LIBPOLYP, 1, +- [Define if you have polyplib (required if you want Polypaudio server support)]) ++ AC_DEFINE(HAVE_LIBPULSE, 1, ++ [Define if you have libpulse (required if you want PulseAudio server support)]) + else + AC_MSG_RESULT(not installed) + fi +-AC_SUBST(POLYP_CFLAGS) +-AC_SUBST(POLYP_LIBADD) +-AC_SUBST(POLYP_LDFLAGS) ++AC_SUBST(PULSE_CFLAGS) ++AC_SUBST(PULSE_LIBADD) ++AC_SUBST(PULSE_LDFLAGS) + fi + + AC_ARG_WITH(ffmpeg,AC_HELP_STRING([--with-ffmpeg],[Enable experimental FFMPEG decoder support @<:@default=check@:>@]),[ffmpeg_test="$withval"],[ffmpeg_test="yes"]) +@@ -482,7 +482,7 @@ AM_CONDITIONAL(include_alsa_sink, test x$have_alsa = xyes) + AM_CONDITIONAL(include_oss_sink, test x$have_oss = xyes) + AM_CONDITIONAL(include_sun_sink, test x$have_sun = xyes) + AM_CONDITIONAL(include_jack_sink, test x$have_jack = xyes) +-AM_CONDITIONAL(include_polyp_sink, test x$have_polyp = xyes) ++AM_CONDITIONAL(include_pulse_sink, test x$have_pulse = xyes) + AM_CONDITIONAL(include_ffmpeg_decoder, test x$have_ffmpeg = xyes) + + AC_MSG_CHECKING(for compilable aKode) +diff --git a/akode/lib/auto_sink.cpp b/akode/lib/auto_sink.cpp +index bcc1250..bee17b1 100644 +--- a/akode/lib/auto_sink.cpp ++++ b/akode/lib/auto_sink.cpp +@@ -65,8 +65,8 @@ AutoSink::~AutoSink() + bool AutoSink::open() + { + // Try Polypaudio +- if (getenv("POLYP_SERVER")) +- if (m_data->tryOpen("polyp")) return true; ++ if (getenv("PULSE_SERVER")) ++ if (m_data->tryOpen("pulse")) return true; + // Try Jack + if (m_data->tryOpen("jack")) return true; + // Try ALSA +diff --git a/akode/plugins/CMakeLists.txt b/akode/plugins/CMakeLists.txt +index 6e11f1a..89bcfd1 100644 +--- a/akode/plugins/CMakeLists.txt ++++ b/akode/plugins/CMakeLists.txt +@@ -15,7 +15,7 @@ + tde_conditional_add_subdirectory( WITH_ALSA_SINK alsa_sink ) + tde_conditional_add_subdirectory( WITH_JACK_SINK jack_sink ) + tde_conditional_add_subdirectory( WITH_OSS_SINK oss_sink ) +-tde_conditional_add_subdirectory( WITH_PULSE_SINK polyp_sink ) ++tde_conditional_add_subdirectory( WITH_PULSE_SINK pulse_sink ) + tde_conditional_add_subdirectory( WITH_SUN_SINK sun_sink ) + + tde_conditional_add_subdirectory( WITH_FFMPEG_DECODER ffmpeg_decoder ) +diff --git a/akode/plugins/Makefile.am b/akode/plugins/Makefile.am +index 74f27e5..4a13c85 100644 +--- a/akode/plugins/Makefile.am ++++ b/akode/plugins/Makefile.am +@@ -32,12 +32,12 @@ if include_jack_sink + AKODE_JACK_SINK=jack_sink + endif + +-if include_polyp_sink +-AKODE_POLYP_SINK=polyp_sink ++if include_pulse_sink ++AKODE_PULSE_SINK=pulse_sink + endif + + SUBDIRS= $(AKODE_MPC_DECODER) $(AKODE_XIPH_DECODER) \ + $(AKODE_MPEG_DECODER) $(AKODE_FFMPEG_DECODER) \ + $(AKODE_ALSA_SINK) $(AKODE_OSS_SINK) $(AKODE_SUN_SINK) \ +- $(AKODE_JACK_SINK) $(AKODE_POLYP_SINK) \ ++ $(AKODE_JACK_SINK) $(AKODE_PULSE_SINK) \ + $(AKODE_SRC_RESAMPLER) +diff --git a/akode/plugins/polyp_sink/CMakeLists.txt b/akode/plugins/polyp_sink/CMakeLists.txt +deleted file mode 100644 +index 28a940e..0000000 +--- a/akode/plugins/polyp_sink/CMakeLists.txt ++++ /dev/null +@@ -1,32 +0,0 @@ +-################################################# +-# +-# (C) 2015 Slávek Banko +-# slavek (DOT) banko (AT) axis.cz +-# +-# Improvements and feedback are welcome +-# +-# This file is released under GPL >= 2 +-# +-################################################# +- +-include_directories( +- ${CMAKE_BINARY_DIR} +- ${CMAKE_BINARY_DIR}/akode/lib +- ${CMAKE_SOURCE_DIR}/akode/lib +- ${CMAKE_CURRENT_BINARY_DIR} +- ${CMAKE_CURRENT_SOURCE_DIR} +- ${PULSE_INCLUDE_DIRS} +-) +- +- +-##### library ################################### +- +-set( target libakode_polyp_sink ) +- +-tde_add_library( +- ${target} MODULE +- SOURCES polyp_sink.cpp +- LINK akode-shared ${PULSE_LIBRARIES} +- DESTINATION ${LIB_INSTALL_DIR} +-) +- +diff --git a/akode/plugins/polyp_sink/Makefile.am b/akode/plugins/polyp_sink/Makefile.am +deleted file mode 100644 +index a58b04c..0000000 +--- a/akode/plugins/polyp_sink/Makefile.am ++++ /dev/null +@@ -1,7 +0,0 @@ +-INCLUDES = -I$(top_srcdir)/akode/lib -I$(top_builddir)/akode/lib $(PULSE_CFLAGS) $(all_includes) +- +-lib_LTLIBRARIES = libakode_polyp_sink.la +- +-libakode_polyp_sink_la_SOURCES = polyp_sink.cpp +-libakode_polyp_sink_la_LDFLAGS = -module -avoid-version -no-undefined $(PULSE_LDFLAGS) +-libakode_polyp_sink_la_LIBADD = ../../lib/libakode.la $(PULSE_LIBADD) +diff --git a/akode/plugins/polyp_sink/polyp_sink.cpp b/akode/plugins/polyp_sink/polyp_sink.cpp +deleted file mode 100644 +index b48b63e..0000000 +--- a/akode/plugins/polyp_sink/polyp_sink.cpp ++++ /dev/null +@@ -1,143 +0,0 @@ +-/* aKode: Polyp-Sink +- +- Copyright (C) 2004 Allan Sandfeld Jensen <kde@carewolf.com> +- +- This library is free software; you can redistribute it and/or +- modify it under the terms of the GNU Library General Public +- License as published by the Free Software Foundation; either +- version 2 of the License, or (at your option) any later version. +- +- This library is distributed in the hope that it will be useful, +- but WITHOUT ANY WARRANTY; without even the implied warranty of +- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +- Library General Public License for more details. +- +- You should have received a copy of the GNU Library General Public License +- along with this library; see the file COPYING.LIB. If not, write to +- the Free Software Foundation, Inc., 51 Franklin Steet, Fifth Floor, +- Boston, MA 02110-1301, USA. +-*/ +- +-#include "config.h" +- +-#ifdef HAVE_STDINT_H +-#include <stdint.h> +-#elif defined(HAVE_INTTYPES_H) +-#include <inttypes.h> +-#endif +-#include <pulse/simple.h> +- +-#include "audioframe.h" +-#include "audiobuffer.h" +-#include "polyp_sink.h" +- +-#include <iostream> +- +-namespace aKode { +- +-extern "C" { PolypSinkPlugin polyp_sink; }; +- +-struct PolypSink::private_data +-{ +- private_data() : server(0), error(false) {}; +- +- pa_simple *server; +- pa_sample_spec sample_spec; +- +- bool error; +- +- AudioConfiguration config; +-}; +- +-PolypSink::PolypSink() +-{ +- m_data = new private_data; +- m_data->sample_spec.rate = 44100; +- m_data->sample_spec.channels = 2; +- m_data->sample_spec.format = PA_SAMPLE_S16NE; +-} +- +-bool PolypSink::open() { +- int error = 0; +- m_data->server = pa_simple_new(0, "akode-client", PA_STREAM_PLAYBACK, 0, "", &m_data->sample_spec, 0, 0, &error ); +- if (!m_data->server || error != 0) { +- m_data->error = true; +- close(); +- std::cout << "Cannot open client\n"; +- return false; +- } +- +- +- return true; +-} +- +-void PolypSink::close() { +- if (m_data->server) { +- pa_simple_free(m_data->server); +- m_data->server = 0; +- } +-} +- +-PolypSink::~PolypSink() +-{ +- close(); +- delete m_data; +-} +- +-int PolypSink::setAudioConfiguration(const AudioConfiguration* config) +-{ +- if (m_data->error) return -1; +- +- int res = 0; +- if (*config == m_data->config) return 0; +- m_data->config = *config; +- +- if (config->channel_config != MonoStereo ) return -1; +- m_data->sample_spec.channels = config->channels; +- +- if (config->sample_width != 16) { +- res = 1; +- m_data->config.sample_width = 16; +- } +- +- m_data->sample_spec.rate = config->sample_rate; +- +- // create new connection +- close(); +- open(); +- +- return res; +-} +- +-const AudioConfiguration* PolypSink::audioConfiguration() const +-{ +- return &m_data->config; +-} +- +-bool PolypSink::writeFrame(AudioFrame* frame) +-{ +- if ( m_data->error ) return false; +- +- if ( frame->channels != m_data->config.channels || frame->sample_rate != m_data->config.sample_rate) +- { +- if (setAudioConfiguration(frame)!=0) +- return false; +- } +- +- int channels = m_data->config.channels; +- int length = frame->length; +- +- int16_t *buffer = new int16_t[length*channels]; +- int16_t** data = (int16_t**)frame->data; +- for(int i = 0; i<length; i++) +- for(int j=0; j<channels; j++) +- buffer[i*channels+j] = data[j][i]; +- +- int error = 0; +- pa_simple_write(m_data->server, buffer, channels*length*2, &error); +- delete[] buffer; +- +- return (error == 0); +-} +- +-} // namespace +diff --git a/akode/plugins/polyp_sink/polyp_sink.h b/akode/plugins/polyp_sink/polyp_sink.h +deleted file mode 100644 +index e279ff6..0000000 +--- a/akode/plugins/polyp_sink/polyp_sink.h ++++ /dev/null +@@ -1,60 +0,0 @@ +-/* aKode: Polyp-Sink +- +- Copyright (C) 2004 Allan Sandfeld Jensen <kde@carewolf.com> +- +- This library is free software; you can redistribute it and/or +- modify it under the terms of the GNU Library General Public +- License as published by the Free Software Foundation; either +- version 2 of the License, or (at your option) any later version. +- +- This library is distributed in the hope that it will be useful, +- but WITHOUT ANY WARRANTY; without even the implied warranty of +- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +- Library General Public License for more details. +- +- You should have received a copy of the GNU Library General Public License +- along with this library; see the file COPYING.LIB. If not, write to +- the Free Software Foundation, Inc., 51 Franklin Steet, Fifth Floor, +- Boston, MA 02110-1301, USA. +-*/ +- +-#ifndef _AKODE_POLYP_SINK_H +-#define _AKODE_POLYP_SINK_H +- +-#include "sink.h" +- +-#include "akode_export.h" +- +-namespace aKode { +- +-class AudioConfiguration; +-class AudioFrame; +- +-class PolypSink : public Sink { +-public: +- PolypSink(); +- ~PolypSink(); +- bool open(); +- void close(); +- int setAudioConfiguration(const AudioConfiguration *config); +- const AudioConfiguration* audioConfiguration() const; +- // Writes blocking +- bool writeFrame(AudioFrame *frame); +- +- struct private_data; +-private: +- private_data *m_data; +-}; +- +-class PolypSinkPlugin : public SinkPlugin { +-public: +- virtual PolypSink* openSink() { +- return new PolypSink(); +- } +-}; +- +-extern "C" AKODE_EXPORT PolypSinkPlugin polyp_sink; +- +-} // namespace +- +-#endif +diff --git a/akode/plugins/pulse_sink/CMakeLists.txt b/akode/plugins/pulse_sink/CMakeLists.txt +new file mode 100644 +index 0000000..04026d3 +--- /dev/null ++++ b/akode/plugins/pulse_sink/CMakeLists.txt +@@ -0,0 +1,32 @@ ++################################################# ++# ++# (C) 2015 Slávek Banko ++# slavek (DOT) banko (AT) axis.cz ++# ++# Improvements and feedback are welcome ++# ++# This file is released under GPL >= 2 ++# ++################################################# ++ ++include_directories( ++ ${CMAKE_BINARY_DIR} ++ ${CMAKE_BINARY_DIR}/akode/lib ++ ${CMAKE_SOURCE_DIR}/akode/lib ++ ${CMAKE_CURRENT_BINARY_DIR} ++ ${CMAKE_CURRENT_SOURCE_DIR} ++ ${PULSE_INCLUDE_DIRS} ++) ++ ++ ++##### library ################################### ++ ++set( target libakode_pulse_sink ) ++ ++tde_add_library( ++ ${target} MODULE ++ SOURCES pulse_sink.cpp ++ LINK akode-shared ${PULSE_LIBRARIES} ++ DESTINATION ${LIB_INSTALL_DIR} ++) ++ +diff --git a/akode/plugins/pulse_sink/Makefile.am b/akode/plugins/pulse_sink/Makefile.am +new file mode 100644 +index 0000000..9f38245 +--- /dev/null ++++ b/akode/plugins/pulse_sink/Makefile.am +@@ -0,0 +1,7 @@ ++INCLUDES = -I$(top_srcdir)/akode/lib -I$(top_builddir)/akode/lib $(PULSE_CFLAGS) $(all_includes) ++ ++lib_LTLIBRARIES = libakode_pulse_sink.la ++ ++libakode_pulse_sink_la_SOURCES = pulse_sink.cpp ++libakode_pulse_sink_la_LDFLAGS = -module -avoid-version -no-undefined $(PULSE_LDFLAGS) ++libakode_pulse_sink_la_LIBADD = ../../lib/libakode.la $(PULSE_LIBADD) +diff --git a/akode/plugins/pulse_sink/pulse_sink.cpp b/akode/plugins/pulse_sink/pulse_sink.cpp +new file mode 100644 +index 0000000..395bfb3 +--- /dev/null ++++ b/akode/plugins/pulse_sink/pulse_sink.cpp +@@ -0,0 +1,143 @@ ++/* aKode: Pulse-Sink ++ ++ Copyright (C) 2004 Allan Sandfeld Jensen <kde@carewolf.com> ++ ++ This library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Library General Public ++ License as published by the Free Software Foundation; either ++ version 2 of the License, or (at your option) any later version. ++ ++ This library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Library General Public License for more details. ++ ++ You should have received a copy of the GNU Library General Public License ++ along with this library; see the file COPYING.LIB. If not, write to ++ the Free Software Foundation, Inc., 51 Franklin Steet, Fifth Floor, ++ Boston, MA 02110-1301, USA. ++*/ ++ ++#include "config.h" ++ ++#ifdef HAVE_STDINT_H ++#include <stdint.h> ++#elif defined(HAVE_INTTYPES_H) ++#include <inttypes.h> ++#endif ++#include <pulse/simple.h> ++ ++#include "audioframe.h" ++#include "audiobuffer.h" ++#include "pulse_sink.h" ++ ++#include <iostream> ++ ++namespace aKode { ++ ++extern "C" { PulseSinkPlugin pulse_sink; }; ++ ++struct PulseSink::private_data ++{ ++ private_data() : server(0), error(false) {}; ++ ++ pa_simple *server; ++ pa_sample_spec sample_spec; ++ ++ bool error; ++ ++ AudioConfiguration config; ++}; ++ ++PulseSink::PulseSink() ++{ ++ m_data = new private_data; ++ m_data->sample_spec.rate = 44100; ++ m_data->sample_spec.channels = 2; ++ m_data->sample_spec.format = PA_SAMPLE_S16NE; ++} ++ ++bool PulseSink::open() { ++ int error = 0; ++ m_data->server = pa_simple_new(0, "akode-client", PA_STREAM_PLAYBACK, 0, "", &m_data->sample_spec, 0, 0, &error ); ++ if (!m_data->server || error != 0) { ++ m_data->error = true; ++ close(); ++ std::cout << "Cannot open client\n"; ++ return false; ++ } ++ ++ ++ return true; ++} ++ ++void PulseSink::close() { ++ if (m_data->server) { ++ pa_simple_free(m_data->server); ++ m_data->server = 0; ++ } ++} ++ ++PulseSink::~PulseSink() ++{ ++ close(); ++ delete m_data; ++} ++ ++int PulseSink::setAudioConfiguration(const AudioConfiguration* config) ++{ ++ if (m_data->error) return -1; ++ ++ int res = 0; ++ if (*config == m_data->config) return 0; ++ m_data->config = *config; ++ ++ if (config->channel_config != MonoStereo ) return -1; ++ m_data->sample_spec.channels = config->channels; ++ ++ if (config->sample_width != 16) { ++ res = 1; ++ m_data->config.sample_width = 16; ++ } ++ ++ m_data->sample_spec.rate = config->sample_rate; ++ ++ // create new connection ++ close(); ++ open(); ++ ++ return res; ++} ++ ++const AudioConfiguration* PulseSink::audioConfiguration() const ++{ ++ return &m_data->config; ++} ++ ++bool PulseSink::writeFrame(AudioFrame* frame) ++{ ++ if ( m_data->error ) return false; ++ ++ if ( frame->channels != m_data->config.channels || frame->sample_rate != m_data->config.sample_rate) ++ { ++ if (setAudioConfiguration(frame)!=0) ++ return false; ++ } ++ ++ int channels = m_data->config.channels; ++ int length = frame->length; ++ ++ int16_t *buffer = new int16_t[length*channels]; ++ int16_t** data = (int16_t**)frame->data; ++ for(int i = 0; i<length; i++) ++ for(int j=0; j<channels; j++) ++ buffer[i*channels+j] = data[j][i]; ++ ++ int error = 0; ++ pa_simple_write(m_data->server, buffer, channels*length*2, &error); ++ delete[] buffer; ++ ++ return (error == 0); ++} ++ ++} // namespace +diff --git a/akode/plugins/pulse_sink/pulse_sink.h b/akode/plugins/pulse_sink/pulse_sink.h +new file mode 100644 +index 0000000..e890e4a +--- /dev/null ++++ b/akode/plugins/pulse_sink/pulse_sink.h +@@ -0,0 +1,60 @@ ++/* aKode: Pulse-Sink ++ ++ Copyright (C) 2004 Allan Sandfeld Jensen <kde@carewolf.com> ++ ++ This library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Library General Public ++ License as published by the Free Software Foundation; either ++ version 2 of the License, or (at your option) any later version. ++ ++ This library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Library General Public License for more details. ++ ++ You should have received a copy of the GNU Library General Public License ++ along with this library; see the file COPYING.LIB. If not, write to ++ the Free Software Foundation, Inc., 51 Franklin Steet, Fifth Floor, ++ Boston, MA 02110-1301, USA. ++*/ ++ ++#ifndef _AKODE_PULSE_SINK_H ++#define _AKODE_PULSE_SINK_H ++ ++#include "sink.h" ++ ++#include "akode_export.h" ++ ++namespace aKode { ++ ++class AudioConfiguration; ++class AudioFrame; ++ ++class PulseSink : public Sink { ++public: ++ PulseSink(); ++ ~PulseSink(); ++ bool open(); ++ void close(); ++ int setAudioConfiguration(const AudioConfiguration *config); ++ const AudioConfiguration* audioConfiguration() const; ++ // Writes blocking ++ bool writeFrame(AudioFrame *frame); ++ ++ struct private_data; ++private: ++ private_data *m_data; ++}; ++ ++class PulseSinkPlugin : public SinkPlugin { ++public: ++ virtual PulseSink* openSink() { ++ return new PulseSink(); ++ } ++}; ++ ++extern "C" AKODE_EXPORT PulseSinkPlugin pulse_sink; ++ ++} // namespace ++ ++#endif diff --git a/freebsd/dependencies/akode/files/patch-b03-add-multilib-support.diff b/freebsd/dependencies/akode/files/patch-b03-add-multilib-support.diff new file mode 100644 index 000000000..ee2a58b08 --- /dev/null +++ b/freebsd/dependencies/akode/files/patch-b03-add-multilib-support.diff @@ -0,0 +1,91 @@ +commit d67c4c24d28fb80653b1d499dcb7cd36284883fd +Author: François Andriot <francois.andriot@free.fr> +Date: Thu Oct 15 04:47:35 2015 +0200 + + Add multilib support + [taken from Fedora patches] + +diff --git a/akode/CMakeLists.txt b/akode/CMakeLists.txt +index 26cc5c0..b7ab6a5 100644 +--- a/akode/CMakeLists.txt ++++ b/akode/CMakeLists.txt +@@ -24,6 +24,10 @@ configure_file( akode-config.in akode-config @ONLY ) + install( PROGRAMS ${CMAKE_CURRENT_BINARY_DIR}/akode-config + DESTINATION ${BIN_INSTALL_DIR} ) + ++configure_file( akode.pc.in akode.pc @ONLY ) ++install( FILES ${CMAKE_CURRENT_BINARY_DIR}/akode.pc ++ DESTINATION ${PKGCONFIG_INSTALL_DIR} ) ++ + + ##### build ##################################### + +diff --git a/akode/Makefile.am b/akode/Makefile.am +index 99455d5..a30cdd8 100644 +--- a/akode/Makefile.am ++++ b/akode/Makefile.am +@@ -1,3 +1,8 @@ + bin_SCRIPTS = akode-config + + SUBDIRS= lib plugins akodeplay ++ ++pkgconfigdir = $(libdir)/pkgconfig ++pkgconfig_DATA = akode.pc ++ ++EXTRA_DIST = akode.pc.in +diff --git a/akode/akode-config.in b/akode/akode-config.in +index b4263be..d1d8457 100644 +--- a/akode/akode-config.in ++++ b/akode/akode-config.in +@@ -15,9 +15,8 @@ EOH + } + + prefix=@prefix@ +-exec_prefix=@exec_prefix@ +-libdir=@libdir@ +-includedir=@includedir@ ++akode_libs="`pkg-config --libs akode`" ++akode_cflags="`pkg-config --cflags akode`" + + flags="" + +@@ -29,10 +28,10 @@ while test $# -gt 0 + do + case $1 in + --libs) +- flags="$flags -L$libdir -lakode" ++ flags="$flags $akode_libs" + ;; + --cflags) +- flags="$flags -I$includedir" ++ flags="$flags $akode_cflags" + ;; + --version) + echo 2.0.2 +diff --git a/akode/akode.pc.in b/akode/akode.pc.in +new file mode 100644 +index 0000000..d17b2ea +--- /dev/null ++++ b/akode/akode.pc.in +@@ -0,0 +1,10 @@ ++prefix=@prefix@ ++exec_prefix=@prefix@ ++libdir=@libdir@ ++includedir=@includedir@ ++ ++Name: akode ++Description: aKode is a simple audio-decoding frame-work ++Version: 2.0.2 ++Libs: -L${libdir} -lakode ++Cflags: -I${includedir} +diff --git a/akode/configure.in.in b/akode/configure.in.in +index 80d0114..2b0ef60 100644 +--- a/akode/configure.in.in ++++ b/akode/configure.in.in +@@ -1,5 +1,6 @@ + dnl don't remove the below + dnl AC_OUTPUT(akode/akode-config) ++dnl AC_OUTPUT(akode/akode.pc) + + AC_CONFIG_HEADER(akode/lib/akode_export.h) + diff --git a/freebsd/dependencies/akode/pkg-plist b/freebsd/dependencies/akode/pkg-plist index 2e3698608..f9e412a07 100644 --- a/freebsd/dependencies/akode/pkg-plist +++ b/freebsd/dependencies/akode/pkg-plist @@ -33,6 +33,8 @@ lib/libakode.so.2.0.0 %%ALSA_SINK%%lib/libakode_alsa_sink.so %%JACK_SINK%%lib/libakode_jack_sink.la %%JACK_SINK%%lib/libakode_jack_sink.so +%%PULSE_SINK%%lib/libakode_pulse_sink.la +%%PULSE_SINK%%lib/libakode_pulse_sink.so %%MPC_DECODER%%lib/libakode_mpc_decoder.la %%MPC_DECODER%%lib/libakode_mpc_decoder.so %%MPEG_DECODER%%lib/libakode_mpeg_decoder.la @@ -43,3 +45,4 @@ lib/libakode.so.2.0.0 %%SRC_RESAMPLER%%lib/libakode_src_resampler.so %%XIPH_DECODER%%lib/libakode_xiph_decoder.la %%XIPH_DECODER%%lib/libakode_xiph_decoder.so +libdata/pkgconfig/akode.pc diff --git a/freebsd/dependencies/arts/Makefile b/freebsd/dependencies/arts/Makefile index ebceafd5d..7fd31df17 100644 --- a/freebsd/dependencies/arts/Makefile +++ b/freebsd/dependencies/arts/Makefile @@ -7,7 +7,7 @@ PORTNAME= arts-trinity COMMENT= aRts (analog realtime synthesizer) - the TDE sound system -TDE_PREVERSION= ~pre1+a273b9bc +TDE_PREVERSION= MASTER_SITE_SUBDIR= a/${PORTNAME} PORTREVISION= 0 CATEGORIES= audio diff --git a/freebsd/dependencies/arts/distinfo b/freebsd/dependencies/arts/distinfo index 5e76da81d..62ba94de2 100644 --- a/freebsd/dependencies/arts/distinfo +++ b/freebsd/dependencies/arts/distinfo @@ -1,2 +1,2 @@ -SHA256 (TDE/dependencies/arts-trinity_14.0.2~pre1.orig.tar.xz) = 625bfe3f55a121c011feed3724cd1cc7c4a2083d12459fc231c4cc5cef34a78d -SIZE (TDE/dependencies/arts-trinity_14.0.2~pre1.orig.tar.xz) = 673212 +SHA256 (TDE/dependencies/arts-trinity_14.0.2.orig.tar.xz) = dbd67b1b812386f9f7b999b677592ac2c8bc7c96d86c8ed0269359909271548f +SIZE (TDE/dependencies/arts-trinity_14.0.2.orig.tar.xz) = 673440 diff --git a/freebsd/dependencies/avahi-tqt/Makefile b/freebsd/dependencies/avahi-tqt/Makefile index a31bc8269..e3021cceb 100644 --- a/freebsd/dependencies/avahi-tqt/Makefile +++ b/freebsd/dependencies/avahi-tqt/Makefile @@ -7,7 +7,7 @@ PORTNAME= avahi-tqt COMMENT= Avahi TQt integration library -TDE_PREVERSION= ~pre0+b76c43f6 +TDE_PREVERSION= MASTER_SITE_SUBDIR= a/${PORTNAME} DISTSRC= ${PORTNAME}-trinity-${TDE_VERSION}${TDE_PREVERSION} PORTREVISION= 0 diff --git a/freebsd/dependencies/avahi-tqt/distinfo b/freebsd/dependencies/avahi-tqt/distinfo index c314b1f23..cbcb8b5da 100644 --- a/freebsd/dependencies/avahi-tqt/distinfo +++ b/freebsd/dependencies/avahi-tqt/distinfo @@ -1,2 +1,2 @@ -SHA256 (TDE/dependencies/avahi-tqt_14.0.2~pre0.orig.tar.xz) = 2f5a0cb9a534a7c63d57ec60bc7484c20266c6816bbabed87101c3d3dbb8adf8 -SIZE (TDE/dependencies/avahi-tqt_14.0.2~pre0.orig.tar.xz) = 212368 +SHA256 (TDE/dependencies/avahi-tqt_14.0.2.orig.tar.xz) = c051ef3c67edb67dd824f614d0fc75ad55ba6116bcb3379195536f7a942e698e +SIZE (TDE/dependencies/avahi-tqt_14.0.2.orig.tar.xz) = 212368 diff --git a/freebsd/dependencies/dbus-1-tqt/Makefile b/freebsd/dependencies/dbus-1-tqt/Makefile index aad041648..28eca468d 100644 --- a/freebsd/dependencies/dbus-1-tqt/Makefile +++ b/freebsd/dependencies/dbus-1-tqt/Makefile @@ -7,7 +7,7 @@ PORTNAME= dbus-1-tqt COMMENT= D-Bus bindings for the Trinity Qt interface -TDE_PREVERSION= ~pre0+77345c72 +TDE_PREVERSION= MASTER_SITE_SUBDIR= d/${PORTNAME} DISTSRC= ${PORTNAME}-trinity-${TDE_VERSION}${TDE_PREVERSION} PORTREVISION= 0 diff --git a/freebsd/dependencies/dbus-1-tqt/distinfo b/freebsd/dependencies/dbus-1-tqt/distinfo index e62595989..602591896 100644 --- a/freebsd/dependencies/dbus-1-tqt/distinfo +++ b/freebsd/dependencies/dbus-1-tqt/distinfo @@ -1,2 +1,2 @@ -SHA256 (TDE/dependencies/dbus-1-tqt_14.0.2~pre0.orig.tar.xz) = 56729b939bf93e2402ba54b0f4dd2eb6545a012036c8a1334ee69bcc758e7a5b -SIZE (TDE/dependencies/dbus-1-tqt_14.0.2~pre0.orig.tar.xz) = 306200 +SHA256 (TDE/dependencies/dbus-1-tqt_14.0.2.orig.tar.xz) = 14062e922508fa288c6b0309688e3b9a19ddad2e499047c8888e0b1c44774dd4 +SIZE (TDE/dependencies/dbus-1-tqt_14.0.2.orig.tar.xz) = 306196 diff --git a/freebsd/dependencies/dbus-tqt/Makefile b/freebsd/dependencies/dbus-tqt/Makefile index 5faa8c213..e4fd6d256 100644 --- a/freebsd/dependencies/dbus-tqt/Makefile +++ b/freebsd/dependencies/dbus-tqt/Makefile @@ -7,7 +7,7 @@ PORTNAME= dbus-tqt COMMENT= TQt D-Bus inter-process communication module -TDE_PREVERSION= ~pre1+64d61c2f +TDE_PREVERSION= MASTER_SITE_SUBDIR= d/${PORTNAME} DISTSRC= ${PORTNAME}-trinity-${TDE_VERSION}${TDE_PREVERSION} PORTREVISION= 0 diff --git a/freebsd/dependencies/dbus-tqt/distinfo b/freebsd/dependencies/dbus-tqt/distinfo index 745fde95e..6ff0b236d 100644 --- a/freebsd/dependencies/dbus-tqt/distinfo +++ b/freebsd/dependencies/dbus-tqt/distinfo @@ -1,2 +1,2 @@ -SHA256 (TDE/dependencies/dbus-tqt_14.0.2~pre1.orig.tar.xz) = 8743a620d6772696349d7839dd8786e9012aa3ecc8170508113bb9d11c6cdd4e -SIZE (TDE/dependencies/dbus-tqt_14.0.2~pre1.orig.tar.xz) = 381552 +SHA256 (TDE/dependencies/dbus-tqt_14.0.2.orig.tar.xz) = ef7d6aacb214996a1850b15f35c7a8df3ac39b472d8bfa985026812d3a118c55 +SIZE (TDE/dependencies/dbus-tqt_14.0.2.orig.tar.xz) = 381632 diff --git a/freebsd/dependencies/libart-lgpl/Makefile b/freebsd/dependencies/libart-lgpl/Makefile index 650342437..1789aa381 100644 --- a/freebsd/dependencies/libart-lgpl/Makefile +++ b/freebsd/dependencies/libart-lgpl/Makefile @@ -7,7 +7,7 @@ PORTNAME= libart_lgpl COMMENT= Library for high-performance 2D graphics -TDE_PREVERSION= ~pre1+e041d2bb +TDE_PREVERSION= MASTER_SITE_SUBDIR= liba/libart-lgpl DISTNAME= libart-lgpl_${TDE_VERSION}${TDE_PREVERSION:C/(~(pre|r|s)[0-9]*).*/\1/1} DISTSRC= libart-lgpl-trinity-${TDE_VERSION}${TDE_PREVERSION} diff --git a/freebsd/dependencies/libart-lgpl/distinfo b/freebsd/dependencies/libart-lgpl/distinfo index 0f67e05b6..dd6684914 100644 --- a/freebsd/dependencies/libart-lgpl/distinfo +++ b/freebsd/dependencies/libart-lgpl/distinfo @@ -1,2 +1,2 @@ -SHA256 (TDE/dependencies/libart-lgpl_14.0.2~pre1.orig.tar.xz) = e9813b8aed247a31e85e880b97c3f8a96d323f2ae9b077a62fe8b276e9a86b60 -SIZE (TDE/dependencies/libart-lgpl_14.0.2~pre1.orig.tar.xz) = 277432 +SHA256 (TDE/dependencies/libart-lgpl_14.0.2.orig.tar.xz) = 5d7229d09f47e7793801da04aefbe89e3649a261cdd6f624699bf39fdf601c60 +SIZE (TDE/dependencies/libart-lgpl_14.0.2.orig.tar.xz) = 277512 diff --git a/freebsd/dependencies/libcaldav/Makefile b/freebsd/dependencies/libcaldav/Makefile index def2a2652..f40a10a61 100644 --- a/freebsd/dependencies/libcaldav/Makefile +++ b/freebsd/dependencies/libcaldav/Makefile @@ -7,7 +7,7 @@ PORTNAME= libcaldav COMMENT= libcaldav provides a C interface for caldav PIM clients -TDE_PREVERSION= ~pre0+074fd775 +TDE_PREVERSION= MASTER_SITE_SUBDIR= libc/${PORTNAME} DISTSRC= ${PORTNAME}-trinity-${TDE_VERSION}${TDE_PREVERSION} PORTREVISION= 0 diff --git a/freebsd/dependencies/libcaldav/distinfo b/freebsd/dependencies/libcaldav/distinfo index 2fc4cc5a1..8eae875a5 100644 --- a/freebsd/dependencies/libcaldav/distinfo +++ b/freebsd/dependencies/libcaldav/distinfo @@ -1,2 +1,2 @@ -SHA256 (TDE/dependencies/libcaldav_14.0.2~pre0.orig.tar.xz) = b46312cc0b562fa266b83bad8bb31234883323701202fed8a438d0a905b2c973 -SIZE (TDE/dependencies/libcaldav_14.0.2~pre0.orig.tar.xz) = 203344 +SHA256 (TDE/dependencies/libcaldav_14.0.2.orig.tar.xz) = 7ad6cddeeccdf7923542d6f9efe60a9bbf31a63098ff39d0d715eeecbc1d41de +SIZE (TDE/dependencies/libcaldav_14.0.2.orig.tar.xz) = 203408 diff --git a/freebsd/dependencies/libcarddav/Makefile b/freebsd/dependencies/libcarddav/Makefile index 8eca62533..c77d7ca65 100644 --- a/freebsd/dependencies/libcarddav/Makefile +++ b/freebsd/dependencies/libcarddav/Makefile @@ -7,7 +7,7 @@ PORTNAME= libcarddav COMMENT= libcarddav provides a C interface for carddav PIM clients -TDE_PREVERSION= ~pre0+8a582438 +TDE_PREVERSION= MASTER_SITE_SUBDIR= libc/${PORTNAME} PORTREVISION= 0 CATEGORIES= devel diff --git a/freebsd/dependencies/libcarddav/distinfo b/freebsd/dependencies/libcarddav/distinfo index 5ca8048fe..b8d4739e0 100644 --- a/freebsd/dependencies/libcarddav/distinfo +++ b/freebsd/dependencies/libcarddav/distinfo @@ -1,2 +1,2 @@ -SHA256 (TDE/dependencies/libcarddav_14.0.2~pre0.orig.tar.xz) = a8fba1cb7fb53aea6fe11c34338172a01bf6443a519f66029e1bd4cddbcdb446 -SIZE (TDE/dependencies/libcarddav_14.0.2~pre0.orig.tar.xz) = 380240 +SHA256 (TDE/dependencies/libcarddav_14.0.2.orig.tar.xz) = f36961ed3c81ebc50077ad4ef6a3a86a35c7b4a6c3cb348182d50b33734bdfc6 +SIZE (TDE/dependencies/libcarddav_14.0.2.orig.tar.xz) = 380476 diff --git a/freebsd/dependencies/tqca-tls/Makefile b/freebsd/dependencies/tqca-tls/Makefile index bf62ad4a4..bf9ccda5a 100644 --- a/freebsd/dependencies/tqca-tls/Makefile +++ b/freebsd/dependencies/tqca-tls/Makefile @@ -7,7 +7,7 @@ PORTNAME= tqca-tls COMMENT= TLS plugin for the TQt Cryptographic Architecture (TQCA) -TDE_PREVERSION= ~pre0+68d8b7a5 +TDE_PREVERSION= MASTER_SITE_SUBDIR= t/${PORTNAME} PORTREVISION= 0 CATEGORIES= devel diff --git a/freebsd/dependencies/tqca-tls/distinfo b/freebsd/dependencies/tqca-tls/distinfo index 13c2291d4..99c8da2d0 100644 --- a/freebsd/dependencies/tqca-tls/distinfo +++ b/freebsd/dependencies/tqca-tls/distinfo @@ -1,2 +1,2 @@ -SHA256 (TDE/dependencies/tqca-tls_14.0.2~pre0.orig.tar.xz) = 55a1a5afff02da0bae46f94d42187ba366460088ec5b523548dc6c0c8412b5ac -SIZE (TDE/dependencies/tqca-tls_14.0.2~pre0.orig.tar.xz) = 22964 +SHA256 (TDE/dependencies/tqca-tls_14.0.2.orig.tar.xz) = 06adfb5b4fdb316f5ca7f4c6ac916f0c10107c1ad25c2d0a59f901daf3f0315f +SIZE (TDE/dependencies/tqca-tls_14.0.2.orig.tar.xz) = 22964 diff --git a/freebsd/dependencies/tqmake/Makefile b/freebsd/dependencies/tqmake/Makefile index 17df8bf5e..6d53229e6 100644 --- a/freebsd/dependencies/tqmake/Makefile +++ b/freebsd/dependencies/tqmake/Makefile @@ -5,7 +5,7 @@ PORTNAME= tqmake COMMENT= The build utility of the TQt from Trinity -TDE_PREVERSION= ~pre3+2c678d13 +TDE_PREVERSION= MASTER_SITE_SUBDIR= t/tqt-x11-free DISTNAME= tqt-x11-free_${TDE_VERSION}${TDE_PREVERSION:C/(~(pre|r|s)[0-9]*).*/\1/1} DISTSRC= tqt3-trinity-${TDE_VERSION}${TDE_PREVERSION} diff --git a/freebsd/dependencies/tqmake/distinfo b/freebsd/dependencies/tqmake/distinfo index dafee63f5..10d8edca9 100644 --- a/freebsd/dependencies/tqmake/distinfo +++ b/freebsd/dependencies/tqmake/distinfo @@ -1,2 +1,2 @@ -SHA256 (TDE/dependencies/tqt-x11-free_14.0.2~pre3.orig.tar.xz) = a7b94af67608cc25a35c18a8e7d5d666ef14ffb583deac1cb4ea6ca0ed39bf67 -SIZE (TDE/dependencies/tqt-x11-free_14.0.2~pre3.orig.tar.xz) = 10888576 +SHA256 (TDE/dependencies/tqt-x11-free_14.0.2.orig.tar.xz) = 84ab3240dff82272041baf430f7ab8a958531fed7d9b3625a20e4b13735ee2a4 +SIZE (TDE/dependencies/tqt-x11-free_14.0.2.orig.tar.xz) = 10891396 diff --git a/freebsd/dependencies/tqt3-ibase-plugin/Makefile b/freebsd/dependencies/tqt3-ibase-plugin/Makefile index ed4d5f6da..adb3aeeed 100644 --- a/freebsd/dependencies/tqt3-ibase-plugin/Makefile +++ b/freebsd/dependencies/tqt3-ibase-plugin/Makefile @@ -7,7 +7,7 @@ PORTNAME= tqt3-${DB}-plugin COMMENT= TQt3 Firebird/IBase database plugin -TDE_PREVERSION= ~pre3+2c678d13 +TDE_PREVERSION= MASTER_SITE_SUBDIR= t/tqt-x11-free DISTNAME= tqt-x11-free_${TDE_VERSION}${TDE_PREVERSION:C/(~(pre|r|s)[0-9]*).*/\1/1} DISTSRC= tqt3-trinity-${TDE_VERSION}${TDE_PREVERSION} diff --git a/freebsd/dependencies/tqt3-ibase-plugin/distinfo b/freebsd/dependencies/tqt3-ibase-plugin/distinfo index dafee63f5..10d8edca9 100644 --- a/freebsd/dependencies/tqt3-ibase-plugin/distinfo +++ b/freebsd/dependencies/tqt3-ibase-plugin/distinfo @@ -1,2 +1,2 @@ -SHA256 (TDE/dependencies/tqt-x11-free_14.0.2~pre3.orig.tar.xz) = a7b94af67608cc25a35c18a8e7d5d666ef14ffb583deac1cb4ea6ca0ed39bf67 -SIZE (TDE/dependencies/tqt-x11-free_14.0.2~pre3.orig.tar.xz) = 10888576 +SHA256 (TDE/dependencies/tqt-x11-free_14.0.2.orig.tar.xz) = 84ab3240dff82272041baf430f7ab8a958531fed7d9b3625a20e4b13735ee2a4 +SIZE (TDE/dependencies/tqt-x11-free_14.0.2.orig.tar.xz) = 10891396 diff --git a/freebsd/dependencies/tqt3-mysql-plugin/Makefile b/freebsd/dependencies/tqt3-mysql-plugin/Makefile index c7ffac402..91d9a071f 100644 --- a/freebsd/dependencies/tqt3-mysql-plugin/Makefile +++ b/freebsd/dependencies/tqt3-mysql-plugin/Makefile @@ -7,7 +7,7 @@ PORTNAME= tqt3-${DB}-plugin COMMENT= TQt3 MySQL database plugin -TDE_PREVERSION= ~pre3+2c678d13 +TDE_PREVERSION= MASTER_SITE_SUBDIR= t/tqt-x11-free DISTNAME= tqt-x11-free_${TDE_VERSION}${TDE_PREVERSION:C/(~(pre|r|s)[0-9]*).*/\1/1} DISTSRC= tqt3-trinity-${TDE_VERSION}${TDE_PREVERSION} diff --git a/freebsd/dependencies/tqt3-mysql-plugin/distinfo b/freebsd/dependencies/tqt3-mysql-plugin/distinfo index dafee63f5..10d8edca9 100644 --- a/freebsd/dependencies/tqt3-mysql-plugin/distinfo +++ b/freebsd/dependencies/tqt3-mysql-plugin/distinfo @@ -1,2 +1,2 @@ -SHA256 (TDE/dependencies/tqt-x11-free_14.0.2~pre3.orig.tar.xz) = a7b94af67608cc25a35c18a8e7d5d666ef14ffb583deac1cb4ea6ca0ed39bf67 -SIZE (TDE/dependencies/tqt-x11-free_14.0.2~pre3.orig.tar.xz) = 10888576 +SHA256 (TDE/dependencies/tqt-x11-free_14.0.2.orig.tar.xz) = 84ab3240dff82272041baf430f7ab8a958531fed7d9b3625a20e4b13735ee2a4 +SIZE (TDE/dependencies/tqt-x11-free_14.0.2.orig.tar.xz) = 10891396 diff --git a/freebsd/dependencies/tqt3-odbc-plugin/Makefile b/freebsd/dependencies/tqt3-odbc-plugin/Makefile index 8b7d1e364..ca7ecdd98 100644 --- a/freebsd/dependencies/tqt3-odbc-plugin/Makefile +++ b/freebsd/dependencies/tqt3-odbc-plugin/Makefile @@ -7,7 +7,7 @@ PORTNAME= tqt3-${DB}-plugin COMMENT= TQt3 ODBC database plugin -TDE_PREVERSION= ~pre3+2c678d13 +TDE_PREVERSION= MASTER_SITE_SUBDIR= t/tqt-x11-free DISTNAME= tqt-x11-free_${TDE_VERSION}${TDE_PREVERSION:C/(~(pre|r|s)[0-9]*).*/\1/1} DISTSRC= tqt3-trinity-${TDE_VERSION}${TDE_PREVERSION} diff --git a/freebsd/dependencies/tqt3-odbc-plugin/distinfo b/freebsd/dependencies/tqt3-odbc-plugin/distinfo index dafee63f5..10d8edca9 100644 --- a/freebsd/dependencies/tqt3-odbc-plugin/distinfo +++ b/freebsd/dependencies/tqt3-odbc-plugin/distinfo @@ -1,2 +1,2 @@ -SHA256 (TDE/dependencies/tqt-x11-free_14.0.2~pre3.orig.tar.xz) = a7b94af67608cc25a35c18a8e7d5d666ef14ffb583deac1cb4ea6ca0ed39bf67 -SIZE (TDE/dependencies/tqt-x11-free_14.0.2~pre3.orig.tar.xz) = 10888576 +SHA256 (TDE/dependencies/tqt-x11-free_14.0.2.orig.tar.xz) = 84ab3240dff82272041baf430f7ab8a958531fed7d9b3625a20e4b13735ee2a4 +SIZE (TDE/dependencies/tqt-x11-free_14.0.2.orig.tar.xz) = 10891396 diff --git a/freebsd/dependencies/tqt3-pgsql-plugin/Makefile b/freebsd/dependencies/tqt3-pgsql-plugin/Makefile index 5f89e16bf..b6f07b1c6 100644 --- a/freebsd/dependencies/tqt3-pgsql-plugin/Makefile +++ b/freebsd/dependencies/tqt3-pgsql-plugin/Makefile @@ -7,7 +7,7 @@ PORTNAME= tqt3-${DB}-plugin COMMENT= TQt3 PostgreSQL database plugin -TDE_PREVERSION= ~pre3+2c678d13 +TDE_PREVERSION= MASTER_SITE_SUBDIR= t/tqt-x11-free DISTNAME= tqt-x11-free_${TDE_VERSION}${TDE_PREVERSION:C/(~(pre|r|s)[0-9]*).*/\1/1} DISTSRC= tqt3-trinity-${TDE_VERSION}${TDE_PREVERSION} diff --git a/freebsd/dependencies/tqt3-pgsql-plugin/distinfo b/freebsd/dependencies/tqt3-pgsql-plugin/distinfo index dafee63f5..10d8edca9 100644 --- a/freebsd/dependencies/tqt3-pgsql-plugin/distinfo +++ b/freebsd/dependencies/tqt3-pgsql-plugin/distinfo @@ -1,2 +1,2 @@ -SHA256 (TDE/dependencies/tqt-x11-free_14.0.2~pre3.orig.tar.xz) = a7b94af67608cc25a35c18a8e7d5d666ef14ffb583deac1cb4ea6ca0ed39bf67 -SIZE (TDE/dependencies/tqt-x11-free_14.0.2~pre3.orig.tar.xz) = 10888576 +SHA256 (TDE/dependencies/tqt-x11-free_14.0.2.orig.tar.xz) = 84ab3240dff82272041baf430f7ab8a958531fed7d9b3625a20e4b13735ee2a4 +SIZE (TDE/dependencies/tqt-x11-free_14.0.2.orig.tar.xz) = 10891396 diff --git a/freebsd/dependencies/tqt3-sqlite-plugin/Makefile b/freebsd/dependencies/tqt3-sqlite-plugin/Makefile index 4ca27a216..39015bfa3 100644 --- a/freebsd/dependencies/tqt3-sqlite-plugin/Makefile +++ b/freebsd/dependencies/tqt3-sqlite-plugin/Makefile @@ -7,7 +7,7 @@ PORTNAME= tqt3-${DB}-plugin COMMENT= TQt3 SQLite database plugin -TDE_PREVERSION= ~pre3+2c678d13 +TDE_PREVERSION= MASTER_SITE_SUBDIR= t/tqt-x11-free DISTNAME= tqt-x11-free_${TDE_VERSION}${TDE_PREVERSION:C/(~(pre|r|s)[0-9]*).*/\1/1} DISTSRC= tqt3-trinity-${TDE_VERSION}${TDE_PREVERSION} diff --git a/freebsd/dependencies/tqt3-sqlite-plugin/distinfo b/freebsd/dependencies/tqt3-sqlite-plugin/distinfo index dafee63f5..10d8edca9 100644 --- a/freebsd/dependencies/tqt3-sqlite-plugin/distinfo +++ b/freebsd/dependencies/tqt3-sqlite-plugin/distinfo @@ -1,2 +1,2 @@ -SHA256 (TDE/dependencies/tqt-x11-free_14.0.2~pre3.orig.tar.xz) = a7b94af67608cc25a35c18a8e7d5d666ef14ffb583deac1cb4ea6ca0ed39bf67 -SIZE (TDE/dependencies/tqt-x11-free_14.0.2~pre3.orig.tar.xz) = 10888576 +SHA256 (TDE/dependencies/tqt-x11-free_14.0.2.orig.tar.xz) = 84ab3240dff82272041baf430f7ab8a958531fed7d9b3625a20e4b13735ee2a4 +SIZE (TDE/dependencies/tqt-x11-free_14.0.2.orig.tar.xz) = 10891396 diff --git a/freebsd/dependencies/tqt3-sqlite3-plugin/Makefile b/freebsd/dependencies/tqt3-sqlite3-plugin/Makefile index fa3a0a4e6..fd6d1d3e4 100644 --- a/freebsd/dependencies/tqt3-sqlite3-plugin/Makefile +++ b/freebsd/dependencies/tqt3-sqlite3-plugin/Makefile @@ -7,7 +7,7 @@ PORTNAME= tqt3-${DB}-plugin COMMENT= TQt3 SQLite 3.x database plugin -TDE_PREVERSION= ~pre3+2c678d13 +TDE_PREVERSION= MASTER_SITE_SUBDIR= t/tqt-x11-free DISTNAME= tqt-x11-free_${TDE_VERSION}${TDE_PREVERSION:C/(~(pre|r|s)[0-9]*).*/\1/1} DISTSRC= tqt3-trinity-${TDE_VERSION}${TDE_PREVERSION} diff --git a/freebsd/dependencies/tqt3-sqlite3-plugin/distinfo b/freebsd/dependencies/tqt3-sqlite3-plugin/distinfo index dafee63f5..10d8edca9 100644 --- a/freebsd/dependencies/tqt3-sqlite3-plugin/distinfo +++ b/freebsd/dependencies/tqt3-sqlite3-plugin/distinfo @@ -1,2 +1,2 @@ -SHA256 (TDE/dependencies/tqt-x11-free_14.0.2~pre3.orig.tar.xz) = a7b94af67608cc25a35c18a8e7d5d666ef14ffb583deac1cb4ea6ca0ed39bf67 -SIZE (TDE/dependencies/tqt-x11-free_14.0.2~pre3.orig.tar.xz) = 10888576 +SHA256 (TDE/dependencies/tqt-x11-free_14.0.2.orig.tar.xz) = 84ab3240dff82272041baf430f7ab8a958531fed7d9b3625a20e4b13735ee2a4 +SIZE (TDE/dependencies/tqt-x11-free_14.0.2.orig.tar.xz) = 10891396 diff --git a/freebsd/dependencies/tqt3/Makefile b/freebsd/dependencies/tqt3/Makefile index b4789cfff..b6d89e859 100644 --- a/freebsd/dependencies/tqt3/Makefile +++ b/freebsd/dependencies/tqt3/Makefile @@ -7,7 +7,7 @@ PORTNAME= tqt3 COMMENT= Multiplatform C++ application framework -TDE_PREVERSION= ~pre3+2c678d13 +TDE_PREVERSION= MASTER_SITE_SUBDIR= t/tqt-x11-free DISTNAME= tqt-x11-free_${TDE_VERSION}${TDE_PREVERSION:C/(~(pre|r|s)[0-9]*).*/\1/1} DISTSRC= ${PORTNAME}-trinity-${TDE_VERSION}${TDE_PREVERSION} diff --git a/freebsd/dependencies/tqt3/distinfo b/freebsd/dependencies/tqt3/distinfo index dafee63f5..10d8edca9 100644 --- a/freebsd/dependencies/tqt3/distinfo +++ b/freebsd/dependencies/tqt3/distinfo @@ -1,2 +1,2 @@ -SHA256 (TDE/dependencies/tqt-x11-free_14.0.2~pre3.orig.tar.xz) = a7b94af67608cc25a35c18a8e7d5d666ef14ffb583deac1cb4ea6ca0ed39bf67 -SIZE (TDE/dependencies/tqt-x11-free_14.0.2~pre3.orig.tar.xz) = 10888576 +SHA256 (TDE/dependencies/tqt-x11-free_14.0.2.orig.tar.xz) = 84ab3240dff82272041baf430f7ab8a958531fed7d9b3625a20e4b13735ee2a4 +SIZE (TDE/dependencies/tqt-x11-free_14.0.2.orig.tar.xz) = 10891396 diff --git a/freebsd/dependencies/tqtinterface/Makefile b/freebsd/dependencies/tqtinterface/Makefile index f6b091642..7d6fe22fe 100644 --- a/freebsd/dependencies/tqtinterface/Makefile +++ b/freebsd/dependencies/tqtinterface/Makefile @@ -7,7 +7,7 @@ PORTNAME= libtqtinterface COMMENT= Trinity TQt Interface -TDE_PREVERSION= ~pre1+f2e4b554 +TDE_PREVERSION= MASTER_SITE_SUBDIR= libt/${PORTNAME} DISTSRC= tqtinterface-trinity-${TDE_VERSION}${TDE_PREVERSION} PORTREVISION= 0 diff --git a/freebsd/dependencies/tqtinterface/distinfo b/freebsd/dependencies/tqtinterface/distinfo index 7e1aad6ab..6307aa2fd 100644 --- a/freebsd/dependencies/tqtinterface/distinfo +++ b/freebsd/dependencies/tqtinterface/distinfo @@ -1,2 +1,2 @@ -SHA256 (TDE/dependencies/libtqtinterface_14.0.2~pre1.orig.tar.xz) = 672c823a5430a3b998dabe5e76706e10cf88e2feda18e27a6b9c5a2ae84c6cc5 -SIZE (TDE/dependencies/libtqtinterface_14.0.2~pre1.orig.tar.xz) = 812708 +SHA256 (TDE/dependencies/libtqtinterface_14.0.2.orig.tar.xz) = 64a5dbedec8012c2de1cd8655e1cd2c1eca4264d3d896dcdc870eac69445def5 +SIZE (TDE/dependencies/libtqtinterface_14.0.2.orig.tar.xz) = 814416 |