aboutsummaryrefslogtreecommitdiff
path: root/audio/pulseaudio
Commit message (Collapse)AuthorAgeFilesLines
* audio/pulseaudio: fix build on armv7Robert Clausecker2023-10-091-0/+13
| | | | | | | | | The inline assembly template modifier h is not supported by clang. With gcc, it prints a 128 bit NEON register as a pair of halves. Emulate its effect through the e and f modifiers, which are supported by both. Approved by: portmgr (build fix blanket) MFH: 2023Q4
* audio/pulseaudio: fix build with lld 17Dimitry Andric2023-10-061-0/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | Building audio/pulseaudio with lld 17 results in the following link errors: cc -o src/pulse/libpulse.so.0.24.2 src/pulse/libpulse.so.0.24.2.p/channelmap.c.o src/pulse/libpulse.so.0.24.2.p/context.c.o src/pulse/libpulse.so.0.24.2.p/direction.c.o src/pulse/libpulse.so.0.24.2.p/error.c.o src/pulse/libpulse.so.0.24.2.p/ext-device-manager.c.o src/pulse/libpulse.so.0.24.2.p/ext-device-restore.c.o src/pulse/libpulse.so.0.24.2.p/ext-stream-restore.c.o src/pulse/libpulse.so.0.24.2.p/format.c.o src/pulse/libpulse.so.0.24.2.p/introspect.c.o src/pulse/libpulse.so.0.24.2.p/mainloop-api.c.o src/pulse/libpulse.so.0.24.2.p/mainloop-signal.c.o src/pulse/libpulse.so.0.24.2.p/mainloop.c.o src/pulse/libpulse.so.0.24.2.p/operation.c.o src/pulse/libpulse.so.0.24.2.p/proplist.c.o src/pulse/libpulse.so.0.24.2.p/rtclock.c.o src/pulse/libpulse.so.0.24.2.p/sample.c.o src/pulse/libpulse.so.0.24.2.p/scache.c.o src/pulse/libpulse.so.0.24.2.p/stream.c.o src/pulse/libpulse.so.0.24.2.p/subscribe.c.o src/pulse/libpulse.so.0.24.2.p/thread-mainloop.c.o src/pulse/libpulse.so.0.24.2.p/timeval.c.o src/pulse/libpulse.so.0.24.2.p/utf8.c.o src/pulse/libpulse.so.0.24.2.p/util.c.o src/pulse/libpulse.so.0.24.2.p/volume.c.o src/pulse/libpulse.so.0.24.2.p/xmalloc.c.o -L/usr/local/lib -Wl,--as-needed -Wl,--allow-shlib-undefined -Wl,-O1 -shared -fPIC -Wl,--start-group -Wl,-soname,libpulse.so.0 -fstack-protector-strong -O2 -pipe -fstack-protector-strong -isystem /usr/local/include -fno-strict-aliasing -DLIBICONV_PLUG -isystem /usr/local/include '-Wl,-rpath,$ORIGIN/..:/usr/local/lib' -Wl,-rpath-link,/wrkdirs/share/dim/ports/audio/pulseaudio/work/pulseaudio-16.1/_build/src -Wl,-rpath-link,/usr/local/lib src/libpulsecommon-16.1.so -Wl,-z,nodelete -Wl,-version-script=/wrkdirs/share/dim/ports/audio/pulseaudio/work/pulseaudio-16.1/src/pulse/map-file -lm -pthread /usr/local/lib/libdbus-1.so -ldl -lintl -Wl,--end-group ld: error: version script assignment of 'PULSE_0' to symbol 'pa_glib_mainloop_free' failed: symbol not defined ld: error: version script assignment of 'PULSE_0' to symbol 'pa_glib_mainloop_get_api' failed: symbol not defined ld: error: version script assignment of 'PULSE_0' to symbol 'pa_glib_mainloop_new' failed: symbol not defined ld: error: version script assignment of 'PULSE_0' to symbol 'pa_simple_drain' failed: symbol not defined ld: error: version script assignment of 'PULSE_0' to symbol 'pa_simple_flush' failed: symbol not defined ld: error: version script assignment of 'PULSE_0' to symbol 'pa_simple_free' failed: symbol not defined ld: error: version script assignment of 'PULSE_0' to symbol 'pa_simple_get_latency' failed: symbol not defined ld: error: version script assignment of 'PULSE_0' to symbol 'pa_simple_new' failed: symbol not defined ld: error: version script assignment of 'PULSE_0' to symbol 'pa_simple_read' failed: symbol not defined ld: error: version script assignment of 'PULSE_0' to symbol 'pa_simple_write' failed: symbol not defined cc: error: linker command failed with exit code 1 (use -v to see invocation) This is because lld 17 defaults to errors when undefined symbols are referenced in linker version scripts. Since pulseaudio uses the same linker version script for both the regular libpulse.so, and the other variants, libpulse-mainloop-glib.so and libpulse-simple.so, some of the symbols are expected to be undefined, so suppress the errors by adding -Wl,--undefined-version to LDFLAGS. PR: 274111 Approved by: blanket (for desktop and kde) MFH: 2023Q4
* audio/pulseaudio: fix typo in SPEEX option handlingTobias C. Berner2023-08-141-1/+1
| | | | | | | | | b1ecad53b0b32916e5db596b26334db8015e4299 introduced a small typo: MESONP_ENABLED vs MESON_ENABLED. This lead to the speex-option not being able to turned off. Reported by: mord0d@firemail.cc PR: 273100
* audio/pulseaudio: Remove bogus patch to fix a crash. My bad.Gleb Popov2023-08-092-9/+1
| | | | Sponsored by: Serenity Cybersecurity, LLC
* audio/pulseaudio: Update to 16.1Gleb Popov2023-08-0713-406/+228
| | | | | | | | Bump PORTREVISION on consumers. Sponsored by: Serenity Cybersecurity, LLC PR: 262713
* audio/opus: bump consumers after update to 1.4Christian Weisgerber2023-04-251-1/+1
|
* audio/pulseaudio: unbreak build with clang 15Dimitry Andric2022-12-101-0/+1
| | | | | | | | | | | | | | | | | checking whether C compiler accepts -std=gnu11... no configure: error: *** Compiler does not support -std=gnu11 [...] configure:9379: cc -c -O2 -pipe -DLIBICONV_PLUG -fstack-protector-strong -isystem /usr/local/include -fno-strict-aliasing -pedantic -Werror -std=gnu11 -DLIBICONV_PLUG -isystem /usr/local/include conftest.c >&5 conftest.c:33:6: error: a function declaration without a prototype is deprecated in all versions of C [-Werror,-Wstrict-prototypes] main () ^ void https://gitlab.freedesktop.org/pulseaudio/pulseaudio/-/commit/1afd23363018 https://git.savannah.gnu.org/gitweb/?p=autoconf.git;a=commitdiff;h=1717921aa6c1 PR: 268250 Reported by: antoine (via bug 265425 exp-run)
* Remove WWW entries moved into port MakefilesStefan Eßer2022-09-071-2/+0
| | | | | | | | | | Commit b7f05445c00f has added WWW entries to port Makefiles based on WWW: lines in pkg-descr files. This commit removes the WWW: lines of moved-over URLs from these pkg-descr files. Approved by: portmgr (tcberner)
* Add WWW entries to port MakefilesStefan Eßer2022-09-071-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | It has been common practice to have one or more URLs at the end of the ports' pkg-descr files, one per line and prefixed with "WWW:". These URLs should point at a project website or other relevant resources. Access to these URLs required processing of the pkg-descr files, and they have often become stale over time. If more than one such URL was present in a pkg-descr file, only the first one was tarnsfered into the port INDEX, but for many ports only the last line did contain the port specific URL to further information. There have been several proposals to make a project URL available as a macro in the ports' Makefiles, over time. This commit implements such a proposal and moves one of the WWW: entries of each pkg-descr file into the respective port's Makefile. A heuristic attempts to identify the most relevant URL in case there is more than one WWW: entry in some pkg-descr file. URLs that are not moved into the Makefile are prefixed with "See also:" instead of "WWW:" in the pkg-descr files in order to preserve them. There are 1256 ports that had no WWW: entries in pkg-descr files. These ports will not be touched in this commit. The portlint port has been adjusted to expect a WWW entry in each port Makefile, and to flag any remaining "WWW:" lines in pkg-descr files as deprecated. Approved by: portmgr (tcberner)
* audio: remove 'Created by' linesTobias C. Berner2022-07-201-1/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | A big Thank You to the original contributors of these ports: * <dmagda+libsamplerate@ee.ryerson.ca> * <trasz@FreeBSD.org> * Adam Weinberger * Adam Weinberger <adamw@FreeBSD.org> * Akinori MUSHA aka knu <knu@idaemons.org> * Aleksander Fafula <alex@bsdguru.org> * Alex Allan <alex@kamaz.org.uk> * Alexander Botero-Lowry <alex@foxybanana.com> * Alexander Kojevnikov <alexander@kojevnikov.com> * Alexander Nedotsukov <bland@FreeBSD.org> * Alexander Vereeken <Alexander88207@protonmail.com> * Alexander Yerenkow <yerenkow@gmail.com> * Alexandr Kovalenko <never@nevermind.kiev.ua> * Alexey Dokuchaev <danfe@FreeBSD.org> * Anders Nordby <anders@FreeBSD.org> * Anders Nordby <anders@fix.no> * Andreas Kohn <andreas@syndrom23.de> * Andrew Pantyukhin <infofarmer@FreeBSD.org> * Andrey Zakhvatov * Anes Mukhametov <anes@anes.su> * Anthony Ginepro <anthony.ginepro@laposte.net> * Anton Yuzhaninov <citrin@citrin.ru> * Aragon Gouveia <aragon@phat.za.net> * Ashish SHUKLA <wahjava@gmail.com> * Ayumi M <ayu@commun.jp> * Ayumi Mitsui <ayu@commun.jp> * Bartoletti <lbartoletti@FreeBSD.org> * Bernard Spil <brnrd@FreeBSD.org> * Bill Fenner <fenner@FreeBSD.org> * Brad Walker <tha_walka@hotmail.com> * Brett Taylor <brett@peloton.physics.montana.edu> * Byung-Hee HWANG <bh@izb.knu.ac.kr> * Carey Jones <mcj@acquiesce.org> * Carlos J. Puga Medina <cpm@FreeBSD.org> * Cezary Morga <cm@therek.net> * Chao Shin <quakelee@cn.freebsd.org> * Charles Mercadal <mercadal@diablonet.net> * Chia-liang Kao <clkao@CirX.ORG> * Chip Marshall <chip@eboai.org> * Choi Jun Ho <junker@moderato.snu.ac.kr> * Chris Piazza <cpiazza@FreeBSD.org> * Christian Laursen <xi@borderworlds.dk> * Christopher Key <cjk32@cam.ac.uk> * Daniel Menelkir <dmenelkir@gmail.com> * Daniel O'Connor * David Bushong <david@bushong.net> * David Le Brun <david@dyn-ns.net> * David MacKenzie <djm@pix.net> * David Naylor <dbn@FreeBSD.org> * David Naylor <naylor.b.david@gmail.com> * David Yeske <dyeske@gmail.com> * Denise H. G. <darcsis@gmail.com> * Dennis Herrmann <adox@mcx2.org> * Dennis Herrmann <dhn@FreeBSD.org> * Devon Ryan <dpryan@dpryan.com> * Ditesh Shashikant Gathani <ditesh@gathani.org> * Dmitry Afanasiev <KOT@MATPOCKuH.Ru> * Dominic Mitchell <dom@happygiraffe.net> * Dominique Goncalves <dominique.goncalves@gmail.com> * Dryice Liu <dryice@dryice.name> * Edward Tomasz Napierala <trasz@FreeBSD.org> * Edward Tomasz Napierala <trasz@pin.if.uz.zgora.pl> * Emanuel Haupt <ehaupt@FreeBSD.org> * Emanuel Haupt <ehaupt@critical.ch> * Eric Anholt <anholt@FreeBSD.org> * Erik Cederstrand <erich@FreeBSD.org> * Francisco Gomez <francisco@gomezmarin.com> * Frank Laszlo <laszlof@vonostingroup.com> * František Dvořák <valtri@civ.zcu.cz> * Fraser Tweedale <frase@frase.id.au> * Gabor Kovesdan * Gabor Zahemszky <Gabor@Zahemszky.HU> * Ganael Laplanche <ganael.laplanche@martymac.org> * Gea-Suan Lin <gslin@gslin.org> * Gennady Sorokopud <gena@NetVision.net.il> * George Reid <greid@FreeBSD.org> * George Reid <greid@ukug.uk.freebsd.org> * Goran Mekić <meka@tilda.center> * Grzegorz Blach <gblach@FreeBSD.org> * Gustau Perez <gustau.perez@gmail.com> * Hans Petter Selasky <hselasky@FreeBSD.org> * Hans Petter Selasky <hselasky@freebsd.org> * Hye-Shik Chang * Hye-Shik Chang <perky@FreeBSD.org> * Jaap Akkerhuis <jaap@NLnetLabs.nl> * Jamie Heckford <jamie@blackhole.net> * Jean-Marc Zucconi <jmz@FreeBSD.org> * Jean-Yves Lefort <jylefort@FreeBSD.org> * Jean-Yves Lefort <jylefort@brutele.be> * Jerry Eriksson <jerry@freebsd.se> * Jim Mock <jim@FreeBSD.org> * Jin-Shan Tseng <tjs@cdpa.nsysu.edu.tw> * Joao Carlos Mendes Luis <jonny@jonny.eng.br> * Joe Marcus Clarke <marcus@FreeBSD.org> * John Hixson <jhixson@FreeBSD.org> * John Hixson <john@pcbsd.org> * Jonathan Lennox <lennox@cs.columbia.edu> * Joris Vandalon <joris@vandalon.nl> * Juha Erkkilä <erkkila@cc.jyu.fi> * Juha Nygard <juha.nygard1@netikka.fi> * Kawaguti Ginga <ginga@athena.club.ne.jp> * Kengo Ichiki <kichiki@users.sourceforge.net> * Koine Yuusuke(koinec) <koinec@users.osdn.me> * Konstantinos Konstantinidis <kkonstan@daemon.gr> * Koop Mast <kwm@FreeBSD.org> * Lars Engels <lars.engels@0x20.net> * Lars Engels <lme@FreeBSD.org> * Lars Thegler <lth@FreeBSD.org> * Leo Kim <leo@florida.sarang.net> * Liam J. Foy <liamfoy@sepulcrum.org> * Manuel Creach <manuel.creach@icloud.com> * Marc van Woerkom <3d@FreeBSD.org> * Mario Sergio Fujikawa Ferreira <lioux@FreeBSD.org> * Mark Felder <feld@FreeBSD.org> * Mark Kane <mark@mkproductions.org> * Mark Pulford <mark@kyne.com.au> * Mark Reidel <ports@mark.reidel.info> * Mark Reidel <ports@mark.reidle.info> * Martin Blapp <mbr@FreeBSD.org> * Martin Dieringer <Martin.Dieringer@t-online.de> * Martin Kraft <martin.kraft@fal.de> * Martin Matuska <mm@FreeBSD.org> * Martin Wilke (miwi@FreeBSD.org) * Martin Wilke <miwi@FreeBSD.org> * Masanori Kiriake <seiken@nbs.co.jp> * Mathew Kanner <mat@hak.cnd.mcgill.ca> * Matt Tosto <datahead4@gmail.com> * Matthias Andree <matthias.andree@gmx.de> * Maxim Sobolev <sobomax@FreeBSD.org> * Michael Beer <beerml@sigma6audio.de> * Michael Haro <mharo@area51.fremont.ca.us> * Michael Johnson <ahze@FreeBSD.org> * Michael Johnson <ahze@ahze.net> * Michael Nottebrock <michaelnottebrock@gmx.net> * Michael Vasilenko <acid@stu.cn.ua> * Mike Makonnen <mtm@identd.net> * Munish Chopra <mchopra@engmail.uwaterloo.ca> * Mykola Dzham <i@levsha.me> * Nadelyaev Stanislav <funkblaster@n11.bmstu.ru> * Necati Ersen SISECI <siseci@enderunix.org> * Nicola Vitale <nivit@FreeBSD.org> * Nicola Vitale <nivit@email.it> * Nicolas Herry <nicolasherry@gmail.com> * Oliver Breuninger <ob@breuninger.org> * Oliver Fromme <oliver.fromme@heim3.tu-clausthal.de> * Oliver Lehmann <oliver@FreeBSD.org> * Olivier Duchateau * Oyvind Moll <oyvindmo@initio.no> * Pav Lucistnik <pav@FreeBSD.org> * Pav Lucistnik <pav@oook.cz> * Peter Pentchev <roam@FreeBSD.org> * Philip Paeps <philip@paeps.cx> * Philippe Audeoud <jadawin@tuxaco.net> * Pietro Cerutti <gahr@FreeBSD.org> * Piotr Kubaj <emulation@FreeBSD.org$ * Piotr Kubaj <pkubaj@anongoth.pl> * Po-Chuan Hsieh <sunpoet@FreeBSD.org> * Putrya Statislav * Rahul Siddharthan <rsidd@online.fr> * Rich Neese <r.neese@gmail.com> * Richard Neese * Rob Zinkov <rzinkov@gmail.com> * Romain Tartiere <romain@blogreen.org> * Romain Tartière <romain@blogreen.org> * Roman Bogorodskiy * Roman Shterenzon <roman@xpert.com> * Sander Janssen <janssen@rendo.dekooi.nl> * Sascha Klauder <sklauder@trimind.de> * Satoshi Taoka <taoka@FreeBSD.org> * Sean McGovern <sean@sfarc.net> * Sergey Akifyev <asa@gascom.ru> * Seth Kingsley <sethk@osd.bsdi.com> * Simon 'corecode' Schubert <corecode@corecode.ath.cx> * Simon Barner <barner@gmx.de> * Stas Timokhin <stast@bsdportal.ru> * Stefan Ehmann <shoesoft@gmx.net> * Stefan Jahn <stefan.jahn@nemesis-sektor.de> * Stefan Zehl <sec@42.org> * Stepan Zastupov [RedChrom] <redchrom@gmail.com> * Steve Wills <swills@FreeBSD.org> * Sue Blake <sue@FreeBSD.org> * Sunpoet Po-Chuan Hsieh <sunpoet@sunpoet.net> * TOMIDA, Hiroaki <t.hiroaki.209 at gmail.com> * Tatsuki Makino <tatsuki_makino@hotmail.com> * The Anarcat <anarcat@anarcat.dyndns.org> * Thomas Gellekum <tg@FreeBSD.org> * Thomas M. Hermann <tmh.public@gmail.com> * Thomas Runge <runge@rostock.zgdv.de> * Thomas Zander <riggs@FreeBSD.org> * Tilman Linneweh <arved@FreeBSD.org> * Tim Bishop <tdb@FreeBSD.org> * Timothy Beyer <beyert@cs.ucr.edu> * Tobias Rehbein <tobias.rehbein@web.de> * Tyler Spivey * Ulrich Spoerlein <q@uni.de> * Ulrich Spoerlein <uspoerlein@gmail.com> * Vanilla I. Shu <vanilla@FreeBSD.org> * Veniamin Gvozdikov <vg@FreeBSD.org> * Vincent Tantardini <vinc@FreeBSD-fr.org> * Wen Heping <wen@FreeBSD.org> * Wen Heping <wenheping@gmail.com> * Yanhui Shen <shen.elf@gmail.com> * Yar Tikhiy <yar@FreeBSD.org> * Yar Tikhiy <yar@comp.chem.msu.su> * Ying-Chieh Liao <ijliao@FreeBSD.org> * Yoichi Asai <yatt@luna2.org> * Yoichi Asai <yatt@msc.biglobe.ne.jp> * Yoshiaki Uchikawa * Yoshihide SONODA <ysonoda@dontaku.csce.kyushu-u.ac.jp> * Yuri Victorovich * Yuri Victorovich <yuri@FreeBSD.org> * Yuri Victorovich <yuri@rawbw.com> * Zach Zurflu <zach@pabst.bendnet.com> * Zane C. Bowers * Zane C. Bowers-Hadley <vvelox@vvelox.net> * Zhihao Yuan <lichray@gmail.com> * ache * arved * chinsan * chinsan <chinsan.tw@gmail.com> * ericb@thedeepsky.com * erich@FreeBSD.org * faulkner@mpd.tandem.com * gahr * greg * hrkfrd@googlemail.com * ijliao * janek@gaja.ipan.lublin.pl * jkh * jockl <jockl@pianojockl.org> * kbyanc@posi.net * kwm@rainbow-runner.nl * lazyklimm <lazyklimm@gmail.com> * leo * lx * mahonmesr@googlemail.com * marius nuennerich * mathias.picker@gmx.de * michael johnson <ahze@ahze.net> * michaelnottebrock@gmx.net and lioux@FreeBSD.org * mtm@identd.net * nemysis <nemysis@gmx.ch> * nork@FreeBSD.org * nox@jelal.kn-bremen.de * numisemis at yahoo dot com * patrick * pjm <pierrejacqes.mimifir@gmail.com> * pozar * pst * r.neese * rene@FreeBSD.org (repocopied from audio/py-mpd) * sethk * shanee@augusta.de * sobomax * squell@alumina.nl * swallace * t.vanklaveren@student.utwente.nl * torstenb * trasz <trasz@FreeBSD.org * trasz <trasz@pin.if.uz.zgora.pl> * trevor * ugen * will * yoshiaki Uchikawa With hat: portmgr
* audio/pulseaudio: fix packaging after gconf removal (+)Dima Panov2022-06-081-2/+0
| | | | | | This is a followup to commit 7d3882764702d0564a803871083104c904b52417 Pointy hat to: bapt
* audio/pulseaudio: remove gconf optionBaptiste Daroussin2022-06-081-3/+2
|
* audio/pulseaudio: Fix for detachable USB audio devices.Hans Petter Selasky2022-05-252-3/+255
| | | | | | | | | | Make sure the pulseaudio OSS module does not keep the mixer device opened forever. Instead open and close the mixer device for every access. Also fix some bad code mixing get- and set- volume while at it. Reported by: several PR: 194727 Approved by: pi (implicit)
* audio/pulseaudio: parse /dev/sndstat correctly to get device nameAdriaan de Groot2021-09-152-2/+52
| | | | | | | | | | | | | This provides nice human-readable strings for devices in PA- aware applications (e.g. Firefox shows something nicer than "pcm0"). This bumps PORTREVISION again, even though there's a sequence of PA updates and fixes (which could conceivably be mashed into a single PORTREVISION increase). PR: 245156 Provided by: Henry Hu (original patches) Provided by: lightside (v3 patches)
* audio/pulseaudio: fix build on ARMv6 in QEMUAdriaan de Groot2021-09-152-2/+24
| | | | | | | | Switches to using GNU m4 (gm4) for processing PA configuration files; regular m4 behaves oddly in some build situations. PR: 208535 Submitted by: swills
* audio/jack: Update to Jack2: 0.125.0 -> 1.9.16Yuri Victorovich2021-08-021-0/+1
| | | | | | | | Big thank you to Florian Walpen <dev@submerge.ch> and Goran Mekić <meka@tilda.center> for working on Jack2. PR: 251125 Submitted by: Florian Walpen <dev@submerge.ch> (original version)
* audio/pulseaudio: Add X11 option.Evgeniy Khramtsov2021-06-042-13/+15
| | | | | PR: 255093 Tested by: arrowd
* audio/pulseaudio: fix build with ALSA optionKevin Bowling2021-04-131-72/+73
| | | | | | | PR: 252957 Reported by: rhurlin, fluffy Tested by: david@catwhisker.org Fixes: 6dd01d1520ee audio/pulseaudio: update the port to 14.2
* audio/pulseaudio: update the port to 14.2Kevin Bowling2021-04-124-19/+18
| | | | | | | | PR: 252957 Reported by: Matthias Apitz <guru@unixarea.de> Reviewed by: daniel.engberg.lists@pyret.net Approved by: tcberner (previous version) Obtained from: https://github.com/freebsd/freebsd-ports-kde/tree/pulseaudio-14
* Remove # $FreeBSD$ from Makefiles.Mathieu Arnold2021-04-061-1/+0
|
* audio/webrtc-audio-processing: update to 1.0Jan Beich2020-12-101-2/+2
| | | | | | | | Changes: https://gitlab.freedesktop.org/pulseaudio/webrtc-audio-processing/-/compare/v0.3.1...v1.0 Reported by: Repology Notes: svn path=/head/; revision=557409
* Chase libsndfile 1.0.30 update.Thomas Zander2020-10-011-0/+1
| | | | | | | | | Details: - Missing symbol sf_version_string, not auto-resolved by pkg + rebuild. - Bump PORTREVISION for consumers. Notes: svn path=/head/; revision=550824
* Move some gnome@ ports to desktop@Tobias C. Berner2020-09-101-1/+1
| | | | | | | | | | | | | | | | | | As gnome@ is lacking active committers at the moment, transfer some of its ports [1] up the stack to the desktop@ group, in hope that this way we get some updates in as the set of people that "should feel responsible" grows. As soon as gnome@ grows some committers again, this can (and should) of course be reverted again. [1] The list of ports chosen in this move consits of all the ports that are required to build x11/kde5. Approved by: portmgr (bapt) Differential Revision: https://reviews.freebsd.org/D26362 Notes: svn path=/head/; revision=548219
* Add USES=xorg USES=gl, ports categories aNiclas Zeising2019-11-041-1/+1
| | | | | | | | Add USES=xorg, USES=gl and in a few cases USES=gnome to ports in categories starting with 'a'. Notes: svn path=/head/; revision=516738
* audio/pulseaudio: don't look for libcheck if TESTS=offJan Beich2019-09-151-1/+1
| | | | Notes: svn path=/head/; revision=512114
* audio/pulseaudio: update to 13.0Jan Beich2019-09-155-14/+53
| | | | | | | | | | | | - Connect tests to the framework Changes: https://www.freedesktop.org/wiki/Software/PulseAudio/Notes/13.0/ ABI: https://abi-laboratory.pro/tracker/timeline/pulseaudio/ PR: 240585 Submitted by: lightside@gmx.com Notes: svn path=/head/; revision=512113
* 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
* audio/pulseaudio: Convert pkg-message to UCLTobias Kortkamp2019-07-201-0/+6
| | | | | | | Only show it on initial install. Notes: svn path=/head/; revision=506980
* For ports under categories a* and b*: remove some excessive linefeeds.Alexey Dokuchaev2019-05-291-1/+0
| | | | Notes: svn path=/head/; revision=502959
* Remove esound support from pulseaudio as audio/esound expired.Rene Ladan2019-05-012-9/+2
| | | | | | | | | Bump PORTREVISIONs of dependent ports. Build-tested in poudriere on a head-amd64 jail for audio/pulseaudio* Notes: svn path=/head/; revision=500606
* audio/pulseaudio: Always install shell completions per Porter's HandbookTobias Kortkamp2019-04-082-18/+12
| | | | | | | | | PR: 235925 Submitted by: romain Approved by: gnome (maintainer timeout, a month) Notes: svn path=/head/; revision=498395
* audio/pulseaudio: Fix gsettings schema installationTobias Kortkamp2019-04-082-2/+2
| | | | | | | | | | | | | Schema should be installed with GLIB_SCHEMAS, otherwise glib-compile-schemas does not get called and the installed schema is non-functional. PR: 235926 Submitted by: romain Approved by: gnome (maintainer timeout, a month) Notes: svn path=/head/; revision=498392
* 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
* Update `databases/gdbm' to version 1.18.1, an important bugfix releaseAlexey Dokuchaev2018-11-111-0/+1
| | | | | | | | | | | | | which restores compatibility with old databases (version 1.8) and some later versions which were built without mmap(2) support. Due to shlib version change, bump port revisions of the consumer ports. PR: 233059 Exp-run by: antoine Approved by: maintainer (johans, numerous timeouts) Notes: svn path=/head/; revision=484696
* audio/pulseaudio: Update to 12.2Steve Wills2018-11-097-29/+46
| | | | | | | | PR: 229192 Submitted by: lightside <lightside@gmx.com> Notes: svn path=/head/; revision=484515
* audio/pulseaudio: track webrtc-aec upstream defaultJan Beich2018-10-122-3/+7
| | | | | | | | | | | | | | | | | | | | | | $ pkg install webrtc-audio-processing $ make $ make check-plist ====> Checking for pkg-plist issues (check-plist) ===> Parsing plist ===> Checking for items in STAGEDIR missing from pkg-plist Error: Orphaned: lib/pulse-%%PULSE_VERSION%%/modules/libwebrtc-util.so ===> Checking for items in pkg-plist which are not in STAGEDIR ===> Error: Plist issues found. *** Error code 1 $ make stage-qa ====> Running Q/A tests (stage-qa) Error: /usr/local/lib/pulse-11.1/modules/libwebrtc-util.so is linked to /usr/local/lib/libwebrtc_audio_processing.so.1 from audio/webrtc-audio-processing but it is not declared as a dependency Warning: you need LIB_DEPENDS+=libwebrtc_audio_processing.so:audio/webrtc-audio-processing Notes: svn path=/head/; revision=481920
* Bump PORTREVISION for ports depending on the canonical version of GCCGerald Pfeifer2018-07-291-0/+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
* audio/pulseaudio: update to 11.1Jan Beich2018-04-142-5/+4
| | | | | | | | | | | | Changes: https://github.com/pulseaudio/pulseaudio/compare/v11.0...v11.1 ABI: https://abi-laboratory.pro/tracker/timeline/pulseaudio/ PR: 223506 Submitted by: lightside <lightside@gmx.com> Approved by: maintainer timeout (5 months) MFH: 2018Q2 (regression fixes) Notes: svn path=/head/; revision=467282
* Remove USES=execinfo.Mathieu Arnold2017-09-221-1/+1
| | | | | | | | | | PR: 220271 Submitted by: mat (review), Yasuhiro KIMURA (PR) Sponsored by: Absolight Differential Revision: https://reviews.freebsd.org/D11488 Notes: svn path=/head/; revision=450351
* Bump PORTREVISION for ports depending on the canonical version of GCCGerald Pfeifer2017-09-101-0/+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/pulseaudio: update to 11.0Jan Beich2017-09-066-22/+31
| | | | | | | | | | | | | - Drop --disable-xen following upstream change in 10.0 Changes: https://www.freedesktop.org/wiki/Software/PulseAudio/Notes/11.0/ ABI: https://abi-laboratory.pro/tracker/timeline/pulseaudio/ PR: 222093 Submitted by: lightside <lightside@gmx.com> MFH: 2017Q3 Notes: svn path=/head/; revision=449350
* Update consolekit to 1.2.0.Koop Mast2017-08-051-2/+2
| | | | | | | | | | | | | | | | * Rename consolekit to consolekit2 to reflect that consolekit2 is a new project, even if it the continuation of the old consolekit project. * Expand pkg-descr with some background info. * Add license * ConsoleKit2 has been ported to GDbus, so dbus-glib is not anymore required * Add GObject introspection support for desktops environment such Pantheon or Deepin. * Thanks to Jesper Schmitz Mouridsen, Ben Woods and Olivier Duchateau for assisting with there versions of the port, suggesting changes and testing. PR: 202269 Notes: svn path=/head/; revision=447399
* r431187 moved machine-id to the upstream default location. Remove patchingTijl Coosemans2017-05-041-2/+1
| | | | | | | | | of the path in audio/pulseaudio and devel/glib20. PR: 218983, 218984 Notes: svn path=/head/; revision=440100
* - Fix shebangsMartin Wilke2017-04-221-3/+4
| | | | Notes: svn path=/head/; revision=439137
* Bump PORTREVISIONs for ports depending on the canonical version of GCC andGerald Pfeifer2017-04-011-0/+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
* audio/pulseaudio: update to 10.0Jan Beich2017-01-194-9/+11
| | | | | | | | | | | Changes: https://www.freedesktop.org/wiki/Software/PulseAudio/Notes/10.0/ ABI: https://abi-laboratory.pro/tracker/timeline/pulseaudio/ PR: 216255 Submitted by: lightside <lightside@gmx.com> MFH: 2017Q1 Notes: svn path=/head/; revision=431892
* multimedia/ffmpeg: expose SOXR dependencyJan Beich2016-12-191-1/+0
| | | | Notes: svn path=/head/; revision=428895
* Bump PORTREVISIONS for ports depending on the canonical version of GCC andGerald Pfeifer2016-11-201-1/+1
| | | | | | | | | | | | lang/gcc which have moved from GCC 4.8.5 to GCC 4.9.4 (at least under some circumstances such as versions of FreeBSD or platforms). In particular that is ports with USE_GCC=yes, USE_GCC=any, or one of gcc-c++11-lib, openmp, nestedfct, c++11-lib as well as c++14-lang, c++11-lang, c++0x, c11 requested via USES=compiler. Notes: svn path=/head/; revision=426566
* audio/pulseaudio: simplify hw.snd.default_unit searchJan Beich2016-11-092-6/+3
| | | | | | | | | PR: 211684 Submitted by: lightside <lightside@gmx.com> MFH: 2016Q4 (r425809 bandwagon) Notes: svn path=/head/; revision=425812
* audio/pulseaudio: respect hw.snd.default_unitJan Beich2016-11-093-7/+52
| | | | | | | | | | | PR: 211684 Submitted by: lightside <lightside@gmx.com> Reviewed by: Tobias Kortkamp <t@tobik.me> Approved by: maintainer timeout (3 months) MFH: 2016Q4 (notorious for affecting www/firefox) Notes: svn path=/head/; revision=425809