aboutsummaryrefslogtreecommitdiff
path: root/audio
Commit message (Collapse)AuthorAgeFilesLines
* Adds -fPIC to CFLAGS_aarch64 to a number of ports that already have itAndrew Turner2015-08-091-0/+1
| | | | | | | | | | in the amd64 CFLAGS and are failing to build. Approved by: bapt Differential Revision: https://reviews.freebsd.org/D3321 Notes: svn path=/head/; revision=393831
* Re-commit ofAlexander Leidinger2015-08-0964-23/+496
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 64 bit linuxulator support (not activated by default): - most of the work was done by Alan Jude - all errors are mine - 64bit (may) have rough edges - I validated * that the 32bit part doesn't has deinstall regressions (incl. EXP runs by antoine) * 29 of 72 64bit ports ports don't have deinstall leftovers (more validation later, when I dare to activate the 64bit linuxulator in the kernel) - the infrastructure part looks mature enough to let more test-bunnies get some experience with the new 64 bit parts - to use it you shall have no linux ports installed and have to specify (on your own risk) the following in make.conf before installing the ports: OVERRIDE_LINUX_BASE_PORT=c6_64 OVERRIDE_LINUX_NONBASE_PORTS=c6_64 This is on top of the exiting c6 linux ports. Given that CentOS 7 is 64bits only, we decided to have it as an "overlay" instead of new ports. The 64bit part only installs 64bit executables, the 32bit ports can not be installed at the same time (if needed we can think of letting the 64bit overlay install the 32bit parts too, but given the CentOS 7 comment above...). Differential Revision: https://reviews.freebsd.org/D174 Submitted by: alanjude Sponsored by: Essen FreeBSD Hackathon 2015 Reviewed by: xmj, eadler (earlier versions) Approved by: portmgr (antoine after some EXP-runs) Notes: svn path=/head/; revision=393817
* - editors/lazarus update to 1.4.2Jose Alonso Cardenas Marquez2015-08-096-6/+6
| | | | | | | | | | | | | - Add USE_FPC_RUN to bsd.fpc.mk. It add fpc units like run dependencies. Otherwise fpc units only are added like build dependencies (less dependencies registered when they are installed with pkg). - Remove GTK1 obsolete dependencies - Bump all ports with dependencies of fpc-* units - Bump all ports with dependencies of lazarus ports - Clean up Notes: svn path=/head/; revision=393766
* Update to 1.22.3.Roman Bogorodskiy2015-08-083-5/+4
| | | | Notes: svn path=/head/; revision=393736
* Disable xen option by adding '--disable-xen' to CONFIGURE_ARGS. Xen extensionRoman Bogorodskiy2015-08-081-0/+1
| | | | | | | | | | | is currently broken on FreeBSD and pusleaudio tries to build it when it finds Xen libraries on the host, so build fails in this case. PR: 202170 Approved by: kwm Notes: svn path=/head/; revision=393717
* The FreeBSD GNOME team proudly presents GNOME 3.16 for FreeBSD.Koop Mast2015-08-059-58/+65
| | | | | | | | | | | | | | | | | | | | | The offical GNOME 3.16 release notes can be found at https://help.gnome.org/misc/release-notes/3.16/ Upgrade instructions for port users: Delete the old tracker package with: # pkg delete -f tracker And user port upgrade tool of choice to upgrade. Thanks to Antoine Brodin for running the exp-runs. This release was made possible by the following people: Gustau Perez Ting-Wei_Lan PR: 201980 Notes: svn path=/head/; revision=393607
* - Improve wording, accuracy, and readability of most options' descriptionsAlexey Dokuchaev2015-08-052-61/+57
| | | | | | | | | | | | | | | | | | | - Drop few descriptions that have suitable default versions in standard pool - Remove initial LIB_DEPENDS: libsamplerate is pulled up via DSP option, and remaining libmad was converted to its own option - Since most options have their corresponding --disable/enable switches (FOO -> --{dis|en}able-foo), rename some options that violated this rule (ADP -> ADPLUG, EQ -> SUPEREQ, WAV -> WAVPACK, and WILD -> WILDMIDI) for consistency (in case of WAVPACK, it was actually an error to masquerade it as WAV) - Wrap overly long lines and sort USES values while here - Stop advertising that the build on PowerPC is broken (it builds fine on my Mac mini G4) Approved by: vg (maintainer) Notes: svn path=/head/; revision=393575
* Part 2 of adding USE_GNOME=intltool to ports that require it.Koop Mast2015-08-052-2/+2
| | | | | | | | | | | The reason for this is that in the GNOME 3.16 update, USE_GNOME gtk20 and gtk30 don't pull intltool in anymore. PR: 201980 Exp-run by: antoine@ Notes: svn path=/head/; revision=393574
* Cleanup some abusive use of GH_TAGNAME.Mathieu Arnold2015-08-044-6/+6
| | | | | | | | With hat: portmgr Sponsored by: Absolight Notes: svn path=/head/; revision=393516
* - Add LICENSE_FILEDmitry Marakasov2015-08-031-1/+3
| | | | | | | - Strip binary Notes: svn path=/head/; revision=393491
* Drop :keepla from the libtool USES.Koop Mast2015-08-032-11/+2
| | | | | | | | PR: 202048 Submitted by: Ting-Wei Lan <lantw44@gmail.com> Notes: svn path=/head/; revision=393465
* Part 1 of adding USE_GNOME=intltool to ports that require it.Koop Mast2015-08-0217-17/+17
| | | | | | | | | | | The reason for this is that in the GNOME 3.16 update, USE_GNOME gtk20 and gtk30 don't pull intltool in anymore. PR: 201980 Exp-run by: antoine@ Notes: svn path=/head/; revision=393444
* Update to 0.8.15Sean Bruno2015-08-023-15/+13
| | | | | | | | | | | - cleanup NLS - cleanup OPTIONS Differential Revision: https://reviews.freebsd.org/D3274 Reviewed by: kwm Notes: svn path=/head/; revision=393437
* By default libtool replaces -export-symbols <file> with -retain-symbols-fileTijl Coosemans2015-08-0218-42/+168
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | <file> on ELF systems, but this doesn't really do what -export-symbols is meant to do. On GNU ELF systems it converts <file> to a simple version script first and then uses -version-script instead of -retain-symbols-file. Let USES=libtool patch libtool scripts to do this on all systems with GNU ld(1). Bump PORTREVISION on all ports where the build log contains -export-symbols. audio/calf: This port builds a module that now exports only one function, but it also builds a number of executables that link to this module and expect to see other functions. Because it's already a bit dodgy to link to a module (libtool warns about this) let the module continue to export only one function and instead build an ordinary library from the same source that the executables can link to. Fix a number of other issues in the same Makefile.am and clean up the port Makefile. japanese/scim-honoka: Tries to hide all symbols that start with an underscore, but because this library is written in C++ all symbols start with _Z so it ends up hiding everything. Just don't hide anything at all like the textproc/scim configure script does. multimedia/schroedinger: Apply an upstream patch. textproc/scim-input-pad: Same as japanese/scim-honoka. PR: 201922 Approved by: portmgr (antoine) Exp-run by: antoine Notes: svn path=/head/; revision=393429
* Fix shuffle playbackThomas Zander2015-08-024-2/+51
| | | | | | | | | | | | | | (random number generator is not initialised properly) While on it: Pet portlint PR: 201645 Submitted by: yamagi@yamagi.org (maintainer) MFH: 2015Q3 Notes: svn path=/head/; revision=393424
* - Remove empty directoryDmitry Marakasov2015-07-311-0/+3
| | | | Notes: svn path=/head/; revision=393306
* - Update to 0.6.0Wen Heping2015-07-295-33/+57
| | | | | | | | PR: 201928 Submitted by: heckendorfc@gmail.com(maintainer) Notes: svn path=/head/; revision=393205
* Switch default python_CMD used by shebangfix to ${PYTHON_CMD} for portsAntoine Brodin2015-07-294-5/+0
| | | | | | | | | | | | using python PR: 201077 Reviewed by: mat With hat: portmgr Differential Revision: https://reviews.freebsd.org/D2955 Notes: svn path=/head/; revision=393196
* - Fix Makefile in case if PROFILES option is selectedAlex Kozlov2015-07-291-2/+2
| | | | | | | | PR: 201878 Submitted by: 6yearold@gmail.com Notes: svn path=/head/; revision=393160
* * Use gmake to build libmatemixer to fix the build on 9.x.Koop Mast2015-07-282-2/+38
| | | | | | | | | | | * This causes translations to be installed. Use intlhack instead of intltool to get them installed in the right place, and fix the plist. Bump portrevision since package content changed. Submitted by: pkg-fallout Notes: svn path=/head/; revision=393053
* Update MATE DE to 1.10.0.Koop Mast2015-07-278-133/+141
| | | | | | | | | | | | | | This MATE is still build agains GTK+2. Sort USES here and there. Replace mate-dialogs with zenity and mate-calc with galculator. This update fixes the following PR's: PR: 193942, 191885 Submitted by: Gustau Perez <gustau.perez@gmail.com> via Gnome devel repo Obtained from: gnome devel repo. Notes: svn path=/head/; revision=393031
* audio/audacity: fix build with new ffmpegRuslan Makhmatkhanov2015-07-272-1/+32
| | | | | | | | | | | | - add patch to fix build with ffmpeg 2.7 - add ffmpeg to LIB_DEPENDS to fix build in rare cases PR: 201589 Submitted by: Christian Heckendorf <heckendorfc@gmail.com> Approved by: xxjack12xx@gmail.com Notes: svn path=/head/; revision=392979
* Unbreak INDEX, reverting r392921Antoine Brodin2015-07-2664-496/+23
| | | | | | | With hat: portmgr Notes: svn path=/head/; revision=392922
* 64 bit linuxulator support (not activated by default):Alexander Leidinger2015-07-2664-23/+496
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - most of the work was done by Alan Jude - all errors are mine - 64bit (may) have rough edges - I validated * that the 32bit part doesn't has deinstall regressions * 29 of 72 64bit ports ports don't have deinstall leftovers (more validation later, when I dare to activate the 64bit linuxulator in the kernel) - the infrastructure part looks mature enough to let more test-bunnies get some experience with it - to use it you shall have no linux ports installed and have to specify (on your own risk) the following in make.conf before installing the ports: OVERRIDE_LINUX_BASE_PORT=c6_64 OVERRIDE_LINUX_NONBASE_PORTS=c6_64 This is on top of the exiting c6 linux ports. Given that CentOS 7 is 64bits only, we decided to have it as an "overlay" instead of new ports. The 64bit part only installs 64bit executables, the 32bit ports can not be installed at the same time (if needed we can think of letting the 64bit overlay install the 32bit parts too, but given the CentOS 7 comment above...). Differential Revision: https://reviews.freebsd.org/D174 Submitted by: alanjude Sponsored by: Essen FreeBSD Hackathon 2015 Reviewed by: xmj, eadler (earlier versions) Approved by: portmgr (implicit, I remember blanked approval for linux parts loooong ago, punish me if you don't agree anymore) Notes: svn path=/head/; revision=392921
* Fix the build with the DOXYGEN option enabled (do not bump port revision asAlexey Dokuchaev2015-07-241-1/+1
| | | | | | | | | this option is not enabled by default). PR: 200556 (audit trail) Notes: svn path=/head/; revision=392833
* - Add LICENSEDmitry Marakasov2015-07-231-0/+3
| | | | Notes: svn path=/head/; revision=392750
* Another port, that requires a C++11 compilerTilman Keskinoz2015-07-221-2/+2
| | | | | | | | | Drop maintainership Reported by: pkg-fallout Notes: svn path=/head/; revision=392689
* audio/libgroove - restore Created by linePietro Cerutti2015-07-221-1/+1
| | | | Notes: svn path=/head/; revision=392682
* - Belatedly update to version 4.2.1Alexey Dokuchaev2015-07-223-15/+17
| | | | | | | | | | | - Move SDL dependency from LIB_DEPENDS into USE_SDL - Add LICENSE_FILE, fix whitespace bugs, cleanup Makefile - Augment port description text while I'm here PR: 199211 Notes: svn path=/head/; revision=392666
* Update to version 1.0.2, small bug fix release (fixes a rare memory leak andAlexey Dokuchaev2015-07-224-12/+10
| | | | | | | | | | updates the documentation of the EBUR128_MODE_I mode parameter). While here, improve grammar in the port description text. PR: 199209 Notes: svn path=/head/; revision=392661
* Oops, reverse the stripping condition so it works as intended.Alexey Dokuchaev2015-07-211-1/+1
| | | | Notes: svn path=/head/; revision=392609
* - Update `audio/aubio' to version 0.4.1; make all dependencies/featuresAlexey Dokuchaev2015-07-217-61/+761
| | | | | | | | | | | | | | | | | | | | optional; provide a way to disable Doxygen even when it was found in the system - License was changed to GPLv3; do not install LICENSE_FILE since it is merely a boilerplate with no actual copyright data - `audio/ardour' needs to be patched for API changes in aubio 0.4. The patch comes from upstream, but new aubio version detection logic is not directly applicable, so simply define HAVE_AUBIO4 in the port's Makefile - While here, ensure that `audio/ardour' gets all of its dependencies, (ir)regardless of particular OPTIONS selected (or not selected) for the `audio/aubio' port - Bump port revisions of `audio/ardour' and `audio/denemo', the only two libaubio consumers in the tree PR: 200556 (slightly modified) Notes: svn path=/head/; revision=392608
* Pragha is a Lightweight Music Player, based on GTK, and SQLite.Olivier Duchateau2015-07-207-0/+154
| | | | | | | | | | | | | | | | | | | | | | Main features: * Full integration with GTK+3 * Library with multiple views, according tags or folder structure * Search, filtering and queue songs on current playlist * Playing and edit tag of mp3, m4a, ogg, flac, asf, wma, and ape files * Playlist management: Exporting M3U and read M3U, PLS, XSPF and WAX playlists. * Playback control with command line Extensible by plugins: * AcoustID: Get metadata on AcoustID service * Global Hotkeys: Control Pragha with multimedia keys * Notification: Show notification when change songs * Get radios: Search radios on TuneIn service WWW: http://pragha-music-player.github.io/ Notes: svn path=/head/; revision=392589
* Update midipp to 1.2.18.Koop Mast2015-07-202-3/+3
| | | | | | | | | | | - Added support for setting key-mode when loading songs. - Added support for song background selection changes. - Reworked show mode configuration. Submitted by: maintainer via IRC Notes: svn path=/head/; revision=392557
* Convert to USES=libarchiveBaptiste Daroussin2015-07-191-1/+1
| | | | Notes: svn path=/head/; revision=392532
* Oops, Fix INDEX breakage, port was renamed recently.Tilman Keskinoz2015-07-191-1/+1
| | | | Notes: svn path=/head/; revision=392495
* Update to 0.8.4Tilman Keskinoz2015-07-199-130/+174
| | | | | | | Based on patch from: nivit Notes: svn path=/head/; revision=392490
* Remove BROKEN; mirrors have been adjustedMark Felder2015-07-181-3/+3
| | | | Notes: svn path=/head/; revision=392447
* Remove expired port:Rene Ladan2015-07-167-182/+0
| | | | | | | 2015-07-15 audio/rubyripper: Does not build and is deprecated upstream Notes: svn path=/head/; revision=392324
* - Update to 2.7Guido Falsi2015-07-163-11/+11
| | | | | | | | | | | | | | | | - Disable LAME option by default due to LAME package not being available in default binary package set While here per portlint warnings: - Sort USES - Regenarate patch PR: 201433 Submitted by: frase at frase.id.au (maintainer) Notes: svn path=/head/; revision=392304
* Update to flac-1.2.1-7.el6_6Tijl Coosemans2015-07-152-6/+7
| | | | | | | | | MFH: 2015Q3 Security: CVE-2014-8962 Security: CVE-2014-9028 Notes: svn path=/head/; revision=392203
* Update to alsa-utils-1.0.22-9.el6_6Tijl Coosemans2015-07-152-8/+7
| | | | Notes: svn path=/head/; revision=392194
* Use OPTION helpers and USES=metaportKoop Mast2015-07-151-15/+3
| | | | | | | | PR: 201539 Submitted by: Andriy Voskoboinyk <s3erios@gmail.com> Notes: svn path=/head/; revision=392148
* - Fix shebangsDmitry Marakasov2015-07-151-2/+3
| | | | | | | | Approved by: portmgr blanket MFH: 2015Q3 (blanket) Notes: svn path=/head/; revision=392146
* - Fix shebangsDmitry Marakasov2015-07-141-2/+5
| | | | | | | | Approved by: portmgr blanket MFH: 2015Q3 (blanket) Notes: svn path=/head/; revision=392053
* - Fix shebangsDmitry Marakasov2015-07-141-2/+3
| | | | | | | | Approved by: portmgr blanket MFH: 2015Q3 (blanket) Notes: svn path=/head/; revision=392002
* - Update to 0.6.5Dmitry Marakasov2015-07-102-3/+3
| | | | | | | | PR: 201453 Submitted by: yamagi@yamagi.org (maintainer) Notes: svn path=/head/; revision=391709
* audio/paprefs: update 0.9.9 -> 0.9.10Bartek Rutkowski2015-07-082-5/+4
| | | | | | | | | | | - Update MASTER_SITES PR: 192572 Submitted by: Kevin Bowling <kevin.bowling@kev009.com> Approved by: maintainer timeout (11 months) Notes: svn path=/head/; revision=391550
* Enable the configure switch '--enable-pipe-output', which builds musicpd ↵Chris Rees2015-07-031-1/+3
| | | | | | | | | | with support for writing PCM audio to a pipe. PR: ports/201304 Submitted by: Georg G. Notes: svn path=/head/; revision=391266
* - Switch MASTER_SITES to SFDmitry Marakasov2015-07-033-73/+38
| | | | | | | | | | | | - Switch to OPTIONS helpers - Add LICENSE_FILE - Switch to @sample PR: 201171 Submitted by: tkato432@yahoo.com Notes: svn path=/head/; revision=391262