1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-19 19:59:43 +00:00
Commit Graph

99 Commits

Author SHA1 Message Date
Mathieu Arnold
305f148f48
Remove # $FreeBSD$ from Makefiles. 2021-04-06 16:31:07 +02:00
Rodrigo Osorio
ad78a5b4ca audio/lmms: upgrade to 1.2.2
Port fixes:
 Fix bash completion file install

Upstream changelog: https://github.com/LMMS/lmms/releases/tag/v1.2.2
2021-01-14 14:48:30 +00:00
Thomas Zander
8337fc6d5f Chase libsndfile 1.0.30 update.
Details:
- Missing symbol sf_version_string, not auto-resolved by pkg + rebuild.
- Bump PORTREVISION for consumers.
2020-10-01 08:56:20 +00:00
Tobias Kortkamp
a167bf51dd audio/sndio: Update to 1.7.0 2020-07-12 09:30:28 +00:00
Tobias C. Berner
28bc929905 audio/lmms: prepare for Qt5-5.15 2020-05-21 10:51:43 +00:00
Tobias Kortkamp
863110e9f9 Add USES={gl,gnome,mate,sdl,xorg} missed in the last round 2019-11-14 12:39:42 +00:00
Rodrigo Osorio
d79c53a8fb audio/lmms: Update to 1.2.1
Release note: https://github.com/LMMS/lmms/releases/tag/v1.2.1

PR:		241390
Submitted by:	tobik
2019-10-23 12:42:47 +00:00
Thomas Zander
5f1b7d2fe3 Chase update to audio/fluidsynth; bump PORTREVISION of dependent ports
PR:		240890
2019-09-29 10:04:31 +00:00
Gerald Pfeifer
ea8c8ec7da 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
2019-07-26 20:46:53 +00:00
Rodrigo Osorio
8cdbae0ef2 Update audio/lmms to 1.2.0
Release note: https://github.com/LMMS/lmms/releases/tag/v1.2.0

PR:		238441
Submitted by:	tobik
2019-06-10 08:42:52 +00:00
Thomas Zander
6288626867 Chase update of fluidsynth to 2.0.3
PR:		233448
2019-03-02 16:55:53 +00:00
Rodrigo Osorio
d37d919e42 Update audio/lmms from 1.2.0-rc7 to 1.2.0-rc8
Changelog: https://github.com/LMMS/lmms/releases/tag/v1.2.0-rc8

PR:		235854
Submitted by:	tobik
2019-02-28 08:23:29 +00:00
Tijl Coosemans
1bf487d3e7 Fix Qt5 symbol version scripts to put the catch-all clause first. When
a symbol matches multiple clauses the last one takes precedence.  If the
catch-all is last it captures everything.  In the case of Qt5 libraries
this caused all symbols to have a Qt_5 label while some should have
Qt_5_PRIVATE_API.  This only affects lld because GNU ld always gives the
catch-all lowest priority.

Older versions of Qt5Webengine exported some memory allocation symbols from
the bundled Chromium.  Version 5.9 stopped exporting these [1] but the
symbols were kept as weak wrappers for the standard allocation functions to
maintain binary compatibility. [2][3]  The problem is that the call to the
standard function in these weak wrappers is only resolved to the standard
function if there's a call to this standard function in other parts of
Qt5Webengine, because only then is there a non-weak symbol that takes
precedence over the weak one.  If there's no such non-weak symbol the call
in the weak wrapper resolves to the weak wrapper itself creating an infinite
call loop that overflows the stack and causes a crash.  Some of the
allocation functions are variants of C++ new and delete and it probably
depends on the compiler whether these variants are used in other parts of
Qt5Webengine.

Remove the weak wrappers (make them Linux specific).  This isn't binary
compatible but we are already breaking that with the changes to the symbol
versions.

[1] 5c2cbfccf9
[2] 2ed5054e3a
[3] 009f5ebb4b

Bump all ports that depend on Qt5.

PR:		234070
Exp-run by:	antoine
Approved by:	kde (adridg)
2019-01-16 11:13:44 +00:00
Tobias C. Berner
707c6bf295 Change cmake default behaviour to outsource.
Ports that build out of source now simply can use "USES=cmake"
instead of "USES=cmake:outsource". Ports that fail to build
out of source now need to specify "USES=cmake:insource".

I tried to only set insource where explictely needed.

PR:		232038
Exp-run by:	antoine
2018-12-25 20:25:39 +00:00
Tobias Kortkamp
bdeecf3c06 audio/lmms: Undeprecate and switch to Qt 5
PR:		232777
Approved by:	rodrigo (maintainer timeout, 6 weeks)
2018-12-13 14:18:00 +00:00
Tobias Kortkamp
3be9931551 audio/lmms: Fix build with FluidSynth 2.x
plugins/sf2_player/sf2_player.cpp:101:20: error: use of undeclared identifier 'FLUID_REVERB_DEFAULT_ROOMSIZE'
        m_reverbRoomSize( FLUID_REVERB_DEFAULT_ROOMSIZE, 0, 1.0, 0.01f, this, tr( "Reverb Roomsize" ) ),
                          ^
plugins/sf2_player/sf2_player.cpp:102:19: error: use of undeclared identifier 'FLUID_REVERB_DEFAULT_DAMP'; did you mean 'FLUID_INTERP_DEFAULT'?
        m_reverbDamping( FLUID_REVERB_DEFAULT_DAMP, 0, 1.0, 0.01, this, tr( "Reverb Damping" ) ),
                         ^~~~~~~~~~~~~~~~~~~~~~~~~
                         FLUID_INTERP_DEFAULT
[...]
plugins/sf2_player/sf2_player.cpp:395:17: error: variable has incomplete type 'fluid_preset_t' (aka '_fluid_preset_t')
        fluid_preset_t preset;
                       ^
/usr/local/include/fluidsynth/types.h:41:16: note: forward declaration of '_fluid_preset_t'
typedef struct _fluid_preset_t fluid_preset_t;                  /**< SoundFont preset */
               ^

PR:		233462
Approved by:	rodrigo (maintainer timeout, 2 weeks)
Obtained from:	upstream
2018-12-08 10:10:58 +00:00
Rene Ladan
99d6d12a38 Mark QT4 ports/functionality for removal on 2019-03-15
While here, chase some KDE4 ports and functionality, these are scheduled for
removal on 2018-12-31. Change the default option/flavor to QT5 where applicable
or use alternative toolkits like GTK.

Submitted by:	tcberner
Reviewed by:	adridg, jhale, rene, tcberner
Approved by:	portmgr (implicit, flavor hook)
Differential Revision:	https://reviews.freebsd.org/D17741
2018-12-02 15:41:47 +00:00
Rodrigo Osorio
0e86f4f610 updates LMMS to 1.2.0-rc7
- Add sndio support
- Get rid of many custom patches and other workarounds by adding
  USES=localbase:ldflags
- Fix man page install location
- Modernize some CMAKE variables

Changelog: https://github.com/LMMS/lmms/releases/tag/v1.2.0-rc7

PR:		229867
Submitted by:	tobik
2018-09-28 15:50:29 +00:00
Rodrigo Osorio
d887f8e778 Fix compiler issues for 12.0
- replace preprocessor variable _GCU_VERSION_ with __VERSION__
- Bump PORTREVISION
2018-07-03 10:06:41 +00:00
Tobias C. Berner
b1a1d38bf9 Replace bsd.qt.mk by Uses/qt.mk and Uses/qt-dist.mk
From now on, ports that depend on Qt4 will have to set
	USES=		qt:4
	USE_QT=		foo bar
ports depending on Qt5 will use
	USES=		qt:5
	USE_QT=		foo bar

PR:		229225
Exp-run by:	antoine
Reviewed by:	mat
Approved by:	portmgr (antoine)
Differential Revision:	→https://reviews.freebsd.org/D15540
2018-06-28 17:39:53 +00:00
Thomas Zander
ab5210f409 Bump PORTREVISIONS to chase update to audio/fluidsynth 1.1.11
PR:		228265
2018-06-01 22:16:11 +00:00
Rodrigo Osorio
067ce9895d Fixed dependencies and add PORTAUDIO option
Bump PORTREVISION

PR:		220961
Submitted by:	Yuri Victorovich <yuri@rawbw.com>
2017-08-12 20:35:33 +00:00
Kurt Jaeger
d2da5f386f audio/lmms: remove wrongly used PLIST_SUB from pkg-plist
PR:		210102
Submitted by:	Tobias C.Berner <tcberner@gmail.com>
Approved by:	rodrigo (maintainer timeout)
2016-10-28 17:04:12 +00:00
Mathieu Arnold
9fa9eb9ac7 Cleanup patches, a* categories.
Rename them to follow the make makepatch naming, and regenerate them.

With hat:	portmgr
Sponsored by:	Absolight
2016-07-26 16:51:15 +00:00
Rodrigo Osorio
cea8a0786f Update LMMS from V0.4.15 to V1.1.3
Sponsored by:	Essen Linuxhotel Hackathon 2016
2016-05-07 10:54:23 +00:00
Mathieu Arnold
7f4572eae4 Remove ${PORTSDIR}/ from dependencies, Mk and categories a, b, and c.
With hat:	portmgr
Sponsored by:	Absolight
2016-04-01 13:29:15 +00:00
Koop Mast
e1add76b39 Update freetype2 to 2.6.2. [1]
Mark magicpoint broken, maintainer is notified.

Exp-runs run by antoine@

This version also fixes shadowing of TYPEOF in ftconfig.h [2]

PR:		203554 [1], 202083 [2]
Submitted by:	rhurlin@gwdg.de [2]
2015-12-10 22:13:58 +00:00
Rodrigo Osorio
29c1630ce3 Fix Github repo declaration
Submitted by:	Jan Beich <jbeich@FreeBSD.org> (private email)
2015-09-12 20:33:47 +00:00
Rodrigo Osorio
ec8827b695 Unbreak port, update MASTER_SITES
Fix port Makefile and pkg-plist to comply with new rules and features

Submitted by:	Chris Petrik <chris@bsdjunk.com> (by private email)
2015-09-09 20:19:38 +00:00
Baptiste Daroussin
3fef6c52f0 Update portaudio to v19/Remove portaudio2 [1]
Chase portaudio change
Add patches from debian for games/cultivation
Add patches from upsteam for audio/rezound
Mark py-fastaudio as broken

Approved by:	maintainer
2015-05-30 20:39:12 +00:00
Baptiste Daroussin
d8e915a80c Mark broken unfetchable ports 2015-04-05 19:21:57 +00:00
Tijl Coosemans
60945f0277 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)
2014-12-08 16:48:38 +00:00
Baptiste Daroussin
a6abc3b420 Cleanup plist 2014-10-20 06:35:58 +00:00
Tijl Coosemans
4bdd97e324 math/fftw3:
- Add USES=libtool and bump dependent ports
- Add INSTALL_TARGET=install-strip
- Remove PTHREAD_CFLAGS and PTHREAD_LIBS
- Use MAKE_CMD
2014-08-31 16:36:22 +00:00
Adam Weinberger
9eef0955bd - Fix build on 8 and 9 (all archs) and 10 and 11 (32-bit archs) by
always installing into lib/lmms, not lib64/lmms
- Use OPTIONS helpers
- Don't try to remove share/mime/packages
2014-08-30 17:10:16 +00:00
Rodrigo Osorio
2f781764cd Replace deprecate USE_DOS2UNIX by dos2unix to fix file format before patch
Submitted by:	rodrigo (maintainer)
Approved by:	kwm (mentor)
2014-04-24 08:42:13 +00:00
Rodrigo Osorio
3b187e6ab1 restore dos2unix conversion for patched files
Submitted by:	rodrigo (maintainer)
2014-04-23 22:01:27 +00:00
Rodrigo Osorio
b8edf55058 - support staging
Submitted by:	rodrigo@freeBSD.org (maintainer)
Approved by:	bapt (mentor)
2014-04-22 14:37:50 +00:00
Rodrigo Osorio
877dce2447 Update maintainer email address
Approved by:	bapt@ (co-mentor)
2014-01-29 09:17:41 +00:00
Koop Mast
b1bf1620a6 Update freetype to 2.5.2.
Remove patch to add -I/usr/local/include in freetype-config --cflags. If
ports need extra headers they should look for them, and not get them via
a side-effect.

Freetype had a header resuffle in 2.5.1, patch ports to use the new header
style.

Thanks go to bdrewery for the two exp-runs and rakuco for helping me with
some troublesome cmake ports.

PR:		ports/184587
2013-12-24 21:22:21 +00:00
Baptiste Daroussin
5978476c35 In preparation for making libtool generate libraries with a sane name, fix all
LIB_DEPENDS in audio

With hat:	portmgr
2013-12-11 14:35:36 +00:00
Dmitry Marakasov
444b74f1ca - Remove manual creation and removal of share/applications, as it's now in the mtree (categories starting with a)
Approved by:	portmgr (bdrewery)
2013-10-22 13:50:43 +00:00
Baptiste Daroussin
183c2ed74f Add NO_STAGE all over the place in preparation for the staging support (cat: audio) 2013-09-20 14:36:35 +00:00
Alex Kozlov
d4041784dc - Remove MAKE_JOBS_SAFE variable
Approved by:	portmgr (bdrewery)
2013-08-14 22:35:50 +00:00
Guido Falsi
b7165045ca - Update to 0.4.15
- Fix build with clang

PR:		ports/180455
Submitted by:	Rodrigo OSORIO <rodrigo@bebik.net> (maintainer)
2013-07-19 21:38:37 +00:00
Christian Weisgerber
1f2b1eac8e * Major update to FLAC 1.3.0, including shared library bumps.
* Chase the update in dependent ports.

PR:		179072
2013-06-09 19:30:58 +00:00
William Grzybowski
c9a305065d - Update to 0.4.14 [1]
- Sort pkg-plist

Changes: http://sourceforge.net/projects/lmms/files/lmms/0.4.14/

PR:		ports/178820 [1]
Submitted by:	Rodrigo OSORIO <rodrigo@bebik.net> (maintainer)
Approved by:	culot (mentor)
2013-05-26 16:16:33 +00:00
Baptiste Daroussin
a215727686 Convert USE_PKGCONFIG -> USES=pkgconf for audio category 2013-04-22 23:19:08 +00:00
Max Brazhnikov
ffd97a0193 - convert USE_CMAKE to USES
- while here clean up some ports from CMAKE_VERBOSE, which is intended
  for users

Approved by:	portmgr (miwi)
2013-03-22 20:06:14 +00:00
Alexey Dokuchaev
314300da56 In categories starting with 'a', remove empty lines from pkg-plist (except
for `archivers/rpm5' where it looks like they're being used deliberately).
2013-03-17 13:45:27 +00:00