Commit History - (may be incomplete: for full details, see links to repositories near top of page) |
Commit | Credits | Log message |
3.2.2_16 31 Dec 2022 03:24:49 |
Muhammad Moinur Rahman (bofh) |
games/glest: Refactor after wxgtk28 removal
- Add LICENSE
- Use OPTIONS framework
- Pet portclippy
Approved by: portmgr |
3.2.2_15 31 Dec 2022 03:24:14 |
Muhammad Moinur Rahman (bofh) |
Approved by: portmgr |
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) |
3.2.2_15 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 ) |
3.2.2_15 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 ) |
3.2.2_15 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 |
3.2.2_14 16 Apr 2021 07:52:45 |
Yuri Victorovich (yuri) |
x11-toolkits/wxgtk31: Update 3.1.4 -> 3.1.5
Bump 43 ports that either depend on wxgtk31 or potentially depend on it.
Reported by: portscout |
3.2.2_13 06 Apr 2021 14:31:07 |
Mathieu Arnold (mat) |
Remove # $FreeBSD$ from Makefiles. |
3.2.2_13 07 Dec 2020 20:09:03 |
rene |
Return mmokhi@'s ports to the pool after his commit bit was safekept. |
3.2.2_13 12 Aug 2020 13:34:58 |
0mp |
Only pass -E to find(1) when passing -regex or -iregex
The -E flag tells find(1) to interpret regular expressions which were
passed as arguments to -regex and -iregex as extended regular expressions.
It has no effect on other otherwise. Let's not invoke find(1) with -E if
not necessary.
Approved by: portmgr (blanket approval) |
3.2.2_13 17 May 2020 05:55:12 |
lbartoletti |
x11-toolkits/wxgtk30: Update to 3.0.5.1
Changelog:
-
https://raw.githubusercontent.com/wxWidgets/wxWidgets/v3.0.5/docs/changes.txt
PR: 246218
Approved by: tcberner (mentor)
Exp-run by: antoine
Differential Revision: https://reviews.freebsd.org/D24808 |
3.2.2_12 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 |
3.2.2_12 04 Jan 2020 20:23:27 |
pkubaj |
games/glest: fix build on GCC architectures
Building with GCC fails:
./mk/linux/glest_game/ai/ai_rule.cpp: In member function 'virtual bool
Glest::Game::AiRuleMassiveAttack::test()':
./mk/linux/glest_game/ai/ai_rule.cpp:156:46: error: 'INT_MAX' was not declared
in this scope
156 | return ai->beingAttacked(attackPos, field, INT_MAX);
| ^~~~~~~
./mk/linux/glest_game/ai/ai_rule.cpp:19:1: note: 'INT_MAX' is defined in header
'<climits>'; did you forget to '#include <climits>'?
18 | #include "leak_dumper.h"
+++ |+#include <climits>
19 |
./mk/linux/glest_game/ai/ai_rule.cpp: In member function 'virtual bool
Glest::Game::AiRuleExpand::test()':
./mk/linux/glest_game/ai/ai_rule.cpp:815:22: error: 'INT_MAX' was not declared
in this scope
815 | int minDistance= INT_MAX;
| ^~~~~~~
./mk/linux/glest_game/ai/ai_rule.cpp:815:22: note: 'INT_MAX' is defined in
header '<climits>'; did you forget to '#include <climits>'?
...failed C++
./build/powerpc64-portbld-freebsd12.1/optimize/glest_game/ai/ai_rule.o ...
Include climits in ai_rule.cpp to fix it.
PR: 242766
Approved by: mmokhi (maintainer timeout)
MFH: 2020Q1 (fix build blanket) |
3.2.2_12 09 Dec 2019 11:24:07 |
pkubaj |
games/glest: fix build on GCC architectures
OpenAL needs C++11 compiler:
/usr/local/lib/libopenal.so: undefined reference to
`std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>
>::~basic_string()@GLIBCXX_3.4.21' |
3.2.2_12 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. |
3.2.2_12 13 Aug 2019 16:03:12 |
mat |
Convert to UCL & cleanup pkg-message (categories e-g) |
3.2.2_12 05 Feb 2019 13:56:27 |
amdmi3 |
- Add missing depends (ogg, gl, x11)
- Add USES=gl
- Convert USE_SDL=yes to USE_SDL=sdl
Approved by: portmgr blanket |
3.2.2_11 07 Jan 2018 22:34:17 |
krion |
Set LLD_UNSAFE=yes that the port will continue to link with ld.bfd
if /usr/bin/ld is lld, until the issue can be addressed.
PR: 214864
Approved by: portmgr (LLD_UNSAFE blanket)
Sponsored by: The FreeBSD Foundation |
3.2.2_11 23 Dec 2017 16:50:16 |
tijl |
Convert to USES=autoreconf. |
3.2.2_11 08 Dec 2017 17:47:11 |
amdmi3 |
- Switch to USES=localbase
- Verbosify fuild
- Switch to options helpers
Approved by: portmgr blanket |
3.2.2_11 10 Jun 2017 01:51:03 |
sunpoet |
Remove no-op WX_UNICODE
Approved by: portmgr (blanket) |
3.2.2_11 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 |
3.2.2_10 11 Feb 2017 04:44:44 |
mmokhi |
Updating the ports I maintain to my FreeBSD.org address.
Submitted by: mmokhi
Reviewed by: feld, mat
Approved by: feld, mat (mentors)
Differential Revision: https://reviews.freebsd.org/D9498 |
3.2.2_10 13 Jan 2017 16:54:56 |
mat |
Fix ports using PREFIX in their depends instead of LOCALBASE.
With hat: portmgr
Sponsored by: Absolight |
3.2.2_10 28 May 2016 02:02:54 |
junovitch |
Assign submitter as maintainer by request
PR: 209794
Submitted by: Mahdi Mokhtari <mokhi64@gmail.com>
Differential Revision: D6606 |
3.2.2_10 19 May 2016 11:09:14 |
amdmi3 |
- Fix trailing whitespace in pkg-messages
Approved by: portmgr blanket |
3.2.2_10 01 Apr 2016 14:00:57 |
mat |
Remove ${PORTSDIR}/ from dependencies, categories d, e, f, and g.
With hat: portmgr
Sponsored by: Absolight |
3.2.2_10 16 Sep 2015 19:51:28 |
bapt |
Remove ansi version fo wxGTK 2.8 and only keep the unicode version
All applications in the ports tree works correctly with unicode version of wxGTK
Newer version of wxGTK are unicode only (3.0+)
Note that now WX_UNICODE macro is noop |
3.2.2_9 13 Sep 2015 18:58:30 |
bapt |
Enforce unicode version of wxGTK |
3.2.2_9 25 Mar 2015 23:00:51 |
marino |
games category: Remove $PTHREAD_LIBS
approved by: PTHREAD blanket |
3.2.2_9 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 ) |
3.2.2_8 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) |
3.2.2_7 11 Aug 2014 13:34:40 |
wg |
games/glest: support stage [1]
- Use options sub
- Remove useless pre/post include
- Finish to convert to options ng
PR: 192565
Submitted by: christian.mangin gmail com [1] |
3.2.2_7 23 Jul 2014 16:44:28 |
bapt |
Reset maintainership for ports not staged with no pending PR
With hat: portmgr |
3.2.2_7 11 Jun 2014 14:50:00 |
tijl |
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 ) |
3.2.2_7 06 Jun 2014 15:26:41 |
ak |
- Use /usr/bin/unzip for zip files extraction (part 2)
Remove most of USES=zip:infozip
PR: ports/188419
Approved by: portmgr (bapt)
Exp-run: antoine |
3.2.2_7 26 May 2014 15:28:29 |
bapt |
Replace lang/lua with the new lang/lua51
lang/lua51 is working the same way lang/lua52, chase ports using lua 5.1
Make the default lua lua52
Make all lua ports using USES=lua
Approved by: portmgr (implicit) |
3.2.2_7 10 Mar 2014 22:49:34 |
antoine |
Unbreak |
10 Mar 2014 14:49:26
|
bapt |
Convert g* to USES=zip |
3.2.2_7 24 Feb 2014 14:32:27 |
bapt |
Make glest use xerces-c3
Obtained from: Gentoo |
3.2.2_6 25 Dec 2013 23:29:34 |
antoine |
Convert the tree to USES=openal
Approved by: portmgr (bapt) |
3.2.2_6 20 Sep 2013 17:36:36 |
bapt |
Add NO_STAGE all over the place in preparation for the staging support (cat:
games) |
3.2.2_6 02 Sep 2013 09:45:05 |
bapt |
Add explicit dependencies on pkgconf |
3.2.2_6 31 May 2013 14:40:56 |
jgh |
- adopt optionsNG for games
- trim historical headers and trim comments
- some Makefile cleanup
Approved by: portmgr (bapt) |
3.2.2_6 29 Jul 2012 11:17:04 |
cs |
Fix typos in COMMENT
Approved by: portmgr@ (implicit) |
3.2.2_6 19 Jul 2012 20:15:39 |
naddy |
libogg.so.8: Bump PORTREVISION for ports that depend on libogg,
directly or indirectly (via libvorbis, libtheora). |
3.2.2_5 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 |
3.2.2_4 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 |
3.2.2_4 03 Jul 2011 14:25:36 |
ohauer |
-remove MD5 |
3.2.2_4 04 Dec 2010 07:34:27 |
ade |
Sync to new bsd.autotools.mk |
3.2.2_4 16 Oct 2010 11:52:47 |
ade |
Punt autoconf267->autoconf268 |
3.2.2_4 05 Oct 2010 19:57:56 |
ade |
Round one migration of ports from automake{19,110} to automake111 |
3.2.2_4 24 Sep 2010 03:22:28 |
ade |
Migrate from devel/automake15 to devel/automake19 |
3.2.2_4 15 Sep 2010 18:35:24 |
ade |
Autotools update. Read ports/UPDATING 20100915 for details.
Approved by: portmgr (for Mk/bsd.port.mk part)
Tested by: Multiple -exp runs |
3.2.2_3 06 Jun 2010 20:44:03 |
naddy |
Bump PORTREVISION for ports that depend on libogg, directly or indirectly
(via libvorbis, libtheora). |
3.2.2_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) |
3.2.2_1 22 Aug 2009 00:23:13 |
amdmi3 |
- Switch SourceForge ports to the new File Release System: categories starting
with G |
3.2.2_1 06 Jul 2009 21:26:00 |
naddy |
Bump PORTREVISION after libogg and libvorbisfile major version increment. |
3.2.2 27 Apr 2009 00:17:10 |
acm |
- Update to 3.2.2
Changelog at: http://glest.org/glest_board/index.php?topic=4252.0 |
3.2.1 15 Feb 2009 00:16:16 |
acm |
- Update to 3.2.1
- See the Changelog at:
http://glest.org/glest_board/index.php?topic=4126.0 |
3.1.2 21 Aug 2008 06:18:49 |
rafan |
Update CONFIGURE_ARGS for how we pass CONFIGURE_TARGET to configure script.
Specifically, newer autoconf (> 2.13) has different semantic of the
configure target. In short, one should use --build=CONFIGURE_TARGET
instead of CONFIGURE_TARGET directly. Otherwise, you will get a warning
and the old semantic may be removed in later autoconf releases.
To workaround this issue, many ports hack the CONFIGURE_TARGET variable
so that it contains the ``--build='' prefix.
To solve this issue, under the fact that some ports still have
configure script generated by the old autoconf, we use runtime detection
in the do-configure target so that the proper argument can be used.
Changes to Mk/*:
- Add runtime detection magic in bsd.port.mk (Only the first 15 lines of the commit message are shown above ) |
3.1.2 20 Aug 2008 00:57:32 |
ade |
Conversion from (now defunct) autoconf-2.61 to autoconf-2.62
Tested by: exp build run (erwin) |
3.1.2 28 Mar 2008 00:06:32 |
acm |
- Update to 3.1.2
- Welcome to multiplayer support
- Add EDITOR option
See the changelog at:
http://www.glest.org/glest_board/viewtopic.php?t=3323 |
2.0.1_3 22 Mar 2008 08:55:40 |
miwi |
- Remove USE_XLIB/USE_X_PREFIX/USE_XPM in favor of USE_XORG
- Bump PORTREVISION
Approved by: portmgr (xorg cleanup) |
2.0.1_2 13 Mar 2008 14:28:35 |
miwi |
- Chase devel/sdl12 shlib version bump |
2.0.1_1 30 Sep 2007 04:47:37 |
linimon |
Switch autoconf dependencies from 2.53 or 2.59 to 2.61.
PR: ports/116639
Submitted by: aDe |
2.0.1 06 Sep 2007 01:29:03 |
acm |
- Update to 2.0.1
- Add glest/files/pkg-message file
- Modify glest-wrapper file. Now it works with home directory and place the
configuration files there.
- Remove glest-data/pkg-plist file |
2.0.0_6 28 Jul 2007 12:27:31 |
miwi |
- Chase increase of audio/libvorbis shlib version.
- Bump PORTREVISION |
2.0.0_5 19 May 2007 20:32:57 |
flz |
- Welcome X.org 7.2 \o/.
- Set X11BASE to ${LOCALBASE} for recent ${OSVERSION}.
- Bump PORTREVISION for ports intalling files in ${X11BASE}. |
2.0.0_4 16 Jan 2007 23:14:50 |
acm |
- Move to LOCALBASE
- Bump PORTREVISION |
2.0.0_3 20 Sep 2006 11:21:59 |
stas |
- Update devel/sdl12 to version 1.2.11. Now we employ stock SDL directory
structure (i.e. include/SDL for includes and sdl-config for configuration
binary)
- Update graphics/sdl_ttf to version 2.0.8
- Update graphics/sdl_image to version 1.2.5
- Update audio/sdl_mixer to version 1.2.7
- Update net/sdl_net to version 1.2.6
- Update Mk/bsd.sdl.mk accordingly
- Fix dependent ports to fit the new directory structure and avoid several
API breakages
- Bump up portrevisions for all dependent ports to allow them to be upgraded
by portupgrade/portmaster etc tools
Approved by: kris (portmgr), sem (mentor) |
2.0.0_2 23 Jul 2006 02:45:24 |
acm |
Change maintainer address to my @FreeBSD.org email
Approved by: garga (mentor) |
2.0.0_2 08 Jun 2006 16:07:12 |
oliver |
update freealut to 1.1.0 |
2.0.0_1 24 May 2006 17:08:53 |
sem |
- Bump xerces lib version
- Bump PORTREVISION
Reported by: kris mail |
2.0.0 12 May 2006 10:11:41 |
itetcu |
Update to 2.0.0
I separeted glest port to glest and glest-data ports.
Glest 2.0.0 has been released, this version includes loads of new features:
- New Magic units:
- Tower of Souls: Air defense building, attacks air only
- Golem: Defensive unit, needs EP to walk, can't attack air
- Daemon giant: Heavy melee unit
- Drake rider: Light ranged unit
- New Tech units:
- Aerodrome: Building for producing air units
- Air ballista: Air defense building, attacks air only
- Rider: Fast medium unit
- Ornithopter: Light air unit (Only the first 15 lines of the commit message are shown above ) |
1.2.1.2_1 07 May 2006 23:46:33 |
edwin |
Remove USE_REINPLACE for categories starting with a G |
1.2.1.2_1 23 Apr 2006 10:14:30 |
oliver |
update to openal 20060211 [1]
fix dependant ports [2]
PR: ports/96172 [1]
ports/95192 [2]
Submitted by: maintainer [1]
oliver [2]
Approved by: maintainer |
1.2.1.2_1 02 Jan 2006 21:51:11 |
edwin |
broken on 4.x, ignore on 4.x!
Submitted by: "Jeremy Messenger" <mezz7@cox.net> |
1.2.1.2_1 30 Dec 2005 18:34:11 |
mezz |
- Get it installs a correct glest.ini version to get it runable by default.
Before, a different version of glest.ini would overwrite a correct glest.ini
during the installation that causes game not runable by default.
- Get configure to find pthread correct by teach it about ${PTHREAD_LIBS}, not
use -lpthread (hardcore).
- Remove the MAKE_ENV, it is not need.
- Other very small clean up.
- Bump the PORTREVISION, for glest.ini issue.
Approved by: Jose Alonso Cardenas Marquez <acardenas@bsd.org.pe> (maintainer) |
1.2.1.2 29 Dec 2005 06:26:25 |
edwin |
[NEW PORT] games/glest: Free 3d real-time customizable strategy game
Glest is a project for making a free 3d real-time customizable
strategy game. Current version is fully playable, includes
single player game against CPU controlled players, two
factions with their corresponding tech trees, units, buildings
and some maps.
WWW: http://www.glest.org/
PR: ports/88306
Submitted by: Jose Alonso Cardenas Marquez <acardenas@bsd.org.pe> |