Commit History - (may be incomplete: see SVNWeb link above for full details) |
Date | By | Description |
22 Feb 2021 07:05:10
3.1.12

|
yuri  |
graphics/libprojectm: Update 3.1.11 -> 3.1.12
Reported by: portscout |
15 Feb 2021 23:20:22
3.1.11

|
yuri  |
graphics/libprojectm: Update 3.1.8 -> 3.1.11
Reported by: portscout |
09 Nov 2020 09:59:58
3.1.8

|
yuri  |
graphics/libprojectm: Update 3.1.7-105 -> 3.1.8 |
15 Sep 2020 07:36:41
3.1.7.105

|
yuri  |
graphics/libprojectm: Update 3.1.3 -> 3.1.7-105-gbe446c4b |
21 Apr 2020 17:08:40
3.1.3

|
yuri  |
graphics/libprojectm: Update 3.1.0 -> 3.1.3
Reported by: portscout |
26 Jul 2019 20:46:57
3.1.0_4

|
gerald  |
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 |
24 May 2019 13:54:09
3.1.0_3

|
yuri  |
graphics/libprojectm: Only builds with default options PULSEAUDIO=ON JACK=OFF
The new version 3.1.1-rc4 appears to have options reworked, but 3.1.1
itselfdoesn't build for unrelated reasons that were reported to the upstream.
Also add USES=sdl
PR: 238086
Reported by: Grzegorz Junka <list1@gjunka.com> |
01 May 2019 19:35:15
3.1.0_3

|
rene  |
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* |
16 Jan 2019 11:13:45
3.1.0_2

|
tijl  |
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 (Only the first 15 lines of the commit message are shown above ) |
12 Dec 2018 01:35:36
3.1.0_1

|
gerald  |
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 |
04 Dec 2018 05:38:20
3.1.0

|
yuri  |
graphics/libprojectm: fix build with GCC-based architectures
There are two issues here:
1. GLM requires at least GCC 4.7, base has 4.2. Add USES=compiler:c++11-lang to
solve it.
2. the port uses typedefs from sys/types.h, but those are not included by
default by GCC.
PR: 233748
Submitted by: Piotr Kubaj <pkubaj@anongoth.pl> |
27 Oct 2018 03:26:55
3.1.0

|
swills  |
graphics/libprojectm: update to 3.1.0
PR: 232020
Approved by: yuri (maintainer) |
22 Jul 2018 06:43:51
2.1.0_1

|
yuri  |
graphics/libprojectm: Unbreak on CURRENT and 11.2 by adding USE_CXXSTD=c++98 |
17 Jul 2018 18:18:56
2.1.0

|
yuri  |
graphics/libprojectm: Update 2.0.1 -> 2.1.0
Port changes:
* Change to DISTVERSION
* Add LICENSE_FILE
* Add to LIB_DEPENDS
* Now depends on Qt4
* Add options PULSEAUDIO JACK
* Improve the .sample generting code
Remove graphics/projectm-libvisual: it is merged into libprojectm
PR: 229825
Approved by: crees (removal of graphics/projectm-libvisual) |
11 Mar 2018 09:00:11
2.0.1_5

|
yuri  |
graphics/libprojectm: Take maintainership
Approved by: tcberner (mentor, implicit) |
21 Jan 2018 02:24:23
2.0.1_5

|
jbeich  |
graphics/libprojectm: unbreak build with Clang 6 (C++14 by default)
MilkdropPresetFactory/Parser.cpp:1408:10: error: invalid operands to binary
expression ('std::istream' (aka 'basic_istream<char>') and 'nullptr_t')
if (fs == NULL)
~~ ^ ~~~~
Renderer/VideoEcho.cpp:77:30: error: non-constant-expression cannot be narrowed
from type 'double' to 'float' in initializer list [-Wc++11-narrowing]
float pointsFlip[4][2] = {{-0.5*flipx, -0.5*flipy},
^~~~~~~~~~
Renderer/VideoEcho.cpp:77:30: note: insert an explicit cast to silence this
issue
float pointsFlip[4][2] = {{-0.5*flipx, -0.5*flipy},
^~~~~~~~~~
static_cast<float>( )
Reported by: pkg-fallout
Obtained from: upstream |
18 Nov 2017 19:32:39
2.0.1_5

|
zeising  |
Bump portrevision to chase graphics/glew shard library version update.
PR: 223370
Submitted by: zeising
exp-run by: antoine
Approved by: antoine |
23 May 2017 05:03:16
2.0.1_4

|
rezny  |
Revision bump of all ports with USE_GL after consolidation of mesa-libs
Approved by: swills (mentor)
Differential Revision: https://reviews.freebsd.org/D10845 |
30 Sep 2016 19:24:30
2.0.1_3

|
tijl  |
Let USES=localbase add -L${LOCALBASE}/lib to LIBS instead of LDFLAGS.
USES=localbase:ldflags can be used to set LDFLAGS. Normally LDFLAGS
appears too early on the command line causing some ports to link with
their own libraries in LOCALBASE (if installed) instead of WRKSRC.
Also make use of _USES_POST so -L${LOCALBASE}/lib is added as late as
possible after anything a port Makefile might set. Use _USES_POST
instead of .include in libedit.mk and libarchive.mk so things like
'USES=libedit localbase:ldflags' work correctly.
Fix some issues with LIBS in some ports.
Switch ports that don't support LIBS to localbase:ldflags.
PR: 212987
Exp-run by: antoine
Approved by: portmgr (antoine) |
01 Apr 2016 14:00:57
2.0.1_3

|
mat  |
Remove ${PORTSDIR}/ from dependencies, categories d, e, f, and g.
With hat: portmgr
Sponsored by: Absolight |
12 Jan 2016 16:20:32
2.0.1_3

|
amdmi3  |
Convert LICENSE= "GPLxx # or later" to "GPLxx+"
Approved by: portmgr blanket |
27 Dec 2015 20:21:42
2.0.1_3

|
amdmi3  |
- Clarify LICENSE
- Switch to USES=localbase
- Unbreak on 11.x |
16 Dec 2015 20:42:45
2.0.1_3

|
crees  |
Does not link on recent head.
Sorry, I do not have time to maintain this port any more. |
10 Dec 2015 22:13:58
2.0.1_3

|
kwm  |
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] |
20 Sep 2015 01:13:48
2.0.1_3

|
jbeich  |
Convert the rest to USE_GL
Tested by: make describe (only touched ports)
Approved by: portmgr blanket |
20 Oct 2014 17:04:21
2.0.1_3

|
bapt  |
Cleanup plist |
10 Sep 2014 20:50:37
2.0.1_3

|
gerald  |
Update the default version of GCC in the Ports Collection from GCC 4.7.4
to GCC 4.8.3.
Part II, Bump PORTREVISIONs.
PR: 192025
Tested by: antoine (-exp runs)
Approved by: portmgr (implicit) |
13 Jun 2014 07:36:28
2.0.1_2

|
olgeni  |
Remove indefinite articles and trailing periods from COMMENT, plus
minor COMMENT typos and surrounding whitespace fixes. Categories G-I.
CR: D201
Approved by: portmgr (bapt) |
05 May 2014 09:45:37
2.0.1_2

|
bapt  |
Convert all :U to :tu and :L to :tl
Since FreeBSD 8.4 and FreeBSD 9.1 make(1) do support :tu and :tl as a
replacement for :U and :L (which has been marked as deprecated)
bmake which is the default on FreeBSD 10+ only support by default
:tu/:tl a hack has been added at the time to support :U and :L to ease
migration. This hack is now not necessary anymore
Note that this makes the ports tree incompatible with make(1) from
FreeBSD 8.3 or earlier
With hat: portmgr |
16 Apr 2014 18:28:50
2.0.1_2

|
zeising  |
The FreeBSD x11@ and graphics team proudly presents
a zeising, kwm production, with help from dumbbell, bdrewery:
NEW XORG ON FREEBSD 9-STABLE AND 10-STABLE
This update switches over to use the new xorg stack by default on FreeBSD 9
and 10 stable, on osversions where vt(9) is available.
It is still possible to use the old stack by specifying WITHOUT_NEW_XORG in
/etc/make.conf .
FreeBSD 8-STABLE and released versions of FreeBSD still use
the old version.
A package repository with binary packages for new xorg will
be available soon.
This patch also contains updates of libxcb and related ports, pixman, as well (Only the first 15 lines of the commit message are shown above ) |
30 Dec 2013 14:30:08
2.0.1_1

|
crees  |
Final ports of mine staged |
24 Dec 2013 21:22:22
2.0.1_1

|
kwm  |
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 |
30 Oct 2013 15:16:28
2.0.1_1

|
marino  |
graphics/libprojectm: add <sys/types.h>
Required with gcc48/binutils 2.23 for uint definition.
Approved by: portmgr (bapt, implicit) |
20 Sep 2013 18:35:46
2.0.1_1

|
bapt  |
Add NO_STAGE all over the place in preparation for the staging support (cat:
graphics) |
22 Mar 2013 20:06:15
2.0.1_1

|
makc  |
- convert USE_CMAKE to USES
- while here clean up some ports from CMAKE_VERBOSE, which is intended
for users
Approved by: portmgr (miwi) |
17 Jun 2011 06:46:07
2.0.1_1
|
crees  |
- Update maintainer address
Approved by: rene (mentor) |
23 Apr 2011 02:34:05
2.0.1_1
|
jsa  |
Fix pkgconfig.
PR: ports/156476
Submitted by: Chris Rees <utisoft@gmail.com> (maintainer)
Approved by: wxs (mentor) |
14 Feb 2011 03:27:15
2.0.1
|
miwi  |
projectM is an awesome music visualizer. There is nothing better in the world
of Unix. projectM's greatness comes from the hard work of the community. Users
like you can create presets that connect music with incredible visuals. Try it!
WWW: http://projectm.sourceforge.net/
PR: ports/154749
Submitted by: utisoft at gmail.com |