aboutsummaryrefslogtreecommitdiff
path: root/audio/soundkonverter
Commit message (Collapse)AuthorAgeFilesLines
* audio/fluidsynth: Update to upstream version 2.2.4Thomas Zander2021-11-271-1/+1
| | | | MFH: 2021Q4
* audio/fluidsynth: Update to upstream version 2.2.3Thomas Zander2021-10-041-1/+1
| | | | MFH: 2021Q4
* not-KDE Applications: chase doctoolsAdriaan de Groot2021-04-221-2/+3
| | | | | | | These ports, not maintained by kde@, use KDE Frameworks and require kdoctools to build. Since that is no longer an implicit build & run dependency, (re)introduce it explicitly as a build-time dependency.
* Remove # $FreeBSD$ from Makefiles.Mathieu Arnold2021-04-061-1/+0
|
* Fix up previous fix:Adriaan de Groot2020-07-181-2/+5
| | | | | | | | | | | | | | | | | | | | - with KF5 5.71, each application can have its own FindTaglib, or uses the one from kdelibs4support (I think). This is generally an "old-style" CMake module. - with KF5 5.72, ECM delivers a modern CMake module which is found **first**, but is also incompatible with the old version of FindTaglib. Adjust the patches so they work with KF5 5.71 (now in-tree) and 5.72 (upcoming). Not bumping PORTREVISION here because the packages could not have built with the previous patches. Note to self: do not assume useful backwards-compatibility in CMake modules from different sources. PR: 247907 Notes: svn path=/head/; revision=542537
* Fix build in the face of updates elsewhere (taglib)Adriaan de Groot2020-07-184-5/+16
| | | | | | | | | | | | | | | | Taglib's CMake support has changed without mind for backwards compatibility, so old users were using variables that are now unset. Switch to modern CMake instead. While here: - fix the WWW link, which led to a 500 - GH account HessiJames renamed dfaust; you'll note the SHA256 in the distinfo is not changed although the name of the file is. PR: 247907 Notes: svn path=/head/; revision=542530
* Add missing dependency on kinitTobias C. Berner2020-05-181-1/+1
| | | | | | | | | | | A handful of ports implicitetly dependet on kinit through some other port, which in turn itself shouldn't have. In r535466 this was removed, and the dependency on kinit now needs to be made explicit. Reported by: antoine Notes: svn path=/head/; revision=535735
* audio/soundkonverter: remove expired optional dependency on audio/shortenRene Ladan2020-05-051-4/+1
| | | | Notes: svn path=/head/; revision=534049
* Return dbn's ports to the pool after safekeeping his commit bit.Rene Ladan2020-02-031-1/+1
| | | | Notes: svn path=/head/; revision=525092
* Chase update to audio/fluidsynth; bump PORTREVISION of dependent portsThomas Zander2019-09-291-1/+1
| | | | | | | PR: 240890 Notes: svn path=/head/; revision=513215
* Bump PORTREVISION for ports depending on the canonical version of GCCGerald Pfeifer2019-07-261-1/+1
| | | | | | | | | | | | | | | | | | as defined in Mk/bsd.default-versions.mk which has moved from GCC 8.3 to GCC 9.1 under most circumstances now after revision 507371. This includes ports - with USE_GCC=yes or USE_GCC=any, - with USES=fortran, - using Mk/bsd.octave.mk which in turn features USES=fortran, and - with USES=compiler specifying openmp, nestedfct, c11, c++0x, c++11-lang, c++11-lib, c++14-lang, c++17-lang, or gcc-c++11-lib plus, everything INDEX-11 shows with a dependency on lang/gcc9 now. PR: 238330 Notes: svn path=/head/; revision=507372
* multimedia/phonon, multimedia/phonon-gestreamer, ↵Tobias C. Berner2019-03-161-2/+2
| | | | | | | multimedia/phonon-designerplugin: remove flavorse (Qt4 deprecation) Notes: svn path=/head/; revision=495961
* Chase update of fluidsynth to 2.0.3Thomas Zander2019-03-021-1/+1
| | | | | | | PR: 233448 Notes: svn path=/head/; revision=494418
* Fix Qt5 symbol version scripts to put the catch-all clause first. WhenTijl Coosemans2019-01-161-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | a symbol matches multiple clauses the last one takes precedence. If the catch-all is last it captures everything. In the case of Qt5 libraries this caused all symbols to have a Qt_5 label while some should have Qt_5_PRIVATE_API. This only affects lld because GNU ld always gives the catch-all lowest priority. Older versions of Qt5Webengine exported some memory allocation symbols from the bundled Chromium. Version 5.9 stopped exporting these [1] but the symbols were kept as weak wrappers for the standard allocation functions to maintain binary compatibility. [2][3] The problem is that the call to the standard function in these weak wrappers is only resolved to the standard function if there's a call to this standard function in other parts of Qt5Webengine, because only then is there a non-weak symbol that takes precedence over the weak one. If there's no such non-weak symbol the call in the weak wrapper resolves to the weak wrapper itself creating an infinite call loop that overflows the stack and causes a crash. Some of the allocation functions are variants of C++ new and delete and it probably depends on the compiler whether these variants are used in other parts of Qt5Webengine. Remove the weak wrappers (make them Linux specific). This isn't binary compatible but we are already breaking that with the changes to the symbol versions. [1] https://github.com/qt/qtwebengine/commit/5c2cbfccf9aafb547b0b30914c4056abd25942a4 [2] https://github.com/qt/qtwebengine/commit/2ed5054e3a800fa97c2c9e920ba1e6ea4b6ef2a5 [3] https://github.com/qt/qtwebengine/commit/009f5ebb4bd6e50188671e0815a5dae6afe39db5 Bump all ports that depend on Qt5. PR: 234070 Exp-run by: antoine Approved by: kde (adridg) Notes: svn path=/head/; revision=490472
* Change cmake default behaviour to outsource.Tobias C. Berner2018-12-251-1/+1
| | | | | | | | | | | | | | Ports that build out of source now simply can use "USES=cmake" instead of "USES=cmake:outsource". Ports that fail to build out of source now need to specify "USES=cmake:insource". I tried to only set insource where explictely needed. PR: 232038 Exp-run by: antoine Notes: svn path=/head/; revision=488341
* Bump PORTREVISION for ports depending on the canonical version of GCCGerald Pfeifer2018-12-121-1/+1
| | | | | | | | | | | | | | | | | | defined via Mk/bsd.default-versions.mk which has moved from GCC 7.4 t GCC 8.2 under most circumstances. This includes ports - with USE_GCC=yes or USE_GCC=any, - with USES=fortran, - using Mk/bsd.octave.mk which in turn features USES=fortran, and - with USES=compiler specifying openmp, nestedfct, c11, c++0x, c++11-lang, c++11-lib, c++14-lang, c++17-lang, or gcc-c++11-lib plus, as a double check, everything INDEX-11 showed depending on lang/gcc7. PR: 231590 Notes: svn path=/head/; revision=487272
* multimedia/ffmpeg: update to 4.1Jan Beich2018-11-061-0/+1
| | | | | | | | Changes: https://git.ffmpeg.org/gitweb/ffmpeg.git/blob/n4.1:/Changelog ABI: https://abi-laboratory.pro/tracker/timeline/ffmpeg/ Notes: svn path=/head/; revision=484273
* audio/soundkonverter: update to 3.0.1David Naylor2018-09-153-81/+83
| | | | | | | | | | - Update to using QT5/KF5 - Use out-source building; otherwise configure fails when detecting plugins due to directory polution by cmake - Remove CDPARANOIA option; it isn't an option, but mandatory Notes: svn path=/head/; revision=479821
* Bump PORTREVISION for ports depending on the canonical version of GCCGerald Pfeifer2018-07-291-1/+1
| | | | | | | | | | | | | | | | | in the ports tree (via Mk/bsd.default-versions.mk and lang/gcc) which has now moved from GCC 6 to GCC 7 by default. This includes ports - featuring USE_GCC=yes or USE_GCC=any, - featuring USES=fortran, - using Mk/bsd.octave.mk which in turn features USES=fortran, and those - with USES=compiler specifying one of openmp, nestedfct, c11, c++0x, c++11-lib, c++11-lang, c++14-lang, c++17-lang, or gcc-c++11-lib. PR: 222542 Notes: svn path=/head/; revision=475857
* Replace bsd.qt.mk by Uses/qt.mk and Uses/qt-dist.mkTobias C. Berner2018-06-281-2/+2
| | | | | | | | | | | | | | | | | | From now on, ports that depend on Qt4 will have to set USES= qt:4 USE_QT= foo bar ports depending on Qt5 will use USES= qt:5 USE_QT= foo bar PR: 229225 Exp-run by: antoine Reviewed by: mat Approved by: portmgr (antoine) Differential Revision: →https://reviews.freebsd.org/D15540 Notes: svn path=/head/; revision=473503
* Make flavors explicit for phonon.Tobias C. Berner2018-06-221-1/+1
| | | | | | | Reported by: VVD (via irc) Notes: svn path=/head/; revision=473065
* multimedia/*phonon*: update and flavorize with @qt4/@qt5Tobias C. Berner2018-06-211-1/+1
| | | | | | | | Approved by: portmgr (mat) Differential Revision: https://reviews.freebsd.org/D14632 Notes: svn path=/head/; revision=472983
* Bump PORTREVISIONS to chase update to audio/fluidsynth 1.1.11Thomas Zander2018-06-011-1/+1
| | | | | | | PR: 228265 Notes: svn path=/head/; revision=471300
* multimedia/ffmpeg: update to 4.0Jan Beich2018-05-021-1/+1
| | | | | | | | | | | | | | | - FFSERVER support was removed upstream - libressl now uses libtls backend instead of patching openssl one - Clang i386 no longer uses 16-byte aligned stack Changes: https://git.ffmpeg.org/gitweb/ffmpeg.git/blob/n4.0:/Changelog ABI: https://abi-laboratory.pro/tracker/timeline/ffmpeg/ PR: 227726 Exp-run by: antoine Differential Revision: https://reviews.freebsd.org/D15175 Notes: svn path=/head/; revision=468844
* Rename KDE4 meta portsTobias C. Berner2018-02-101-1/+1
| | | | | | | | | | | | | | This is done for * consistency, * and to simplify the import of the newer KDE Plasma5 desktop and KDE applications Bumps the dependencies. Reviewed by: adridg Differential Revision: https://reviews.freebsd.org/D12979 Notes: svn path=/head/; revision=461375
* Chase audio/faac update (ABI incompatible to previous version 1.28)Thomas Zander2017-11-191-1/+1
| | | | | | | | PR: 223416 Submitted by: riggs Notes: svn path=/head/; revision=454488
* Use GROUP and not MULTIMathieu Arnold2017-10-271-6/+5
| | | | | | | Sponsored by: Absolight Notes: svn path=/head/; revision=452983
* Fix options defined more than once.Mathieu Arnold2017-10-271-4/+7
| | | | | | | | | PR: 223071 Reported by: antoine Sponsored by: Absolight Notes: svn path=/head/; revision=452974
* multimedia/ffmpeg: update to 3.4Jan Beich2017-10-211-1/+1
| | | | | | | | | | | | | | | | | | | | | | Notable changes: - i386/amd64 now depend on NASM per https://git.ffmpeg.org/gitweb/ffmpeg.git/commitdiff/4f9297ac3b39 - NETCDF is now MYSOFA but the dependency doesn't exist in ports yet - SCHROEDINGER is gone per https://git.ffmpeg.org/gitweb/ffmpeg.git/commitdiff/220b24c7c9 - DRM, LIBRSVG2, LIBXML2 are new options - ABI isn't completely compatible: some structs have changed Minor cleanup: - Don't pass --disable-{in,out}dev when it's already blocked by disabled dependency - Drop redundant "Enable" from option descriptions - Switch CDIO_DESC to use Mk/bsd.options.desc.mk Changes: https://git.ffmpeg.org/gitweb/ffmpeg.git/blob/n3.4:/Changelog ABI: https://abi-laboratory.pro/tracker/timeline/ffmpeg/ PR: 223057 Exp-run by: antoine Notes: svn path=/head/; revision=452570
* Bump PORTREVISION for ports depending on the canonical version of GCCGerald Pfeifer2017-09-101-1/+1
| | | | | | | | | | | | | | | | | (via Mk/bsd.default-versions.mk and lang/gcc) which has moved from GCC 5.4 to GCC 6.4 under most circumstances. This includes ports - with USE_GCC=yes or USE_GCC=any, - with USES=fortran, - using Mk/bsd.octave.mk which in turn features USES=fortran, and - with USES=compiler specifying openmp, nestedfct, c++11-lib, c++11-lang, c++14-lang, c++0x, c11, or gcc-c++11-lib. PR: 219275 Notes: svn path=/head/; revision=449591
* audio/soundkonverter: remove option for expired linux-neroaaccodecRene Ladan2017-08-231-4/+1
| | | | Notes: svn path=/head/; revision=448599
* Chase ffmpeg 3.3 update (ABI changes)Thomas Zander2017-04-251-1/+1
| | | | | | | | PR: 218658 Submitted by: riggs Notes: svn path=/head/; revision=439367
* Bump PORTREVISIONs for ports depending on the canonical version of GCC andGerald Pfeifer2017-04-011-1/+1
| | | | | | | | | | | | | | | | | lang/gcc which have moved from GCC 4.9.4 to GCC 5.4 (at least under some circumstances such as versions of FreeBSD or platforms). This includes ports - with USE_GCC=yes or USE_GCC=any, - with USES=fortran, - using using Mk/bsd.octave.mk which in turn has USES=fortran, and - with USES=compiler specifying openmp, nestedfct, c++11-lib, c++14-lang, c++11-lang, c++0x, c11, or gcc-c++11-lib. PR: 216707 Notes: svn path=/head/; revision=437439
* multimedia/ffmpeg: update to 3.2.2Jan Beich2016-12-111-1/+1
| | | | | | | | | | Changes: https://git.ffmpeg.org/gitweb/ffmpeg.git/blob/n3.2.2:/Changelog PR: 207547 Submitted by: riggs, ebirth@b0ss.net (libressl fix) Exp-run by: antoine (3 tries) Notes: svn path=/head/; revision=428352
* Replace Mk/bsd.kde4.mk by Mk/Uses/kde.mk in preparation for KDE Frameworks andTobias C. Berner2016-08-241-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Plasma5 ports At the moment KDE ports use bsd.kde4.mk to handle their dependencies. When working on the ports for KDE Frameworks and Plasma5 it seemed to be more reasonable to create a new kde.mk instead of adding an bsd.kde5.mk. The kde.mk in this review is a stripped down version of the one we are using in the KDE Test repositories plasma5 branch [1] to only contain the parts relevant to the current KDE4 ports in the portstree [2]. Changes to the KDE Ports needed by this: Replace USE_KDE4 by USE_KDE [3] Add USES=kde:4 [4] [1] http://src.mouf.net/area51/view/branches/plasma5/KDE/Mk/Uses/kde.mk [2] The version in the plasma5 branch also handles frameworks/plasma5 and handles MASTER_SITES via a KDE_DIST variable similar to bsd.qt.mk for Qt Ports -- I chose to leave this out for now, as the diff is already large enough. [3] I chose USE_KDE instead of USE_KDE4, USE_KDE5, USE_KDEX as the version we want is already specified as argument to kde:<arg> [4] For KDE Frameworks and Plasma5 ports this would be kde:5 PR: 210667 Approved by: portmgr, mat (mentor), rakuco (mentor) Reviewed by: mat, rakuco Differential Revision: https://reviews.freebsd.org/D6961 Notes: svn path=/head/; revision=420774
* audio/soundkonverter: remove INSTALLS_ICONS, fix plist.David Naylor2016-07-192-2/+2
| | | | | | | | | | | | - Remove INSTALLS_ICONS as this is a KDE port and not a GNOME port. - Replace %%QT_BINDIR%% with 'bin'. Although QT_BINDIR does subtitue to the correct value, this port uses cmake and not qmake and thus may not honour changes to QT_BINDIR. Reported by: danfe Notes: svn path=/head/; revision=418761
* audio/soundkonverter: update to 2.2.2David Naylor2016-07-134-34/+15
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - Add missing dependencies (phonon, qt4) - Fix spelling of option (VORBIS) - Make LIBAV an option (and fix description) - Remove Musepack from replaygain (musepack does not install mpcgain) ChangeLog: 2.2.2: -Change: Move Polish (Poland) translation to Polish -Change: Move Swedish (Sweden) translation back to Swedish -Change: Remove so-version for libsoundkonvertercore to satisfy obs lint 2.2.1: -Add: Dutch, Spanish (Argentina) and Polish (Poland) translations -Change: Swedish translation moved to Swedish (Sweden) -Change: Update translations 2.2.0: -Add: Decode webm audio stream -Add: --file-list argument -Change: Remove both APE and ID3 Replay Gain tags with mp3gain and aacgain -Change: Disable "modify audio stream" option by default in mp3gain and aacgain -Change: Don't write icedax info file -Change: Set so-version for libsoundkonvertercore -Fix: Don't require an output path when using a user defined profile as command line argument -Fix: Don't crash when tags can't be read -Fix: Error message when trying to write to a directory without permissions -Fix: Store album artist information to file list files -Fix: Some crashes -Fix: Handle newer ffmpeg versions -Fix: Don't wait with Replay Gain calculation for items with same album name but no Replay Gain conversion option set -Fix: Don't convert all files at once if the conversion starts with copying files with the same input an output codec -Fix: Infinite loop when waiting for album gain for a failed item Notes: svn path=/head/; revision=418503
* audio/soundkonverter: remove wrongly used PLIST_SUB from pkg-plistKurt Jaeger2016-06-121-1/+1
| | | | | | | | PR: 210115 Submitted by: Tobias C.Berner <tcberner@gmail.com> (kde) Notes: svn path=/head/; revision=416770
* Remove expired misc/kdehier4 and update all of its consumers to not ↵Rene Ladan2016-05-251-1/+1
| | | | | | | | | | | | | | | | reference it any longer. This is a no-op because KDE4_PREFIX is equal to LOCALBASE Fix up properties for misc/kde4-l10n/files/bsd.l10n.mk to make svn happy. PR: 209014 (partial) Submitted by: myself Approved by: portmgr (bapt) Differential Revision: https://reviews.freebsd.org/D6542 Notes: svn path=/head/; revision=415864
* - Fix trailing whitespace in pkg-descrs, categories [a-f]*Dmitry Marakasov2016-05-191-1/+1
| | | | | | | Approved by: portmgr blanket Notes: svn path=/head/; revision=415498
* Remove ${PORTSDIR}/ from dependencies, Mk and categories a, b, and c.Mathieu Arnold2016-04-011-29/+29
| | | | | | | | With hat: portmgr Sponsored by: Absolight Notes: svn path=/head/; revision=412344
* Add patch to fix taglib version detectionJason E. Hale2016-01-031-0/+24
| | | | | | | Reported by: pkg-fallout Notes: svn path=/head/; revision=405157
* audio/soundkonverter: update to 2.1.90David Naylor2015-12-143-23/+23
| | | | | | | | | | | | | | | | | | | | Changes: - Sort pkg-plist - Fix run depends for tta codec [1] - Drop local mirror of source code Change Log: - Add: Detect (DRM)-encrypted wma and m4a files - Add: Adjust gain for mp3 files - Add: Option to copy files instead of re-encoding them if input and output codec are the same - Change: Fall-back from album artist to artist in "meta data" naming mode if album artist is empty Reported by: Wolfgang Riegler <wolfgang.riegler@gmx.de> [1] Notes: svn path=/head/; revision=403733
* Cleanup USE_GITHUB usage.Mathieu Arnold2015-05-302-3/+3
| | | | | | | | With hat: portmgr Sponsored by: Absolight Notes: svn path=/head/; revision=387986
* audio/soundkonverter: use new USE_GITHUB.David Naylor2015-03-302-5/+4
| | | | | | | Differential Revision: D2127 Notes: svn path=/head/; revision=382697
* Update USE_GITHUB so it does not require GH_COMMIT.Bryan Drewery2015-03-191-1/+1
| | | | | | | | | | | | | | | | | | | | Using this new scheme allows only setting the _tag_ or _commit hash_ in GH_TAGNAME and not having to know the hash for a tag. This scheme will download a tarball that has a different checksum than before due to a changed directory name for extraction. The following MASTER_SITES are provided to retain the old checksum and directory structure (that require GH_COMMIT): GH -> GHL GITHUB -> GITHUB_LEGACY Differential Revision: https://reviews.freebsd.org/D748 Submitted by: amdmi3 Reviewed by: mat, swills, antoine, bdrewery With hat: portmgr Notes: svn path=/head/; revision=381618
* - Remove deprecated USE_KDE4=kdehierMax Brazhnikov2015-02-191-1/+1
| | | | | | | | - while here, remove any reference to KDE in deskutils/charmtimetracker (Qt-only app) and supposedly fix build of graphics/gnash with KDE4 option Notes: svn path=/head/; revision=379358
* Update audio/soundkonverter to 2.1.2.David Naylor2014-12-162-5/+4
| | | | | | | | | Change log: -Fix: False error detection in the Replay Gain tool -Fix: Properly re-paint conversion file list on status change Notes: svn path=/head/; revision=374795
* Cleanup plistBaptiste Daroussin2014-10-201-2/+0
| | | | Notes: svn path=/head/; revision=371234
* Update the default version of GCC in the Ports Collection from GCC 4.7.4Gerald Pfeifer2014-09-101-1/+1
| | | | | | | | | | | | | to GCC 4.8.3. Part II, Bump PORTREVISIONs. PR: 192025 Tested by: antoine (-exp runs) Approved by: portmgr (implicit) Notes: svn path=/head/; revision=367888