notbugAs an Amazon Associate I earn from qualifying purchases.
Want a good read? Try FreeBSD Mastery: Jails (IT Mastery Book 15)
Want a good monitor light? See my photosAll times are UTC
Ukraine
This referral link gives you 10% off a Fastmail.com account and gives me a discount on my Fastmail account.

Get notified when packages are built

A new feature has been added. FreshPorts already tracks package built by the FreeBSD project. This information is displayed on each port page. You can now get an email when FreshPorts notices a new package is available for something on one of your watch lists. However, you must opt into that. Click on Report Subscriptions on the right, and New Package Notification box, and click on Update.

FInally, under Watch Lists, click on ABI Package Subscriptions to select your ABI (e.g. FreeBSD:14:amd64) & package set (latest/quarterly) combinatio for a given watch list. This is what FreshPorts will look for.

non port: audio/pulseaudio/Makefile

Number of commits found: 142 (showing only 100 on this page)

1 | 2  »  

Friday, 12 Jan 2024
22:40 Muhammad Moinur Rahman (bofh) search for other commits by this committer
*/*: Sanitize MANPREFIX for meson ports

Approved by:	portmgr
commit hash: 9f8f710b3ec3945ede5cf5d996c3391081d32df1 commit hash: 9f8f710b3ec3945ede5cf5d996c3391081d32df1 commit hash: 9f8f710b3ec3945ede5cf5d996c3391081d32df1 commit hash: 9f8f710b3ec3945ede5cf5d996c3391081d32df1 9f8f710
Friday, 6 Oct 2023
17:48 Dimitry Andric (dim) search for other commits by this committer
audio/pulseaudio: fix build with lld 17

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
commit hash: 86f04dd9a2c58f159b050b6043b919da2d120e6f commit hash: 86f04dd9a2c58f159b050b6043b919da2d120e6f commit hash: 86f04dd9a2c58f159b050b6043b919da2d120e6f commit hash: 86f04dd9a2c58f159b050b6043b919da2d120e6f 86f04dd
Monday, 14 Aug 2023
06:04 Tobias C. Berner (tcberner) search for other commits by this committer
audio/pulseaudio: fix typo in SPEEX option handling

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
commit hash: e5ff16ce3bc854b18239ec2ed18a11f02272066b commit hash: e5ff16ce3bc854b18239ec2ed18a11f02272066b commit hash: e5ff16ce3bc854b18239ec2ed18a11f02272066b commit hash: e5ff16ce3bc854b18239ec2ed18a11f02272066b e5ff16c
Wednesday, 9 Aug 2023
07:21 Gleb Popov (arrowd) search for other commits by this committer
audio/pulseaudio: Remove bogus patch to fix a crash. My bad.

Sponsored by:	Serenity Cybersecurity, LLC
commit hash: 01971242c9518dba714e1282ed2277b984deb4e7 commit hash: 01971242c9518dba714e1282ed2277b984deb4e7 commit hash: 01971242c9518dba714e1282ed2277b984deb4e7 commit hash: 01971242c9518dba714e1282ed2277b984deb4e7 0197124
Monday, 7 Aug 2023
16:34 Gleb Popov (arrowd) search for other commits by this committer
audio/pulseaudio: Update to 16.1

Bump PORTREVISION on consumers.

Sponsored by:	Serenity Cybersecurity, LLC

PR:		262713
commit hash: b1ecad53b0b32916e5db596b26334db8015e4299 commit hash: b1ecad53b0b32916e5db596b26334db8015e4299 commit hash: b1ecad53b0b32916e5db596b26334db8015e4299 commit hash: b1ecad53b0b32916e5db596b26334db8015e4299 b1ecad5
Tuesday, 25 Apr 2023
15:17 Christian Weisgerber (naddy) search for other commits by this committer
audio/opus: bump consumers after update to 1.4
commit hash: feb1fa34f58ea796656b86a81c2a2996b0b03c96 commit hash: feb1fa34f58ea796656b86a81c2a2996b0b03c96 commit hash: feb1fa34f58ea796656b86a81c2a2996b0b03c96 commit hash: feb1fa34f58ea796656b86a81c2a2996b0b03c96 feb1fa3
Saturday, 10 Dec 2022
20:36 Jan Beich (jbeich) search for other commits by this committer Author: Dimitry Andric
audio/pulseaudio: unbreak build with clang 15

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)
commit hash: a968b5fd5ef3b5a20c5d507697e354cfa5d07743 commit hash: a968b5fd5ef3b5a20c5d507697e354cfa5d07743 commit hash: a968b5fd5ef3b5a20c5d507697e354cfa5d07743 commit hash: a968b5fd5ef3b5a20c5d507697e354cfa5d07743 a968b5f
Wednesday, 7 Sep 2022
21:10 Stefan Eßer (se) search for other commits by this committer
Add WWW entries to port Makefiles

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)
commit hash: b7f05445c00f2625aa19b4154ebcbce5ed2daa52 commit hash: b7f05445c00f2625aa19b4154ebcbce5ed2daa52 commit hash: b7f05445c00f2625aa19b4154ebcbce5ed2daa52 commit hash: b7f05445c00f2625aa19b4154ebcbce5ed2daa52 b7f0544
Wednesday, 20 Jul 2022
14:20 Tobias C. Berner (tcberner) search for other commits by this committer
audio: remove 'Created by' lines

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
commit hash: 213b0b7a75cfb93729483fb1f59b236448f06a13 commit hash: 213b0b7a75cfb93729483fb1f59b236448f06a13 commit hash: 213b0b7a75cfb93729483fb1f59b236448f06a13 commit hash: 213b0b7a75cfb93729483fb1f59b236448f06a13 213b0b7
Wednesday, 8 Jun 2022
14:06 Baptiste Daroussin (bapt) search for other commits by this committer
audio/pulseaudio: remove gconf option
commit hash: 7d3882764702d0564a803871083104c904b52417 commit hash: 7d3882764702d0564a803871083104c904b52417 commit hash: 7d3882764702d0564a803871083104c904b52417 commit hash: 7d3882764702d0564a803871083104c904b52417 7d38827
Wednesday, 25 May 2022
08:58 Hans Petter Selasky (hselasky) search for other commits by this committer
audio/pulseaudio: Fix for detachable USB audio devices.

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)
commit hash: 3bc8803e5c4a96b60ffe5fa6887e2b73e0df7756 commit hash: 3bc8803e5c4a96b60ffe5fa6887e2b73e0df7756 commit hash: 3bc8803e5c4a96b60ffe5fa6887e2b73e0df7756 commit hash: 3bc8803e5c4a96b60ffe5fa6887e2b73e0df7756 3bc8803
Wednesday, 15 Sep 2021
15:43 Adriaan de Groot (adridg) search for other commits by this committer
audio/pulseaudio: parse /dev/sndstat correctly to get device name

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)
commit hash: bfcd467d8fd8760db835ea2fc9134a79f5a9e13e commit hash: bfcd467d8fd8760db835ea2fc9134a79f5a9e13e commit hash: bfcd467d8fd8760db835ea2fc9134a79f5a9e13e commit hash: bfcd467d8fd8760db835ea2fc9134a79f5a9e13e bfcd467
15:43 Adriaan de Groot (adridg) search for other commits by this committer
audio/pulseaudio: fix build on ARMv6 in QEMU

Switches to using GNU m4 (gm4) for processing PA configuration
files; regular m4 behaves oddly in some build situations.

PR:		208535
Submitted by:	swills
commit hash: 3c1f4f5c80627a368ea17fe0918e3623e1b10b84 commit hash: 3c1f4f5c80627a368ea17fe0918e3623e1b10b84 commit hash: 3c1f4f5c80627a368ea17fe0918e3623e1b10b84 commit hash: 3c1f4f5c80627a368ea17fe0918e3623e1b10b84 3c1f4f5
Monday, 2 Aug 2021
16:03 Yuri Victorovich (yuri) search for other commits by this committer
audio/jack: Update to Jack2: 0.125.0 -> 1.9.16

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)
commit hash: 5708ae4005cedc7b84522f84b964092319d853cd commit hash: 5708ae4005cedc7b84522f84b964092319d853cd commit hash: 5708ae4005cedc7b84522f84b964092319d853cd commit hash: 5708ae4005cedc7b84522f84b964092319d853cd 5708ae4
Friday, 4 Jun 2021
20:01 Gleb Popov (arrowd) search for other commits by this committer Author: Evgeniy Khramtsov
audio/pulseaudio: Add X11 option.

PR:		255093
Tested by:	arrowd
commit hash: 9f6ccfbfaf7b949f339cc2ff31155218fcfce9eb commit hash: 9f6ccfbfaf7b949f339cc2ff31155218fcfce9eb commit hash: 9f6ccfbfaf7b949f339cc2ff31155218fcfce9eb commit hash: 9f6ccfbfaf7b949f339cc2ff31155218fcfce9eb 9f6ccfb
Monday, 12 Apr 2021
23:09 Kevin Bowling (kbowling) search for other commits by this committer
audio/pulseaudio: update the port to 14.2

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
commit hash: 6dd01d1520ee30194d0493c1dea31bc71a12151d commit hash: 6dd01d1520ee30194d0493c1dea31bc71a12151d commit hash: 6dd01d1520ee30194d0493c1dea31bc71a12151d commit hash: 6dd01d1520ee30194d0493c1dea31bc71a12151d 6dd01d1
Tuesday, 6 Apr 2021
14:31 Mathieu Arnold (mat) search for other commits by this committer
Remove # $FreeBSD$ from Makefiles.
commit hash: 305f148f482daf30dcf728039d03d019f88344eb commit hash: 305f148f482daf30dcf728039d03d019f88344eb commit hash: 305f148f482daf30dcf728039d03d019f88344eb commit hash: 305f148f482daf30dcf728039d03d019f88344eb 305f148
Thursday, 10 Dec 2020
02:42 jbeich search for other commits by this committer
audio/webrtc-audio-processing: update to 1.0

Changes:	https://gitlab.freedesktop.org/pulseaudio/webrtc-audio-processing/-/compare/v0.3.1...v1.0
Reported by:	Repology
Original commitRevision:557409 
Thursday, 10 Sep 2020
18:55 tcberner search for other commits by this committer
Move some gnome@ ports to desktop@

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
Original commitRevision:548219 
Monday, 4 Nov 2019
20:39 zeising search for other commits by this committer
Add USES=xorg USES=gl, ports categories a

Add USES=xorg, USES=gl and in a few cases USES=gnome to ports in categories
starting with 'a'.
Original commitRevision:516738 
Sunday, 15 Sep 2019
16:20 jbeich search for other commits by this committer
audio/pulseaudio: don't look for libcheck if TESTS=off
Original commitRevision:512114 
16:15 jbeich search for other commits by this committer
audio/pulseaudio: update to 13.0

- 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
Original commitRevision:512113 
Friday, 26 Jul 2019
20:46 gerald search for other commits by this committer
Bump PORTREVISION for ports depending on the canonical version of GCC
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
Original commitRevision:507372 
Wednesday, 1 May 2019
19:35 rene search for other commits by this committer
Remove esound support from pulseaudio as audio/esound expired.

Bump PORTREVISIONs of dependent ports.

Build-tested in poudriere on a head-amd64 jail for audio/pulseaudio*
Original commitRevision:500606 
Monday, 8 Apr 2019
17:31 tobik search for other commits by this committer
audio/pulseaudio: Always install shell completions per Porter's Handbook

PR:		235925
Submitted by:	romain
Approved by:	gnome (maintainer timeout, a month)
Original commitRevision:498395 
17:25 tobik search for other commits by this committer
audio/pulseaudio: Fix gsettings schema installation

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)
Original commitRevision:498392 
Wednesday, 12 Dec 2018
01:35 gerald search for other commits by this committer
Bump PORTREVISION for ports depending on the canonical version of GCC
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
Original commitRevision:487272 
Sunday, 11 Nov 2018
15:38 danfe search for other commits by this committer
Update `databases/gdbm' to version 1.18.1, an important bugfix release
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)
Original commitRevision:484696 
Friday, 9 Nov 2018
15:32 swills search for other commits by this committer
audio/pulseaudio: Update to 12.2

PR:		229192
Submitted by:	lightside <lightside@gmx.com>
Original commitRevision:484515 
Friday, 12 Oct 2018
19:00 jbeich search for other commits by this committer
audio/pulseaudio: track webrtc-aec upstream default

$ 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
Original commitRevision:481920 
Sunday, 29 Jul 2018
22:18 gerald search for other commits by this committer
Bump PORTREVISION for ports depending on the canonical version of GCC
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
Original commitRevision:475857 
Saturday, 14 Apr 2018
02:05 jbeich search for other commits by this committer
audio/pulseaudio: update to 11.1

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)
Original commitRevision:467282 
Friday, 22 Sep 2017
10:48 mat search for other commits by this committer
Remove USES=execinfo.

PR:		220271
Submitted by:	mat (review), Yasuhiro KIMURA (PR)
Sponsored by:	Absolight
Differential Revision:	https://reviews.freebsd.org/D11488
Original commitRevision:450351 
Sunday, 10 Sep 2017
20:55 gerald search for other commits by this committer
Bump PORTREVISION for ports depending on the canonical version of GCC
(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
Original commitRevision:449591 
Wednesday, 6 Sep 2017
17:46 jbeich search for other commits by this committer
audio/pulseaudio: update to 11.0

- 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
Original commitRevision:449350 
Saturday, 5 Aug 2017
10:58 kwm search for other commits by this committer
Update consolekit to 1.2.0.

* 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
Original commitRevision:447399 
Thursday, 4 May 2017
12:08 tijl search for other commits by this committer
r431187 moved machine-id to the upstream default location.  Remove patching
of the path in audio/pulseaudio and devel/glib20.

PR:		218983, 218984
Original commitRevision:440100 
Saturday, 22 Apr 2017
08:28 miwi search for other commits by this committer
- Fix shebangs
Original commitRevision:439137 
Saturday, 1 Apr 2017
15:23 gerald search for other commits by this committer
Bump PORTREVISIONs for ports depending on the canonical version of GCC and
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
Original commitRevision:437439 
Thursday, 19 Jan 2017
18:15 jbeich search for other commits by this committer
audio/pulseaudio: update to 10.0

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
Original commitRevision:431892 
Monday, 19 Dec 2016
01:08 jbeich search for other commits by this committer
multimedia/ffmpeg: expose SOXR dependency
Original commitRevision:428895 
Sunday, 20 Nov 2016
09:38 gerald search for other commits by this committer
Bump PORTREVISIONS for ports depending on the canonical version of GCC and
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.
Original commitRevision:426566 
Wednesday, 9 Nov 2016
22:06 jbeich search for other commits by this committer
audio/pulseaudio: simplify hw.snd.default_unit search

PR:		211684
Submitted by:	lightside <lightside@gmx.com>
MFH:		2016Q4 (r425809 bandwagon)
Original commitRevision:425812 
21:54 jbeich search for other commits by this committer
audio/pulseaudio: respect hw.snd.default_unit

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)
Original commitRevision:425809 
Tuesday, 25 Oct 2016
12:53 jbeich search for other commits by this committer
audio/pulseaudio: update to 9.0

- Add xcb to USE_XORG, required by bin/pacat
- Add iconv to USES, required by bin/pacat
- Add ssl to USES and correct OPENSSL_CFLAGS and OPENSSL_LIBS
- Replace --disable-systemd with correct --disable-systemd-* configure arguments
- Move ALSA and JACK to AUDIO options group
- Move BASH and ZSH to COMPLETIONS options group
- Add DATABASE single option to be able to select supported database
- Add SIMPLE (database support) to default options
- Silence mkdir
- Replace files/patch-src_daemon_default.pa.in with sed patch
- Adapt pkg-plist

Changes:	https://www.freedesktop.org/wiki/Software/PulseAudio/Notes/9.0/
ABI:		https://abi-laboratory.pro/tracker/timeline/pulseaudio/
PR:		210548
Submitted by:	lightside@gmx.com
Approved by:	maintainer timeout (4 months)
Original commitRevision:424621 
Friday, 21 Oct 2016
12:51 mat search for other commits by this committer
${RM} already has -f.

PR:		213570
Submitted by:	mat
Exp-run by:	antoine
Sponsored by:	Absolight
Original commitRevision:424411 
Friday, 1 Apr 2016
13:29 mat search for other commits by this committer
Remove ${PORTSDIR}/ from dependencies, Mk and categories a, b, and c.

With hat:	portmgr
Sponsored by:	Absolight
Original commitRevision:412344 
Sunday, 14 Feb 2016
18:57 kwm search for other commits by this committer
The FreeBSD GNOME team proudly presents GNOME 3.18 for FreeBSD.

The offical GNOME 3.18 release notes can be found at
https://help.gnome.org/misc/release-notes/3.18/

This update doesn't contain the glib/gtk c++ bindings which will
be done in a another update due to the requirement on c++11 and the
amount of fallout this probably will give.

GDM is still at version 3.16 due to some issues.

Bump mate-themes to use the gtk 3.18 version of the themes.

Thanks to Antoine Brodin for running the exp-runs.

This release was made possible by the following people:
  Gustau Perez
  Ting-Wei_Lan

PR:	207006
Original commitRevision:408881 
Monday, 19 Oct 2015
14:50 amdmi3 search for other commits by this committer
Improve shebangfix framework

- Support multiple values in *_OLD_CMD, i.e. we can now fix both
"/usr/bin/python" and "/usr/bin/env python" at the same time
- Default *_OLD_CMD values are now always appended, so you don't need to specify
them in individual ports
- Add lua support (depends on USES=lua)
- Add more default values, such as "/usr/bin/env foo" for python, perl, bash,
ruby and lua
- Shebangfix now matches whole words, e.g. we will no longer (erroneously)
replace "/usr/bin/perl5.005" with "${perl_CMD}5.005" (but "/usr/bin/perl -tt" is
still (correctly) replaced with "${perl_CMD} -tt")

Note that *_OLD_CMD items containing spaces must now be quoted (e.g.
perl_OLD_CMD=/bin/perl /usr/bin/perl "/usr/bin/env perl")

Update shebangfix usage according to new rules in many ports:

- Remove *_OLD_CMD for patterns now replaced by default
- Quote custom *_OLD_CMD which contain spaces

Fix shebangfix usage in many ports (irrelevant to infrastructure change):

- Remove redundant SHEBANG_LANG (no need to duplicate default langs)
- Remove redundant *_CMD (such as
python_CMD=${LOCALBASE}/bin/python${PYTHON_VER} when USES=python is present)
- Never use *_OLD_CMD in REINPLACE_CMD matchers, these should always look for
exact string

Approved by:	portmgr (bapt)
Differential Revision:	D3756
Original commitRevision:399684 
Wednesday, 19 Aug 2015
13:30 mat search for other commits by this committer
Convert ports to use the options helpers in categories [abc]*, and minor fixes.

Sponsored by:	Absolight
Differential Revision:	https://reviews.freebsd.org/D3412?
Original commitRevision:394778 
Saturday, 8 Aug 2015
08:42 novel search for other commits by this committer
Disable xen option by adding '--disable-xen' to CONFIGURE_ARGS. Xen extension
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
Original commitRevision:393717 
Saturday, 13 Jun 2015
21:32 kwm search for other commits by this committer
* Fix segfault on HEAD part 2.
  * Make sure that linux/kFreeBSD code isn't run on FreeBSD itself.
  * Pass the correct value back via the argument of the calling function. [1]
  * Fix white space to match the rest of the file, so upstream can't complain
    about that.

* Drop freedesktop-sound-theme it isn't used by default. Add line to
  pkg-message to mention that it needs to be installed if enabled in
  default.pa.
* Don't use ETCDIR in pkg-message.in, it gets expanded to
  ${LOCALBASE}/etc/pulseaudio which isn't correct since pulseaudio uses
  etc/pulse/

[1] I have no idea what I did to break this in the first version, while
  it worked at the time localy.
Original commitRevision:389555 
Sunday, 31 May 2015
16:12 kwm search for other commits by this committer
Fix a segfault by using some FreeBSD sysctl to get the info needed.
This can happen when /proc isn't mounted.

While here, teach where the dbus machine-id file lives.
> Description of fields to fill in above:                     76 columns --|
> PR:                       If a GNATS PR is affected by the change.
> Differential Revision:    https://reviews.freebsd.org/D### (*full* phabric URL
needed).
> Submitted by:             If someone else sent in the change.
> Reviewed by:              If someone else reviewed your modification.
> Approved by:              If you needed approval for this commit.
> Obtained from:            If the change is from a third party.
> MFC after:                N [day[s]|week[s]|month[s]].  Request a reminder
email.
> MFH:                      Ports tree branch name.  Request approval for merge.
> Relnotes:                 Set to 'yes' for mention in release notes.
> Security:                 Vulnerability reference (one per line) or
description.
> Sponsored by:             If the change was sponsored by an organization.
> Empty fields above will be automatically removed.

M    pulseaudio/Makefile
AM   pulseaudio/files/patch-src_pulse_util.c
Original commitRevision:388121 
Thursday, 16 Apr 2015
07:46 kwm search for other commits by this committer
The _DISABLE used by the zsh option doesn't exist, change it to _OFF [1]
Fix plist when the ALSA option is enabled. [2]

Submitted by:	jbeich@ [1], Barbara Guida <barbara.freebsd@gmail.com> [2]
Original commitRevision:384089 
Wednesday, 15 Apr 2015
21:41 kwm search for other commits by this committer
Update pulseaudio to 6.0 [1].

* Correct some paths in the default config file (default.pa). [1]
* Add run depend freedesktop-sound-theme since pulse tries to run these files.
* Add a small patch to allow 24bit audio formats, it not clear why this is
  disabled by default. [2]
* Add pkg-message with instructions how to set input/output channel.
* The kde start script was merged into the normal x11 start script.

PR:		198567 [1], [2]
Submitted by:	olivierd@ [1], romain@ [2]
Original commitRevision:384072 
Monday, 13 Apr 2015
18:17 amdmi3 search for other commits by this committer
- Add LICENSE
- Add CPE info

Approved by:	kwm
Original commitRevision:383946 
Wednesday, 25 Mar 2015
21:37 marino search for other commits by this committer
audio category: Remove $PTHREAD_LIBS

xmcd didn't pass check-plist (pre-existing), fixed.

approved by:	PTHREAD blanket
Original commitRevision:382272 
Saturday, 24 Jan 2015
19:27 antoine search for other commits by this committer
Fix some _DEPENDS
Original commitRevision:377815 
Monday, 8 Dec 2014
16:48 tijl search for other commits by this committer
Replace USES=libtool:oldver with USES=libtool or USES=libtool:keepla in
the 32 ports that still use it.  Bump PORTREVISION on their dependent
ports except the ones that depend on these:

audio/libogg
audio/libvorbis
devel/pcre
ftp/curl
graphics/jpeg
graphics/libart_lgpl
graphics/tiff
textproc/expat2
textproc/libxslt

In these cases the same trick as in the recent gettext update is used.
The ports install a symlink with the old library version.  When enough
of their dependent ports have had regular updates the remaining ones can
get a PORTREVISION bump and the links can be removed.

Also remove the devel/pcre dependency from USE_GNOME=glib20.  It causes
over 2200 packages to depend on devel/pcre while less than 200 actually
link with it.  The glib20 package still depends on devel/pcre so this
should not make a difference for ports with USE_GNOME=glib20.  Also,
libdata/pkgconfig/glib-2.0.pc lists pcre as a private library so
USE_GNOME=glib20 should not propagate it.

PR:		195724
Exp-run by:	antoine
Approved by:	portmgr (antoine)
Original commitRevision:374303 
Wednesday, 19 Nov 2014
11:49 kwm search for other commits by this committer
The FreeBSD GNOME team proudly presents GNOME 3.14 and Cinnamon 2.2.
Gnome 3.14.1 and Cinnamon 2.2.16 are supported on FreeBSD 9.3-RELEASE and up.

This commit removes the old GNOME 2 desktop, bindings and some ports that
can't be compiled. A few ports where updated to more recent versions to
allow them to compile with this update.

Apart from updating ports to newer versions

GDM is more integrated with gnome-shell now, and handles several things for
the GNOME desktop such as screen locking. If you want to use GNOME 3 via
startx, you will have to add your own lock screen/screensaver. For example
xscreensaver
can be used for sessions started without GDM.

Shell Extensions can be installed via https://extensions.gnome.org/ , we have
ported a few that can't be installed via this way.
The old gnome-utils and gnome-games ports where split up into single ports
and where converted to meta-ports.
gnome-terminal requires a UTF-8 locale to run, gdm handles this already, but
if you use startx you need to do this yourself.

Upgrade instructions:

Delete the old and conflicting packages:
# pkg delete clutter gnome-utils gnome-panel gnome-keyring vala-vapigen \
    guile gcalctool gnome-media libgnomekbd
# pkg delete gnome-screensaver gnome-applets bug-buddy evolution-exchange \
    evolution-webcal gnome-system-tools seahorse-plugins gnome-control-center

For package users the following lines will be enough:
# pkg upgrade
# pkg install gnome3

For ports users should do the following:
# portmaster -a
# portmaster x11/gnome3

We are currently aware of two issues. The first issue is a bug in the
file monitoring code in the glib20 port. This bug causes glib programs
to crash when files in a monitored directory are added or removed.
Upstream is aware of the problem, but since the problem is quite complex
there is no solution yet. This problem isn't restricted to BSD.

The second issue is that on certain video cards totem will display a
purple/pink overlay on the video. It not clear yet where the issues
comes from.

Major thanks goes to Gustau Perez for being a driving force behind getting
GNOME 3 up to speed again. Also thanks to Antoine Brodin for running the
exp-runs.

This update was also made possible by:
	Joe Maloney
	Kris Moore
	Beeblebrox
	Ryan Lortie
	Antoine Jacoutot
	and everyone I missed
Original commitRevision:372768 
Wednesday, 17 Sep 2014
07:38 tijl search for other commits by this committer
Replace USE_AUTOTOOLS=libltdl with an ordinary LIB_DEPENDS in all ports.
There are only 60 such ports so there doesn't need to be a separate
keyword or USES for this.

Approved by:	portmgr (bapt)
Original commitRevision:368356 
Monday, 1 Sep 2014
21:24 tijl search for other commits by this committer
Convert to USES=libtool and add INSTALL_TARGET=install-strip

Obtained from:	gnome-dev
Original commitRevision:366958 
Monday, 4 Aug 2014
23:04 bapt search for other commits by this committer
USES=execinfo
Original commitRevision:364066 
Wednesday, 11 Jun 2014
14:50 tijl search for other commits by this committer
Support LIBS like LDFLAGS.

- Add LIBS="${LIBS}" to MAKE_ENV and CONFIGURE_ENV.
- Add an option helper for LIBS.
- Adjust all ports that already use LIBS.  Also remove references to
  PTHREAD_CFLAGS and PTHREAD_LIBS while here.
- Some ports did not support having a LIBS environment variable and
  required additional patches.

Somewhat simplified a linker command line looks like:

${CC} ${src_LDFLAGS} ${LDFLAGS} ${src_LIBS} ${LIBS}

where src_LDFLAGS and src_LIBS are controlled by upstream and LDFLAGS and
LIBS can be controlled by us.  If possible -L and -l flags need to be
added to LIBS to make sure they appear after any -L and -l flags set by
upstream.  Many ports currently add -L${LOCALBASE}/lib to LDFLAGS but this
may appear too early on the command line causing installed libraries to
be linked in instead of freshly built ones.

Additional changes:
benchmarks/netio: Replace WITH_IPV6 with an IPV6 option.
comms/gnokii: Replace some patches with USES=pathfix.  Also remove -fPIC.
graphics/gimageview: USES=libtool and install desktop file in DESKTOPDIR.
graphics/visionworkbench: Remove FreeBSD 7 support.
multimedia/libmovtar: New LIB_DEPENDS syntax.
multimedia/opencinematools: Use standard do-build.
net/siproxd: USES=libtool:keepla (port actually needs .la files for plugins)
net-mgmt/nagios: Remove -fPIC.
net-mgmt/nagios4: Remove -fPIC.
print/cups-base: Only add -lssp_nonshared on i386 and OSVERSION < 1000036.
security/p11-kit: Replace PTHREAD_LIBS in CONFIGURE_ENV with
ac_cv_func_pthread_mutexattr_init=no in CONFIGURE_ARGS.  This skips a test
in configure that falsely detects pthread_mutexattr_init in our libc.
sysutils/dar: Fix iconv detection.
x11/rxvt-unicode: Remove -lstdc++ and patch configure to remove a FreeBSD
hack and use $CXX as linker as on other platforms.

PR:		190592
Exp-run by:	antoine
Approved by:	portmgr (antoine)
Original commitRevision:357486 
Monday, 31 Mar 2014
18:59 kwm search for other commits by this committer
Stagify.
Original commitRevision:349788 
Wednesday, 11 Dec 2013
14:40 bapt search for other commits by this committer
Fix typo
Original commitRevision:336169 
14:35 bapt search for other commits by this committer
In preparation for making libtool generate libraries with a sane name, fix all
LIB_DEPENDS in audio

With hat:	portmgr
Original commitRevision:336166 
Friday, 20 Sep 2013
14:36 bapt search for other commits by this committer
Add NO_STAGE all over the place in preparation for the staging support (cat:
audio)
Original commitRevision:327706 
Friday, 30 Aug 2013
22:31 bapt search for other commits by this committer
Add an explicit dependency on pkgconf
While here:
- trim headers
- convert USE_GMAKE to USES=gmake
Original commitRevision:325725 
Wednesday, 5 Jun 2013
08:59 bapt search for other commits by this committer
Convert to new option framework

Approve by:	gnome (kwm)
Obtained from:	gnome dev repo
Original commitRevision:319963 
Wednesday, 24 Apr 2013
18:10 ak search for other commits by this committer
- Convert USE_GETTEXT to USES (part 3)

Approved by:	portmgr (bapt)
Original commitRevision:316464 
Thursday, 16 Aug 2012
17:26 kwm search for other commits by this committer
Implict depend on libsndfile, since libsndfile was made a optional depend in
the libsamplerate port..

Submitted by:	Luca Pizzamiglio <luca.pizzamiglio@gmail.com>
		John Hein <gnome-jfbml@snkmail.com>
Original commit
Friday, 1 Jun 2012
05:26 dinoex search for other commits by this committer
- update png to 1.5.10
Original commit
Sunday, 20 May 2012
16:22 mezz search for other commits by this committer
Fix the build with clang.

PR:             ports/167957
Submitted by:   Alan Hicks <ahicks@p-o.co.uk>
Original commit
Sunday, 15 Jan 2012
12:48 garga search for other commits by this committer
Adjust necesary ports to build with xcb-util 0.3.8

audio/pulseaudio is being updated to 0.9.23
x11/startup-notification is being updated to 0.12

Both was approved by kwm@

x11-wm/awesome is being updated to 3.4.11

Exp-run by:     pav@
Original commit
Thursday, 3 Nov 2011
12:25 kwm search for other commits by this committer
Update MASTER_SITE
Don't pickup linux/input.h, this should fix plist failure because the evdev
modules is build (which is useless for us). [2]
Disable alsa support..
Remove FreeBSD 6.x patch.
Disable mmap support on FreeBSD versions that don't have support for it. [1]

PR:             ports/161567 [2]
Submitted by:   avg@ [1]
Reported by:    Takefu <takefu@airport.fm> [2]
Original commit
Friday, 23 Sep 2011
22:26 amdmi3 search for other commits by this committer
- Add LDFLAGS to CONFIGURE_ENV and MAKE_ENV (as it was done with LDFLAGS)
- Fix all ports that add {CPP,LD}FLAGS to *_ENV to modify flags instead

PR:             157936
Submitted by:   myself
Exp-runs by:    pav
Approved by:    pav
Original commit
Monday, 12 Sep 2011
23:17 gabor search for other commits by this committer
- Track dependencies after databases/gdbm update
Original commit
Thursday, 11 Aug 2011
19:20 kwm search for other commits by this committer
Remove USE_GNOME=gnometarget from ports. It has been a empty keyword since
mid 2008.

PR:             ports/159624
Submitted by:   Ruslan Mahmatkhanov <cvs-src@yandex.ru>
Original commit
Saturday, 12 Mar 2011
15:09 swills search for other commits by this committer
Disable Capabilities globally since it is broken

PR:             ports/155235
Submitted by:   Scot Hetzel <swhetzel at gmail.com>
Approved by:    kwm (multimedia@)
Original commit
Saturday, 4 Dec 2010
07:34 ade search for other commits by this committer
Sync to new bsd.autotools.mk
Original commit
Saturday, 27 Nov 2010
21:35 marcus search for other commits by this committer
Update to 0.9.22.
Original commit
Sunday, 25 Jul 2010
12:35 kwm search for other commits by this committer
Don't overwrite config files when reinstalling. [1]

Don't detect /dev/dspN.0 instead of /dev/dpsN. We should not reference a
virtual channel 0, which is automatically cloned from /dev/dspN. [2]

Reported by:    someone on #bsdports [1]
                jkim@ [2]
Original commit
Monday, 31 May 2010
02:01 ade search for other commits by this committer
Bounce PORTREVISION for gettext-related ports.  Have fun, ya'll.
Original commit
Sunday, 28 Mar 2010
06:47 dinoex search for other commits by this committer
- update to 1.4.1
Reviewed by:    exp8 run on pointyhat
Supported by:   miwi
Original commit
Friday, 5 Feb 2010
11:46 dinoex search for other commits by this committer
- update to jpeg-8
Original commit
Saturday, 23 Jan 2010
19:49 marcus search for other commits by this committer
Unconditionally depend on consolekit, and remove an unused configure option.

PR:             142906
Submitted by:   Yuri Pankov <yuri.pankov@gmail.com>
Original commit
Saturday, 28 Nov 2009
20:06 marcus search for other commits by this committer
Presenting GNOME 2.28.1 for FreeBSD.  The official release notes for this
release can be found at http://library.gnome.org/misc/release-notes/2.28/ .
Officially, this is mostly a polishing release in preparation for GNOME 3.0
due in about a year.

On the FreeBSD front, though, a lot went into this release.  Major thanks
goes to kwm and avl who did a lot of the porting work for this release.
In particular, kwm brought in Evolution MAPI support for better Microsoft
Exchange integration.  Avl made sure that the new gobject introspection
repository ports were nicely compartmentalized so that large dependencies
aren't brought in wholesale.

But, every GNOME team member (ahze, avl, bland, kwm, mezz, and myself)
contributed to this release.

Other major improvements include an updated HAL with better volume
probing code, ufsid integration, and support for volume names containing
spaces (big thanks to J.R. Oldroyd); a new WebKit; updated AbiWord;
an updated Gimp; and a preview of the new GNOME Shell project (thanks to
Pawel Worach).

The FreeBSD GNOME Team would like to that the following additional
contributors to this release whose patches and testing really helped
make it a success:

Andrius Morkunas
Dominique Goncalves
Eric L. Chen
J.R. Oldroyd
Joseph S. Atkinson
Li
Pawel Worach
Romain Tartière
Thomas Vogt
Yasuda Keisuke
Rui Paulo
Martin Wilke
(and an extra shout out to miwi and pav for pointyhat runs)

We would like to send this release out to Alexander Loginov (avl) in
hopes that he feels better soon.

PR:             136676
                136967
                138872 (obsolete with new epiphany-webkit)
                139160
                134737
                139941
                140097
                140838
                140929
Original commit
Thursday, 1 Oct 2009
03:23 marcus search for other commits by this committer
Update to 0.9.19.
Original commit
Sunday, 20 Sep 2009
13:42 kwm search for other commits by this committer
Add --with-database=gdbm.

If tdb is installed it will prefer tdb over gdbm. So make it use gdbm.

Feature safe:   yes
Original commit
Saturday, 19 Sep 2009
18:24 marcus search for other commits by this committer
Update to 0.9.18.

Feature safe:   yes
Original commit
Saturday, 12 Sep 2009
01:32 marcus search for other commits by this committer
Do not install Linux-only directories.

Reported by:    pointyhat via erwin
Original commit
Friday, 11 Sep 2009
05:55 marcus search for other commits by this committer
Pulseaudio no longer comes with a pkg-message.
Original commit
03:45 marcus search for other commits by this committer
Update to 0.9.17.
Original commit
Sunday, 6 Sep 2009
21:18 flz search for other commits by this committer
Add support to create users and groups from information stored in UIDs/GIDs
files. Users and groups won't be deleted at deinstall time as we're lacking
a refcount to know if any port is using them.

Also convert a few ports while I'm here.

PR:             ports/108514
Submitted by:   mm, self
Original commit
Monday, 17 Aug 2009
02:59 rnoland search for other commits by this committer
The hal detection component rejects everything except pcm0.  This is
not correct on FreeBSD.  This patch allows pulse to identify all valid
pcm devices in the gnome sound preferences.

Approved by:    marcus
Original commit
Monday, 3 Aug 2009
07:35 marcus search for other commits by this committer
Remove two patch hunks which cause issues with starting pulseaudio when
the default configuration file is used.
Original commit
Sunday, 2 Aug 2009
21:29 mezz search for other commits by this committer
Force commit: Update to 0.9.15, it requires newer libtool22/libltdl22.
Original commit
19:36 mezz search for other commits by this committer
-Repocopy devel/libtool15 -> libtool22 and libltdl15 -> libltdl22.
-Update libtool and libltdl to 2.2.6a.
-Remove devel/libtool15 and devel/libltdl15.
-Fix ports build with libtool22/libltdl22.
-Bump ports that depend on libltdl22 due to shared library version change.
-Explain what to do update in the UPDATING.

It has been tested with GNOME2, XFCE4, KDE3, KDE4 and other many wm/desktop
and applications in the runtime.

With help:      marcus and kwm
Pointyhat-exp:  a few times by pav
Tested by:      pgollucci, "Romain Tartière" <romain@blogreen.org>, and
                a few MarcusCom CVS users. Also, I might have missed a few.
Repocopy by:    marcus
Approved by:    portmgr
Original commit
Friday, 10 Jul 2009
06:57 marcus search for other commits by this committer
Fix pulseaudio's interaction with OSS on FreeBSD.  Most notably, use the
fixer file descriptor when executing mixer-rleated ioctls.  It was only
luck that this used to work with the DSP file descriptor, but broke when
vpc was introduced in -CURRENT.

Thanks to ariff for tracking this down.

Submitted by:   ariff
Original commit

Number of commits found: 142 (showing only 100 on this page)

1 | 2  »