notbugAs an Amazon Associate I earn from qualifying purchases.
Want a good read? Try FreeBSD Mastery: Jails (IT Mastery Book 15)
All times are UTC
Ukraine
non port: audio/jack/Makefile
SVNWeb

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

1 | 2  »  

Tue, 27 Jun 2023
[ 19:34 Rene Ladan (rene) search for other commits by this committer ]    commit hash:3d9a815d9c5acbb71f4bb07738bdeab4879feacb  commit hash:3d9a815d9c5acbb71f4bb07738bdeab4879feacb  commit hash:3d9a815d9c5acbb71f4bb07738bdeab4879feacb  3d9a815  (Only the first 10 of 4481 ports in this commit are shown above. View all ports for this commit)
all: remove explicit versions in USES=python for "3.x+"

The logic in USES=python will automatically convert this to 3.8+ by
itself.

Adjust two ports that only had Python 3.7 mentioned but build fine
on Python 3.8 too.

finance/quickfix: mark BROKEN with PYTHON

libtool: compile:  c++ -DHAVE_CONFIG_H -I. -I../.. -I -I. -I.. -I../.. -I../C++
-DLIBICONV_PLUG -DPYTHON_MAJOR_VERSION=3 -Wno-unused-variable
-Wno-maybe-uninitialized -O2 -pipe -DLIBICONV_PLUG -fstack-protector-strong
-fno-strict-aliasing -DLIBICONV_PLUG -Wall -ansi
-Wno-unused-command-line-argument -Wpointer-arith -Wwrite-strings
-Wno-overloaded-virtual -Wno-deprecated-declarations -Wno-deprecated -std=c++0x
-MT _quickfix_la-QuickfixPython.lo -MD -MP -MF
.deps/_quickfix_la-QuickfixPython.Tpo -c QuickfixPython.cpp  -fPIC -DPIC -o
.libs/_quickfix_la-QuickfixPython.o
warning: unknown warning option '-Wno-maybe-uninitialized'; did you mean
'-Wno-uninitialized'? [-Wunknown-warning-option]
QuickfixPython.cpp:175:11: fatal error: 'Python.h' file not found
          ^~~~~~~~~~
1 warning and 1 error generated.

Reviewed by:	portmgr, vishwin, yuri
Differential Revision:	<https://reviews.freebsd.org/D40568>
Tue, 25 Apr 2023
[ 15:17 Christian Weisgerber (naddy) search for other commits by this committer ]    commit hash:feb1fa34f58ea796656b86a81c2a2996b0b03c96  commit hash:feb1fa34f58ea796656b86a81c2a2996b0b03c96  commit hash:feb1fa34f58ea796656b86a81c2a2996b0b03c96  feb1fa3  (Only the first 10 of 1613 ports in this commit are shown above. View all ports for this commit)
audio/opus: bump consumers after update to 1.4
Fri, 10 Feb 2023
[ 10:30 Fernando Apesteguía (fernape) search for other commits by this committer Author: Florian Walpen ]    commit hash:51040855256d176862aa2b8f71c5319cc548036e  commit hash:51040855256d176862aa2b8f71c5319cc548036e  commit hash:51040855256d176862aa2b8f71c5319cc548036e  5104085 
audio/jack: Update to 1.9.22 release.

ChangeLog: https://github.com/jackaudio/jack2/releases/tag/v1.9.22

 * The waf autooption --example-tools has been removed.
 * The example clients and tools are no longer part of the jack2 project.
 * Drop dependencies that were only used for example clients and tools
   (readline, sndfile and zita libs)
 * Fix build with python3.11+
 * Fix compatibility with macOS 12+
 * Fix ringbuffer thread safety on ARM

PR:		269413
Reported by:	dev@submerge.ch (maintainer)
Wed, 7 Sep 2022
[ 21:10 Stefan Eßer (se) search for other commits by this committer ]    commit hash:b7f05445c00f2625aa19b4154ebcbce5ed2daa52  commit hash:b7f05445c00f2625aa19b4154ebcbce5ed2daa52  commit hash:b7f05445c00f2625aa19b4154ebcbce5ed2daa52  b7f0544  (Only the first 10 of 27931 ports in this commit are shown above. View all ports for this commit)
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.
(Only the first 15 lines of the commit message are shown above View all of this commit message)
Sun, 17 Apr 2022
[ 20:04 Yuri Victorovich (yuri) search for other commits by this committer Author: Florian Walpen ]    commit hash:7ed9659babf96ffcec63952acae0691315e31020  commit hash:7ed9659babf96ffcec63952acae0691315e31020  commit hash:7ed9659babf96ffcec63952acae0691315e31020  7ed9659 
audio/jack: Update 1.9.20 -> 1.9.21

PR:		263344
Thu, 10 Feb 2022
[ 00:06 Piotr Kubaj (pkubaj) search for other commits by this committer ]    commit hash:ba0ed97e072e550efdf29b3219dfd57d38457d59  commit hash:ba0ed97e072e550efdf29b3219dfd57d38457d59  commit hash:ba0ed97e072e550efdf29b3219dfd57d38457d59  ba0ed97 
audio/jack: switch back to clang on powerpc*

Builds fine now.
Wed, 9 Feb 2022
[ 16:19 Mikael Urankar (mikael) search for other commits by this committer ]    commit hash:22c0c4f2a6e599c4530dc47025f9f7153262f381  commit hash:22c0c4f2a6e599c4530dc47025f9f7153262f381  commit hash:22c0c4f2a6e599c4530dc47025f9f7153262f381  22c0c4f 
audio/jack: Fix alignas() on non-packed architectures

Unbreak the build with Clang on architectures where JACK uses non-packed
data structures, like arm64 or powerpc. The alignment errors are exposed
there because:
 * The non-packed data structures require 8 byte alignment.
 * alignas() is not allowed to weaken alignment requirements to 4 bytes.
 * Clang enforces this according to standard, GCC ignores it.

Use an additional alignas() specifier to let the compiler choose between
minimum alignment (packed) and "natural" alignment (non-packed). This is
both standard c++11 and compatible with older GCC, which does not
propagate alignment requirements of packed substructures properly.

PR:		261508
Submitted by:	Florian Walpen <dev@submerge.ch>
Wed, 26 Jan 2022
[ 00:05 Piotr Kubaj (pkubaj) search for other commits by this committer ]    commit hash:0e3bf07e2ced19b9f43100288f5733eed7ff08de  commit hash:0e3bf07e2ced19b9f43100288f5733eed7ff08de  commit hash:0e3bf07e2ced19b9f43100288f5733eed7ff08de  0e3bf07 
audio/jack: fix build on powerpc64le

Same issue as on powerpc and powerpc64.
[ 00:05 Piotr Kubaj (pkubaj) search for other commits by this committer ]    commit hash:159b44b2fb70889722fbf810f22aea435848684d  commit hash:159b44b2fb70889722fbf810f22aea435848684d  commit hash:159b44b2fb70889722fbf810f22aea435848684d  159b44b 
audio/jack: fix build on powerpc and powerpc64

Use GCC:
09:13:58 runner ['c++', '-O2', '-pipe', '-fPIC', '-fstack-protector-strong',
'-fno-strict-aliasing', '-Wall', '-Wno-invalid-offsetof', '-std=gnu++11',
'-fPIC', '-Ifreebsd', '-I../freebsd', '-Iposix', '-I../posix', '-Icommon',
'-I../common', '-Icommon/jack', '-I../common/jack', '-I.', '-I..',
'-I../compat/alloca', '-I/usr/local/include/opus', '-I/usr/local/include',
'-I/usr/local/include/dbus-1.0', '-I/usr/local/lib/dbus-1.0/include',
'-DEXECINFO=1', '-DHAVE_LIBSYSINFO=1', '-DHAVE_DOXYGEN=0', '-DHAVE_ALSA=0',
'-DHAVE_FIREWIRE=0', '-DHAVE_IIO=0', '-DHAVE_PORTAUDIO=0', '-DHAVE_WINMME=0',
'-DHAVE_CELT=0', '-DHAVE_EXAMPLE_TOOLS=0', '-DHAVE_OPUS_OPUS_CUSTOM_H=1',
'-DHAVE_OPUS_PKG=1', '-DHAVE_OPUS=1', '-DHAVE_SAMPLERATE=1', '-DHAVE_SNDFILE=0',
'-DHAVE_READLINE=0', '-DHAVE_SYSTEMD=0', '-DHAVE_DB_H=1', '-DHAVE_DB=0',
'-DHAVE_ZALSA=0', '-DHAVE_PPOLL=1', '-DHAVE_EXECINFO_H=1',
'-DJACK_VERSION="[]"', '-DHAVE_DBUS_1=1', '-DHAVE_EXPAT=1',
'-DUSE_LIBDBUS_AUTOLAUNCH=1', '-DCLIENT_NUM=256', '-DPORT_NUM_FOR_CLIENT=2048',
'-DADDON_DIR="/usr/local/lib/jack"', '-DJACK_LOCATION="/usr/local/bin"',
'-DUSE_POSIX_SHM=1', '-DJACKMP=1', '-DJACK_DBUS=1', '-DHAVE_CONFIG_H',
'-DSERVER_SIDE', '../common/JackDebugClient.cpp', '-c',
'-o/wrkdirs/usr/ports/audio/jack/work/jack2-1.9.20/build/common/JackDebugClient.cpp.2.o',
'-I/usr/local/include']
In file included from ../common/JackDebugClient.cpp:21:
../common/JackEngineControl.h:67:5: error: requested alignment is less than
minimum alignment of 8 for type 'Jack::JackTransportEngine'
    alignas(UInt32) JackTransportEngine fTransport;
    ^
../common/JackEngineControl.h:89:5: error: requested alignment is less than
minimum alignment of 8 for type 'Jack::JackFrameTimer'
    alignas(UInt32) JackFrameTimer fFrameTimer;
    ^
2 errors generated.
Wed, 19 Jan 2022
[ 10:44 Hans Petter Selasky (hselasky) search for other commits by this committer ]    commit hash:93344cda77603560b6ba421778d92be03e70800b  commit hash:93344cda77603560b6ba421778d92be03e70800b  commit hash:93344cda77603560b6ba421778d92be03e70800b  93344cd  (Only the first 10 of 12 ports in this commit are shown above. View all ports for this commit)
audio/jack: Update to 1.9.20 release.

The FreeBSD specific changes have been upstreamed, we can fetch the original
sources again. Development of the client examples and tools has been split
from the JACK server, move them to the new port jack-example-tools.

This also includes a fix for missing library symbols, see bug #257696.

Take maintainership of audio/jack and audio/jack-example-tools .

PR: 257696
PR: 261256

Submitted by:   Florian Walpen <dev@submerge.ch>
Approved by:	pi (implicit)
Sat, 9 Oct 2021
[ 07:29 Thomas Zander (riggs) search for other commits by this committer ]    commit hash:7c4da31084684f28b9e171ccea8da8d835f7cbca  commit hash:7c4da31084684f28b9e171ccea8da8d835f7cbca  commit hash:7c4da31084684f28b9e171ccea8da8d835f7cbca  7c4da31 
audio/jack: Remove celt support (deprecated upstream).

PR:		258658
Reported by:	diizzy
Mon, 2 Aug 2021
[ 16:03 Yuri Victorovich (yuri) search for other commits by this committer ]    commit hash:5708ae4005cedc7b84522f84b964092319d853cd  commit hash:5708ae4005cedc7b84522f84b964092319d853cd  commit hash:5708ae4005cedc7b84522f84b964092319d853cd  5708ae4  (Only the first 10 of 166 ports in this commit are shown above. View all ports for this commit)
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)
Tue, 6 Apr 2021
[ 14:31 Mathieu Arnold (mat) search for other commits by this committer ]    commit hash:305f148f482daf30dcf728039d03d019f88344eb  commit hash:305f148f482daf30dcf728039d03d019f88344eb  commit hash:305f148f482daf30dcf728039d03d019f88344eb  305f148  (Only the first 10 of 29333 ports in this commit are shown above. View all ports for this commit)
Remove # $FreeBSD$ from Makefiles.
Fri, 8 Jan 2021
[ 07:47 fluffy search for other commits by this committer ] Original commit   Revision:560752 (Only the first 10 of 87 ports in this commit are shown above. View all ports for this commit)
devel/doxygen: Update to 1.9.0

- regen patches by 'make makepatch'
- adjust consumers which affected by new doxygen styles
- take maintainersip

Changelog: https://www.doxygen.nl/manual/changelog.html#log_1_9_0

PR:		242347
Submitted by:	fluffy
Reported by:	Naram Qashat (ex-maintainer)
Exp-run by:	antoine
Sun, 12 Jul 2020
[ 09:30 tobik search for other commits by this committer ] Original commit   Revision:542069 (Only the first 10 of 52 ports in this commit are shown above. View all ports for this commit)
audio/sndio: Update to 1.7.0
Fri, 26 Jul 2019
[ 20:46 gerald search for other commits by this committer ] Original commit   Revision:507372 (Only the first 10 of 3853 ports in this commit are shown above. View all ports for this commit)
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
Tue, 4 Jun 2019
[ 06:17 bapt search for other commits by this committer ] Original commit   Revision:503442
Only print the message during the first installation,
not at each upgrades
Tue, 9 Apr 2019
[ 14:04 sunpoet search for other commits by this committer ] Original commit   Revision:498476 (Only the first 10 of 289 ports in this commit are shown above. View all ports for this commit)
Update devel/readline to 8.0

- Bump PORTREVISION of dependent ports for shlib change

Changes:	https://tiswww.case.edu/php/chet/readline/CHANGES
PR:		236156
Exp-run by:	antoine
Thu, 3 Jan 2019
[ 20:24 riggs search for other commits by this committer ] Original commit   Revision:489219
Fix SIGBUS with 24 bit content over OSS output

PR:		234574
Submitted by:	dev@submerge.ch
MFH:		2019Q1
Wed, 12 Dec 2018
[ 01:35 gerald search for other commits by this committer ] Original commit   Revision:487272 (Only the first 10 of 3168 ports in this commit are shown above. View all ports for this commit)
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
Sat, 13 Oct 2018
[ 15:53 riggs search for other commits by this committer ] Original commit   Revision:481992
Fix build on powerpc64

PR:		231834
Submitted by:	pkubaj@anongoth.pl
MFH:		2018Q4 (build fix blanket)
Sun, 1 Jul 2018
[ 09:17 linimon search for other commits by this committer ] Original commit   Revision:473660 (Only the first 10 of 17 ports in this commit are shown above. View all ports for this commit)
Mark these ports broken on mips64 and/or mips.

While here, pet portlint.

Approved by:	portmgr (tier-2 blanket)
Sun, 10 Jun 2018
[ 17:11 riggs search for other commits by this committer ] Original commit   Revision:472147
Fix startup script for FreeBSD 10: -o option is unknown

PR:		228266
Submitted by:	takefu@airport.fm
MFH:		2018Q2
Sun, 3 Jun 2018
[ 11:08 linimon search for other commits by this committer ] Original commit   Revision:471488
Mark as broken on powerpc64.

Approved by:	portmgr (tier-2 blanket)
Fri, 6 Oct 2017
[ 21:04 jbeich search for other commits by this committer ] Original commit   Revision:451409
audio/jack: libuuid is completely unused after r440260

libuuid was used for a some time between 0.121.3 and 0.124 releases
but didn't propagate into any except for stray <uuid/uuid.h> include.

PR:		221314
Submitted by:	tobik
Reviewed by:	hselasky
Sat, 12 Aug 2017
[ 08:26 riggs search for other commits by this committer ] Original commit   Revision:447818
Enable COOKEDMODE for more versatile soundcard support; use GitHub

Detailed log:
* Add COOKEDMODE option that turns on SNDCTL_DSP_COOKEDMODE.
  Without the cooked mode Jack's OSS driver currently fails for some
  soundcards (it chooses wrong sample rate). It's better to have
  COOKEDMODE=on by default since it often appears broken otherwise.
  Professionals probably want COOKEDMODE=off, after they make sure their
  soundcard works with jack.
* Switch to github for fetching the sources.
* Include the merged upstream pull request #60 to enable the realtime
  mode (-R).
* Add USES=autoreconf (github source doesn't include a configure script)
* Install more manpages.

PR:		220785
Submitted by:	yuri@rawbw.com
MFH:		2017Q3
Tue, 27 Jun 2017
[ 13:46 sunpoet search for other commits by this committer ] Original commit   Revision:444463 (Only the first 10 of 252 ports in this commit are shown above. View all ports for this commit)
Update devel/readline to 7.0 patch 3

- Bump PORTREVISION for shlib change

Changes:	https://cnswww.cns.cwru.edu/php/chet/readline/CHANGES
		https://lists.gnu.org/archive/html/bug-bash/2016-09/msg00107.html
		https://lists.gnu.org/archive/html/bug-readline/2017-01/msg00002.html
Differential Revision:	https://reviews.freebsd.org/D11172
PR:		219947
Exp-run by:	antoine
Sat, 6 May 2017
[ 12:58 riggs search for other commits by this committer ] Original commit   Revision:440260 (Only the first 10 of 11 ports in this commit are shown above. View all ports for this commit)
Update to upstream version 0.125.0, add SNDIO option

PR:		218338
Submitted by:	tobik
Sat, 21 Jan 2017
[ 15:51 riggs search for other commits by this committer ] Original commit   Revision:432054
Added rc.d script to start jackd

PR:		215889
Submitted by:	yuri@rawbw.com
Fri, 21 Oct 2016
[ 12:51 mat search for other commits by this committer ] Original commit   Revision:424411 (Only the first 10 of 718 ports in this commit are shown above. View all ports for this commit)
${RM} already has -f.

PR:		213570
Submitted by:	mat
Exp-run by:	antoine
Sponsored by:	Absolight
Mon, 8 Aug 2016
[ 13:46 mat search for other commits by this committer ] Original commit   Revision:419843 (Only the first 10 of 80 ports in this commit are shown above. View all ports for this commit)
USE_BDB cleanup.

- USE_BDB=4x+ -> USES=bdb.
- USE_BDB=yes -> USES=bdb.
- USE_BDB=xx  -> USES=bdb:xx.

Other modernisations when I see them.

PR:		209183
Sponsored by:	Absolight
Fri, 1 Apr 2016
[ 13:29 mat search for other commits by this committer ] Original commit   Revision:412344 (Only the first 10 of 1009 ports in this commit are shown above. View all ports for this commit)
Remove ${PORTSDIR}/ from dependencies, Mk and categories a, b, and c.

With hat:	portmgr
Sponsored by:	Absolight
Tue, 9 Feb 2016
[ 09:59 marino search for other commits by this committer ] Original commit   Revision:408545
audio/jack: properly specify readline dep (detected by Synth)

No portrevision bump necessary as this change does not alter the
package contents.  It just fixes the deps specification.
Wed, 19 Aug 2015
[ 13:30 mat search for other commits by this committer ] Original commit   Revision:394778 (Only the first 10 of 172 ports in this commit are shown above. View all ports for this commit)
Convert ports to use the options helpers in categories [abc]*, and minor fixes.

Sponsored by:	Absolight
Differential Revision:	https://reviews.freebsd.org/D3412?
Mon, 17 Aug 2015
[ 14:20 mat search for other commits by this committer ] Original commit   Revision:394508 (Only the first 10 of 271 ports in this commit are shown above. View all ports for this commit)
Remove UNIQUENAME and LATEST_LINK.

UNIQUENAME was never unique, it was only used by USE_LDCONFIG and now,
we won't have conflicts there.

Use PKGBASE instead of LATEST_LINK in PKGLATESTFILE, the *only* consumer
is pkg-devel, and it works just fine without LATEST_LINK as pkg-devel
has the correct PKGNAME anyway.

Now that UNIQUENAME is gone, OPTIONSFILE is too. (it's been called
OPTIONS_FILE now.)

Reviewed by:	antoine, bapt
Exp-run by:	antoine
Sponsored by:	Absolight
Differential Revision:	https://reviews.freebsd.org/D3336
Mon, 3 Aug 2015
[ 06:53 kwm search for other commits by this committer ] Original commit   Revision:393465
Drop :keepla from the libtool USES.

PR:		202048
Submitted by:	Ting-Wei Lan <lantw44@gmail.com>
Sun, 14 Jun 2015
[ 15:05 riggs search for other commits by this committer ] Original commit   Revision:389640
Fix support for 24-bit and 32-bit resolution

While on it:
- Pet portlint

PR:		199558
Submitted by:	hselasky@FreeBSD.org
Sat, 30 May 2015
[ 14:13 bapt search for other commits by this committer ] Original commit   Revision:387967
Remove dependency on portaudio
This drops a circular dependency between portaudio and jack. Given jack supports
OSS there is no real point in using portaudio as a backend
Sun, 25 Jan 2015
[ 00:46 pawel search for other commits by this committer ] Original commit   Revision:377845 (Only the first 10 of 15 ports in this commit are shown above. View all ports for this commit)
Fix detection of libportaudio libraries

PR:		196427
Submitted by:	myself
Approved by:	hselasky, stephen, marcus, maintainer timeout from others
Tue, 16 Dec 2014
[ 08:58 kwm search for other commits by this committer ] Original commit   Revision:374789
Allow jack to be upgraded when already installed. [1]
Move doxygen depend and docs out of DOCS option. [2]

PR:		195533 [1], 195573 [2]
Submitted by:	Mikhail T. <mi@ALDAN.algebra.com> [1], amdmi3@ [2]
Mon, 8 Dec 2014
[ 16:48 tijl search for other commits by this committer ] Original commit   Revision:374303 (Only the first 10 of 920 ports in this commit are shown above. View all ports for this commit)
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.
(Only the first 15 lines of the commit message are shown above View all of this commit message)
Fri, 28 Nov 2014
[ 19:35 nox search for other commits by this committer ] Original commit   Revision:373578
- Switch USE_BDB from 48 to 48+ .
- Bump PORTREVISION.

PR:		195001
Submitted by:	turutani@scphys.kyoto-u.ac.jp
Mon, 27 Oct 2014
[ 19:31 nox search for other commits by this committer ] Original commit   Revision:371602
- Update to 0.124.1 .
- Add patch to fix handling of signals during read/write operations.

PR:		194545
Submitted by:	hselasky
Sat, 9 Aug 2014
[ 19:39 antoine search for other commits by this committer ] Original commit   Revision:364468 (Only the first 10 of 49 ports in this commit are shown above. View all ports for this commit)
Update devel/doxygen to 1.8.7
Update dependent ports to build with it

Most of work by:	pi@
Exp-run:	self
PR:		ports/190943
Wed, 11 Jun 2014
[ 14:50 tijl search for other commits by this committer ] Original commit   Revision:357486 (Only the first 10 of 297 ports in this commit are shown above. View all ports for this commit)
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
(Only the first 15 lines of the commit message are shown above View all of this commit message)
[ 09:13 amdmi3 search for other commits by this committer ] Original commit   Revision:357438
- Add missing USES=libtool

Approved by:	portmgr blanket
Thu, 31 Oct 2013
[ 15:51 wg search for other commits by this committer ] Original commit   Revision:332259
audio/jack: fix readline depend and allow staging

- Fix readline depend [1] (based on)
- Allow staging
- Use options helpers

PR:		ports/170517 [1]
Submitted by:	A.J. Kehoe IV <g5ypsazo nanoman.ca> [1]
Fri, 20 Sep 2013
[ 14:36 bapt search for other commits by this committer ] Original commit   Revision:327706 (Only the first 10 of 879 ports in this commit are shown above. View all ports for this commit)
Add NO_STAGE all over the place in preparation for the staging support (cat:
audio)
Fri, 30 Aug 2013
[ 02:04 bapt search for other commits by this committer ] Original commit   Revision:325655
Add an explicit dependency on pkgconf
Thu, 28 Mar 2013
[ 12:19 danfe search for other commits by this committer ] Original commit   Revision:315462
- Trim Makefile header per new guidelines
- Tighten COMMENT text
- Drop shlib ABI versions from LIB_DEPENDS
- Rename DOCS option to DOXYGEN to reflect its evil nature, and disable
  it by default (of course)
- Clean up Makefile while here, reformat port description
Wed, 30 May 2012
[ 11:27 bapt search for other commits by this committer ] Original commit 
Convert to new options framework
Thu, 24 May 2012
[ 19:35 nox search for other commits by this committer ] Original commit 
- Fix alsa driver.
- Bump PORTREVISION.

PR:             ports/167971
Submitted by:   amdmi3
Fri, 9 Dec 2011
[ 10:50 sylvio search for other commits by this committer ] Original commit 
- Fix pkg-plist incorrect when options are not default
- BUMP PORTREVISION

PR:             ports/163054
Submitted by:   "Edward.Sanford.Sutton, III" <mirror176@cox.net>
Feature safe:   yes
Sat, 1 Oct 2011
[ 18:36 bapt search for other commits by this committer ] Original commit 
upgrade to 0.121.3
Fri, 23 Sep 2011
[ 22:26 amdmi3 search for other commits by this committer ] Original commit  (Only the first 10 of 2369 ports in this commit are shown above. View all ports for this commit)
- 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
Sun, 18 Sep 2011
[ 21:13 nox search for other commits by this committer ] Original commit 
- Update to 0.121.2 .
- Cleanup flags handling and make docs building an OPTION.  [1]
- Update WWW.

Submitted by:   "b. f." <bf1783@googlemail.com> on -multimedia@ [1]
Approved by:    multimedia (kwm, via irc)
Thu, 11 Aug 2011
[ 19:20 kwm search for other commits by this committer ] Original commit  (Only the first 10 of 543 ports in this commit are shown above. View all ports for this commit)
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>
Tue, 12 Apr 2011
[ 10:36 bapt search for other commits by this committer ] Original commit 
- chase celt library bump
Thu, 16 Dec 2010
[ 17:34 makc search for other commits by this committer ] Original commit 
Add optional support for ALSA, off by default
Remove md5 sum while here

PR:             ports/153187
Approved by:    kwm (with multimedia hat)
Mon, 6 Dec 2010
[ 03:49 nork search for other commits by this committer ] Original commit 
Fix pkg-plist, and bump PORTREVISION.
Sun, 5 Dec 2010
[ 15:19 kwm search for other commits by this committer ] Original commit 
Correct alsa-lib depend. s/libasound.2/asound.2/
[ 14:56 nork search for other commits by this committer ] Original commit 
Add implict dependency on alsa-lib, and bump PORTREVISION.
Fri, 16 Apr 2010
[ 13:18 wxs search for other commits by this committer ] Original commit 
- Update to 0.118.0

PR:             ports/145487
Submitted by:   Joseph S. Atkinson <jsa@wickedmachine.net>
Approved by:    multimedia@ (maintainer, via sylvio@)
Sun, 28 Mar 2010
[ 06:47 dinoex search for other commits by this committer ] Original commit  (Only the first 10 of 4470 ports in this commit are shown above. View all ports for this commit)
- update to 1.4.1
Reviewed by:    exp8 run on pointyhat
Supported by:   miwi
Fri, 13 Nov 2009
[ 09:39 trasz search for other commits by this committer ] Original commit 
Fix build after audio/celt upgrade.  PORTREVISION bumped, as the upgrade
also breaks the ABI.

Approved by:    portmgr (pav)
Tue, 12 May 2009
[ 11:28 itetcu search for other commits by this committer ] Original commit  (Only the first 10 of 20 ports in this commit are shown above. View all ports for this commit)
Fix LIB_DEPENDS on devel/readline: its sh lib version was bumped recently from
5 to 6.

Forgotten by:   araujo@
Reported by:    QAT
Mon, 11 May 2009
[ 19:08 trasz search for other commits by this committer ] Original commit 
Fix plist.  The source tarball is strange - it comes with HTML documentation,
but it refuses to install it if there is no doxygen installed.  If there is
Doxygen installed, it regenerates the docs.

While here, remove that weird DOCS handling and make it respect NOPORTDOCS.

Tested by:      itetcu@
[ 15:29 trasz search for other commits by this committer ] Original commit 
Unbreak.  Files with names without '-source' contain reference, files with
'-source' in the name contain prettyprinted C includes.
[ 11:12 itetcu search for other commits by this committer ] Original commit 
Mark broken, the port installs reference/html/*source.html both as
_source.html and -source.html; I doubt they both should be installed so I'll
let the maintainer fix this.

Submitted by:   QAT
Mon, 30 Mar 2009
[ 18:21 trasz search for other commits by this committer ] Original commit 
Update to 0.116.2.

Approved by:    maintainer timeout
Mon, 5 Jan 2009
[ 17:27 pav search for other commits by this committer ] Original commit  (Only the first 10 of 56 ports in this commit are shown above. View all ports for this commit)
- Remove conditional checks relevant only on FreeBSD 5.x and older
Fri, 31 Oct 2008
[ 16:36 gahr search for other commits by this committer ] Original commit 
- Fix PLIST

Notified by:    erwin, makc
Tue, 7 Oct 2008
[ 23:46 gahr search for other commits by this committer ] Original commit 
- Update to 0.109.2
Wed, 26 Mar 2008
[ 15:15 naddy search for other commits by this committer ] Original commit 
remove unused audio/flac dependency
Thu, 20 Mar 2008
[ 09:19 pav search for other commits by this committer ] Original commit  (Only the first 10 of 42 ports in this commit are shown above. View all ports for this commit)
- Remove USE_GETOPT_LONG which is a no-op since March 2007
Mon, 23 Jul 2007
[ 09:36 rafan search for other commits by this committer ] Original commit  (Only the first 10 of 437 ports in this commit are shown above. View all ports for this commit)
- Set --mandir and --infodir in CONFIGURE_ARGS if the configure script
  supports them.  This is determined by running ``configure --help'' in
  do-configure target and set the shell variable _LATE_CONFIGURE_ARGS
  which is then passed to CONFIGURE_ARGS.
- Remove --mandir and --infodir in ports' Makefile where applicable
  Few ports use REINPLACE_CMD to achieve the same effect, remove them too.
- Correct some manual pages location from PREFIX/man to MANPREFIX/man
- Define INFO_PATH where necessary
- Document that .info files are installed in a subdirectory relative to
  PREFIX/INFO_PATH and slightly change add-plist-info to use INFO_PATH and
  subdirectory detection.

PR:             ports/111470
Approved by:    portmgr
Discussed with: stas (Mk/*), gerald (info related stuffs)
Tested by:      pointyhat exp run
Mon, 16 Apr 2007
[ 19:29 ahze search for other commits by this committer ] Original commit 
- fix DOCSDIR [1]
- Disable mlock workaround  [2]

PR:             ports/111157 [1]
                ports/111235 [2]
Submitted by:   trasz <trasz@pin.if.uz.zgora.pl> [1] [2]
Reported by:    mezz
[ 17:39 ahze search for other commits by this committer ] Original commit 
Update to 0.103.0
[ 03:34 edwin search for other commits by this committer ] Original commit 
[patch] audio/alac - cleanup non-supported FreeBSD versions
[patch] audio/grip - cleanup non-supported FreeBSD versions
[patch] audio/jack - cleanup non-supported FreeBSD versions
[patch] audio/libcddb - cleanup non-supported FreeBSD versions

PR:             ports/111646, ports/111660, ports/111662, ports/111668
Submitted by:   Edwin Groothuis <edwin@mavetju.org>
Appproved by:   Michael Johnson <ahze@>
Tue, 23 Jan 2007
[ 20:23 mezz search for other commits by this committer ] Original commit 
Fix the plist with WITH_DOCS. Bump the PORTREVISION.

Submitted by:   trasz <trasz@pin.if.uz.zgora.pl>
[ 19:58 mezz search for other commits by this committer ] Original commit 
Update to 0.102.28.20061216, a SVN version. A new port, ghostess, needs this
SVN version.

PR:             ports/108114
Submitted by:   trasz <trasz@pin.if.uz.zgora.pl>
Thu, 21 Dec 2006
[ 13:23 lofi search for other commits by this committer ] Original commit 
o/` One more time, we're gonna fix four-ehehex, oh yeah, all right o/`

PR:             ports/106982
Submitted by:   KATO Tsuguru <tkato432@yahoo.com>
Tue, 19 Dec 2006
[ 21:56 lofi search for other commits by this committer ] Original commit 
Revert last commit
[ 21:19 lofi search for other commits by this committer ] Original commit  (Only the first 10 of 431 ports in this commit are shown above. View all ports for this commit)
Update to KDE 3.5.5 / KOffice 1.6.1

Approved by:    portmgr
Thu, 7 Dec 2006
[ 19:42 mezz search for other commits by this committer ] Original commit 
- Fix the jackd getting into infinite loop on client disconnect. [1] [2]
- Fix a Linuxish, md5sum -> md5 -q (thanks flz) that will put a correct info
  in one of header (jack_md5.h).
- Remove 'Author' from pkg-descr.
- Bump the PORTREVISION.

PR:             ports/99323 [1] and ports/106428 [2]
Reported by:    markzero <markzero@corolla.ath.cx> [1]
Submitted by:   trasz <trasz@pin.if.uz.zgora.pl> [2]
Wed, 6 Dec 2006
[ 19:10 miwi search for other commits by this committer ] Original commit 
- Update to 0.102.20

PR:             ports/106410
Submitted by:   trasz
Approved by:    Multimedia Team (ahze on irc)
Fri, 7 Jul 2006
[ 14:52 ahze search for other commits by this committer ] Original commit 
- Remove ONLY_FOR_ARCHS since it looks like jack is portable now
[ 14:25 ahze search for other commits by this committer ] Original commit 
- Now builds on sparc64
Fri, 9 Jun 2006
[ 18:59 ahze search for other commits by this committer ] Original commit 
- Give a few homeless ports a home with multimedia@
Wed, 7 Jun 2006
[ 22:48 itetcu search for other commits by this committer ] Original commit 
- fix plist
- bump PORTREVISION

Approved by: lawrance (mentor, implicit)
[ 01:41 edwin search for other commits by this committer ] Original commit 
update to version 0.101.1
Wed, 15 Mar 2006
[ 13:32 mnag search for other commits by this committer ] Original commit 
- Fix package creation when not set DOCS OPTIONS
- Reorganize Makefile

PR:             94308
Notified by:    David Israelsson <david@israelsson.org>
Thu, 23 Feb 2006
[ 10:40 ade search for other commits by this committer ] Original commit  (Only the first 10 of 2514 ports in this commit are shown above. View all ports for this commit)
Conversion to a single libtool environment.

Approved by:    portmgr (kris)
Wed, 21 Dec 2005
[ 18:00 lofi search for other commits by this committer ] Original commit 
The latest doxygen update seems to feature a funky bug that makes it create
some dir__2Ffull_2Fpath_2Fto_2F${WRKSRC}_2F.html files.

Since there is no sensible way to put these into pkg-plist and they seem
to be just copies of the dir_<number>.html files anyway, delete them pre-
install.
Tue, 15 Nov 2005
[ 06:52 ade search for other commits by this committer ] Original commit  (Only the first 10 of 1438 ports in this commit are shown above. View all ports for this commit)
Mass-conversion to the USE_AUTOTOOLS New World Order.  The code present
in bsd.autotools.mk essentially makes this a no-op given that all the
old variables set a USE_AUTOTOOLS_COMPAT variable, which is parsed in
exactly the same way as USE_AUTOTOOLS itself.

Moreover, USE_AUTOTOOLS has already been extensively tested by the GNOME
team -- all GNOME 2.12.x ports use it.

Preliminary documentation can be found at:
        http://people.FreeBSD.org/~ade/autotools.txt

which is in the process of being SGMLized before introduction into the
Porters Handbook.

Light blue touch-paper.  Run.
Wed, 26 Oct 2005
[ 12:02 mnag search for other commits by this committer ] Original commit 
Update to 0.100.0

PR:             87239
Submitted by:   James mcNaughton <bitbucket63-it@yahoo.com>
Tue, 12 Apr 2005
[ 18:05 lofi search for other commits by this committer ] Original commit 
s/.elseif/.elif
Wed, 16 Mar 2005
[ 08:58 lofi search for other commits by this committer ] Original commit 
Worm our way around the big ugly doxygen-TeX dependency for the html-docs
build. OPTION default to off, override in the PACKAGE_BUILDING case and if
doxygen is already installed.
Mon, 21 Feb 2005
[ 20:25 lofi search for other commits by this committer ] Original commit 
Fix plist, set LATEST_LINK to jack.
Sun, 20 Feb 2005
[ 20:25 kris search for other commits by this committer ] Original commit 
BROKEN: Incomplete pkg-plist

# This port should probably be repo-copied to audio/jackit, since that
# is what the package calls itself.

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

1 | 2  »