Commit History - (may be incomplete: for full details, see links to repositories near top of page) |
Commit | Credits | Log message |
07 Sep 2022 21:58:51
    |
Stefan Eßer (se)  |
Remove WWW entries moved into port Makefiles
Commit b7f05445c00f has added WWW entries to port Makefiles based on
WWW: lines in pkg-descr files.
This commit removes the WWW: lines of moved-over URLs from these
pkg-descr files.
Approved by: portmgr (tcberner) |
0.7.7.1_6 07 Sep 2022 21:10:59
    |
Stefan Eßer (se)  |
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 ) |
0.7.7.1_6 20 Jul 2022 14:21:58
    |
Tobias C. Berner (tcberner)  |
games: remove 'Created by' lines
A big Thank You to the original contributors of these ports:
* <benlutz@datacomm.ch>
* <janos.mohacsi@bsd.hu>
* Aaron Baugher
* Aaron Dalton <aaron@FreeBSD.org>
* Aaron Dalton <aaron@daltons.ca>
* Aaron VonderHaar <avh4@usa.net>
* Aaron Zauner <az_mail@gmx.at>
* Adam Kranzel (adam@alameda.edu)
* Adam Weinberger <adamw@FreeBSD.org>
* Ade Lovett <ade@FreeBSD.org>
* Akinori MUSHA aka knu <knu@idaemons.org> (Only the first 15 lines of the commit message are shown above ) |
0.7.7.1_6 10 Oct 2021 19:44:42
    |
Baptiste Daroussin (bapt)  |
INSTALLS_ICONS: retire the macro and rework the related dependencies
While here, make sure gtk-update-icon-cache is only on run dependency
where added as a dependency
Enforce gtk3 to depend on gtk-update-icon-cache (previously it was
inheriting the dependency) |
0.7.7.1_6 22 Jun 2021 18:53:08
    |
Kevin Bowling (kbowling)  |
graphics/mesa-libs: Bump reverse deps for libglvnd
Per discussion with bapt on helping pkg handle the changing of these
deps and avoiding impossible upgrade senarios.
PR: 246767
Reviewed by: manu, bapt
Approved by: x11
Differential Revision: https://reviews.freebsd.org/D30824 |
0.7.7.1_5 06 Apr 2021 14:31:07
    |
Mathieu Arnold (mat)  |
Remove # $FreeBSD$ from Makefiles. |
0.7.7.1_5 19 Mar 2020 23:02:31
  |
tobik  |
Clean up LLD_UNSAFE from openal-soft ports
After FreeBSD 12.0 EOL we no longer have to worry about LLD 6 and
can drop LLD_UNSAFE from openal-soft ports. LLD can link them fine
now but some ports needs a little help on i386 (-Wl,-znotext).
PR: 226980
Reviewed by: jbeich (earlier version)
Differential Revision: https://reviews.freebsd.org/D23030 |
0.7.7.1_5 02 Dec 2019 12:57:00
  |
tobik  |
games/ultimatestunts: Unbreak build
udpnet.cpp:61:6: error: no viable conversion from '__bind<int &, sockaddr *,
unsigned long>' to 'int'
int rc = bind (m_Socket, (struct sockaddr *) &MyAddress,
sizeof(MyAddress));
^
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
http://beefy9.nyi.freebsd.org/data/113amd64-default/518685/logs/errors/ultimatestunts-0.7.7.1_5.log
While here apply r518709 to this port too and link with lld when possible |
0.7.7.1_5 08 Nov 2019 10:47:01
  |
tobik  |
games: Add missing USES={gnome,gl,sdl,xorg} |
0.7.7.1_5 05 Nov 2019 22:16:15
  |
zeising  |
Add USES=xorg USES=gl, ports categories g
Add USES=xorg and USES=gl to ports in categories starting with 'g'.
While here, try to sprinkle other USES (mostly gnome and sdl) as needed. |
0.7.7.1_5 28 Jul 2018 07:16:32
  |
tobik  |
games/ultimatestunts: Fix build with Clang 6 and lld
gamerenderer.cpp:81:30: error: non-constant-expression cannot be narrowed from
type 'double' to 'GLfloat' (aka 'float') in initializer list [-Wc++11-narrowing]
GLfloat specular_color[] = {3.0*lightCol.x, 3.0*lightCol.y,
3.0*lightCol.z, 1.0};
^~~~~~~~~~~~~~
http://beefy12.nyi.freebsd.org/data/head-amd64-default/p475044_s336572/logs/ultimatestunts-0.7.7.1_4.log
- Fix bad absolute symlink
- Mark as LLD_UNSAFE because of audio/openal-soft dependency [1]
PR: 226980 [1] |
0.7.7.1_4 26 Jun 2018 17:06:33
  |
ehaupt  |
Reset maintainer (3+ months of inactivity).
Discussed with: portmgr (adamw, mat) |
0.7.7.1_4 23 May 2017 05:03:16
  |
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 |
0.7.7.1_3 11 Apr 2017 15:21:23
  |
mat  |
Make defining both PORTVERSION and DISTVERSION a DEV_ERROR.
There are two cases:
- The upstream versionning is compatible with our versionning, or using
DISTVERSION's magic leads to a compatible PORTVERSION, use
DISTVERSION. If it is possible to use DISTVERSIONPREFIX and
DISTVERSIONSUFFIX to make it compatible, use them.
- The upstream versionning is not compatible with our versionning, and
DISTVERSION's magic does not lead to a correct PORTVERSION, then set
PORTVERSION to the equivalent of our versionning, and set DISTNAME.
It is possible to use a third variable where you store upstream's
version and use it to compute PORTVERSION and/or DISTNAME, like the
dns/bind9* ports do.
Sponsored by: Absolight |
0.7.7.1_3 21 Oct 2016 12:51:41
  |
mat  |
${RM} already has -f.
PR: 213570
Submitted by: mat
Exp-run by: antoine
Sponsored by: Absolight |
0.7.7.1_3 01 Apr 2016 14:00:57
  |
mat  |
Remove ${PORTSDIR}/ from dependencies, categories d, e, f, and g.
With hat: portmgr
Sponsored by: Absolight |
0.7.7.1_3 12 Jan 2016 16:20:32
  |
amdmi3  |
Convert LICENSE= "GPLxx # or later" to "GPLxx+"
Approved by: portmgr blanket |
0.7.7.1_3 29 Dec 2015 14:30:47
  |
mat  |
Cleanup GH_* and variables order.
Sponsored by: Absolight |
0.7.7.1_3 13 Jan 2015 14:24:43
  |
amdmi3  |
- Clarify LICENSE
- Add LICENSE_FILE
- Remove @dirrm* from pkg-plist
PR: 196214
Submitted by: amdmi3
Approved by: maintainer timeout (nemysis) |
0.7.7.1_3 08 Dec 2014 16:48:41
  |
tijl  |
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 ) |
0.7.7.1_2 10 Sep 2014 20:50:37
  |
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) |
0.7.7.1_1 15 Mar 2014 18:34:55
  |
nemysis  |
- Bump PORTREVISION for pkg-plist change
- Cleanup port
- Add master site, icons
- Take maintainership
- Use the new format for LIB_DEPENDS
- Remove obsolete REINPLACE -I/usr/local/include and -L/usr/local/lib,
don't use -I${LOCALBASE}/include and -L${LOCALBASE}/lib
- Remove PORT_VERBS, not needed
- Add NLS Option, install conditional NLS
- Support STAGEDIR and add OPTIONS_SUB, add REINPLACE for staging
- Add Desktop entry file
- Remove obsolete REINPLACE, add patch-Makefile.in, copy and install
/etc/ultimatestunts.conf as example,
user gets ~/.ultimatestunts/ultimatestunts.conf when the game starts
- Recreate patches with make makepatch
- Change pkg-descr
- Change pkg-plist, remove DOCS, add icons |
0.7.7.1 25 Dec 2013 23:29:34
  |
antoine  |
Convert the tree to USES=openal
Approved by: portmgr (bapt) |
0.7.7.1 01 Oct 2013 20:11:20
  |
marino  |
games/ultimatestunts: add <unistd.h> for modern compilers |
0.7.7.1 20 Sep 2013 17:36:36
  |
bapt  |
Add NO_STAGE all over the place in preparation for the staging support (cat:
games) |
0.7.7.1 26 Apr 2013 10:44:29
  |
ak  |
- Convert USE_GETTEXT to USES (part 4)
Approved by: portmgr (bapt) |
0.7.7.1 23 Apr 2013 10:47:03
  |
bapt  |
Convert g* to USES=pkgconfig |
0.7.7.1 14 Dec 2012 07:13:04
  |
araujo  |
- Update to 0.7.7.1.
PR: ports/172008
Submitted by: KATO Tsuguru <tkato432@yahoo.com> |
0.7.6.1_3 19 Jul 2012 20:15:39
 |
naddy  |
libogg.so.8: Bump PORTREVISION for ports that depend on libogg,
directly or indirectly (via libvorbis, libtheora). |
0.7.6.1_2 01 Jun 2012 05:26:28
 |
dinoex  |
- update png to 1.5.10 |
0.7.6.1_1 18 Feb 2012 10:18:33
 |
mva  |
- Update devel/sdl12 to 1.2.15
- Update audio/sdl_mixer to 1.2.15
- Update graphics/sdl_image to 1.2.12
- Update graphics/sdl_ttf to 2.0.11
- Update graphics/sdl_gfx to 2.0.23
- Update net/sdl_net to 1.2.8
- Bump PORTREVISIONs on ports that depend on one or more packages due to
ABI and shared library version changes
- Update Mk/bsd.sdl.mk accordingly for the new shared library versions
Tested by: exp-run by pav |
0.7.6.1 23 Sep 2011 22:26:39
 |
amdmi3  |
- 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 |
0.7.6.1 25 Jun 2011 04:59:07
 |
miwi  |
- Update to 0.7.6.1
PR: 155867
Submitted by: Ports Fury |
0.7.5.1_6 31 May 2010 02:01:56
 |
ade  |
Bounce PORTREVISION for gettext-related ports. Have fun, ya'll. |
0.7.5.1_5 28 Mar 2010 06:47:48
 |
dinoex  |
- update to 1.4.1
Reviewed by: exp8 run on pointyhat
Supported by: miwi |
0.7.5.1_4 05 Feb 2010 11:46:55
 |
dinoex  |
- update to jpeg-8 |
0.7.5.1_3 30 Jan 2010 09:43:31
 |
mva  |
- Update devel/sdl12 to version 1.2.14.
- Update audio/sdl_mixer to version 1.2.11.
- Update graphics/sdl_gfx to version 2.0.20.
- Update graphics/sdl_image to version 1.2.10.
- Bump portrevisions for all ports depending on audio/sdl_mixer and
graphics/sdl_image.
- Update Mk/bsd.sdl.mk accordingly for the new shared lib versions.
PR: ports/142147 ports/142248 ports/142249
Approved by: miwi (mentor implicit) |
0.7.5.1_2 25 Jan 2010 19:15:18
 |
pav  |
- Introduce USE_OPENAL variable for OpenAL consumers
- Switch to openal-soft as a default OpenAL implementation
PR: ports/142123
Submitted by: mva
Tested by: pointyhat exp-run
Approved by: portmgr (hat) |
0.7.5.1_1 22 Nov 2009 19:49:43
 |
pav  |
- Mark MAKE_JOBS_UNSAFE
Reported by: pointyhat |
0.7.5.1_1 22 Aug 2009 00:23:13
 |
amdmi3  |
- Switch SourceForge ports to the new File Release System: categories starting
with G |
0.7.5.1_1 31 Jul 2009 13:57:52
 |
dinoex  |
- bump all port that indirectly depends on libjpeg and have not yet been bumped
or updated
Requested by: edwin |
0.7.5.1 30 Oct 2008 12:32:46
 |
araujo  |
- Update to 0.7.5.1.
- Sort pkg-plist. |
0.7.4.1_2 07 Sep 2008 00:19:05
 |
linimon  |
Reset infofarmer due to maintainer-timeouts and no response to email.
Hat: portmgr |
0.7.4.1_2 06 Jun 2008 13:31:51
 |
edwin  |
Bump portrevision due to upgrade of devel/gettext.
The affected ports are the ones with gettext as a run-dependency
according to ports/INDEX-7 (5007 of them) and the ones with USE_GETTEXT
in Makefile (29 of them).
PR: ports/124340
Submitted by: edwin@
Approved by: portmgr (pav) |
0.7.4.1_1 13 Mar 2008 14:28:35
 |
miwi  |
- Chase devel/sdl12 shlib version bump |
0.7.4.1 01 Feb 2008 14:08:04
 |
sat  |
- Update to 0.7.4.1 |
0.7.3.1 19 Oct 2007 17:03:02
 |
sat  |
- Update to 0.7.3.1 |
0.7.2.1 09 Aug 2007 19:24:14
 |
sat  |
Add port games/ultimatestunts:
UltimateStunts is a UNIX/Windows/Linux remake of the DOS-game "stunts",
providing modern features like openGL graphics, 3D sound and internet
multiplaying. Design your own tracks, choose your opponents and try the
most spectacular stunts you've ever seen.
This game is still under heavy development, don't expect everything to
work.
WWW: http://www.ultimatestunts.nl/ |