Commit History - (may be incomplete: for full details, see links to repositories near top of page) |
Commit | Credits | Log message |
4604 22 Feb 2018 00:58:55 |
jbeich |
games/openbor: update to 4604
Changes: https://github.com/DCurrent/openbor/compare/ab066c1...d73408f |
4601 20 Feb 2018 00:09:17 |
jbeich |
games/openbor: update to 4601
Changes: https://github.com/DCurrent/openbor/compare/35968d0...ab066c1 |
4591 13 Feb 2018 00:51:27 |
jbeich |
games/openbor: update to 4591
Changes: https://github.com/DCurrent/openbor/compare/b8f6610...35968d0 |
4582 06 Feb 2018 00:56:23 |
jbeich |
games/openbor: update to 4582
Changes: https://github.com/DCurrent/openbor/compare/2184a29...b8f6610 |
4578 03 Feb 2018 00:43:24 |
jbeich |
games/openbor: update to 4578
Changes: https://github.com/DCurrent/openbor/compare/f16756c...2184a29 |
4575 30 Jan 2018 00:54:53 |
jbeich |
games/openbor: update to 4575
Changes: https://github.com/DCurrent/openbor/compare/347fd9b...f16756c |
4569_1 25 Jan 2018 21:20:12 |
jbeich |
multimedia/libvpx: update 1.7.0
Changes: https://chromium.googlesource.com/webm/libvpx/+log/v1.6.1..v1.7.0
ABI: https://abi-laboratory.pro/tracker/timeline/libvpx/ |
4569 25 Jan 2018 00:53:25 |
jbeich |
games/openbor: update to 4569
Changes: https://github.com/DCurrent/openbor/compare/5dd6f84...347fd9b |
4564 11 Jan 2018 00:54:20 |
jbeich |
games/openbor: update to 4564
Changes: https://github.com/DCurrent/openbor/compare/830e0a9...5dd6f84 |
4559 01 Jan 2018 13:06:44 |
jbeich |
games/openbor: update to 4559
Changes: https://github.com/DCurrent/openbor/compare/9b1c39b...830e0a9 |
4553 31 Dec 2017 00:56:43 |
jbeich |
games/openbor: update to 4553
Changes: https://github.com/DCurrent/openbor/compare/dd8fde3...9b1c39b |
4550 30 Dec 2017 00:08:39 |
jbeich |
games/openbor: update to 4550
Changes: https://github.com/DCurrent/openbor/compare/21f884c...dd8fde3 |
4549 27 Dec 2017 14:15:00 |
jbeich |
games/openbor: don't report slaves as out of date |
4549 27 Dec 2017 14:14:40 |
jbeich |
games/openbor: update to 4549
Changes: https://github.com/DCurrent/openbor/compare/55b816d...21f884c |
4542 23 Oct 2017 23:06:55 |
jbeich |
games/openbor: update to 4542
Changes: https://github.com/DCurrent/openbor/compare/4539...55b816d |
4539 07 Oct 2017 17:55:57 |
jbeich |
games/openbor: update to 4539
Changes: https://github.com/DCurrent/openbor/compare/12fc70c...4539
MFH: 2017Q4 |
4515 11 Sep 2017 11:51:51 |
jbeich |
games/openbor: simplify initialization of sysctl values |
4515 13 Jun 2017 22:48:58 |
jbeich |
games/openbor: update to 4515
Changes: https://github.com/DCurrent/openbor/compare/c0037ec...12fc70c |
4505_1 10 May 2017 02:32:29 |
jbeich |
games/openbor: oops, make sure patch(1) doesn't confuse context |
4505 09 May 2017 21:51:46 |
jbeich |
games/openbor: update to 4505
Changes: https://github.com/DCurrent/openbor/commit/c0037ec |
4504 09 May 2017 21:21:41 |
jbeich |
games/openbor: drop no longer necessary crash workaround |
4504 09 May 2017 20:57:05 |
jbeich |
games/openbor: update to 3.0.r4504
- Add old slaves for some games (e.g. Ghosts'n Demons) based on
http://www.chronocrash.com/forum/index.php?topic=2360.0
- Annotate .desktop file with build version
- Drop v3.0 from package version
- s/module/game/ in pkg-message for less ambiguity
Changes: https://github.com/DCurrent/openbor/compare/ba1eb4f...4dfdb66 |
3.0.r4432 27 Apr 2017 22:01:38 |
jbeich |
games/openbor: document how to get svn revision |
3.0.r4432 16 Apr 2017 12:58:28 |
jbeich |
games/openbor: move to GitHub where new builds are
http://www.chronocrash.com/forum/index.php?topic=3344.0
MFH: 2017Q2 |
3.0.r4432 06 Feb 2017 12:56:58 |
jbeich |
games/openbor: update to 3.0.r4432
Changes: http://www.chronocrash.com/forum/index.php?topic=3178.0
Changes: svn log -r4432:4427 https://svn.code.sf.net/p/openbor/engine/engine/ |
3.0.r4426_2 05 Feb 2017 03:30:43 |
jbeich |
Prefer -std=gnu89 over -fgnu89-inline |
3.0.r4426_2 18 Jan 2017 13:20:32 |
tijl |
The output of tools like awk, date, sort, tr,... depends on the current
locale set by the user. Add LANG=C and LC_ALL=C at the beginning of
bsd.port.mk and export them so all commands are executed with the C locale.
LC_ALL=C overrides all other LC_* variables. LANG is used by setlocale(3)
as default value for LC_* variables, so normally it isn't used when LC_ALL
is set, but there's code out there that looks at LANG directly so it's safer
to set it as well. The only commands not captured by this are !=
assignments before any inclusion of bsd.port.*mk.
Introduce USE_LOCALE=<locale> that adds LANG=<locale> and LC_ALL=<locale> to
CONFIGURE_ENV and MAKE_ENV so upstream build systems can be executed with a
different locale (e.g. USE_LOCALE=en_US.UTF-8).
PR: 215882
Exp-run by: antoine
Approved by: portmgr (antoine) |
3.0.r4426_2 15 Jan 2017 11:48:10 |
jbeich |
games/openbor: oops, size_t > int on 64bit platforms |
3.0.r4426_1 15 Jan 2017 11:31:24 |
jbeich |
games/openbor: warnings
- With `make -s` only compiler warnings are allowed to break silence
- -Wno-unsued-result is no longer fatal after 9.x EOL
source/gamelib/packfile.c: In function 'packfile_music_read':
source/gamelib/packfile.c:1402:13: warning: 'memset' used with length equal to
number of elements without multiplication by element size [-Wmemset-elt-size]
memset(filelist[i].bgmTracks, 0, 256);
^~~~~~
source/scriptlib/Parser.c: In function 'Parser_Unary_expr':
source/scriptlib/Parser.c:1879:30: warning: may write a terminating nul past the
end of the destination [-Wformat-length=]
sprintf(buf, "-%s", pInstruction->theToken->theSource);
~~~^
source/scriptlib/Parser.c:1879:13: note: format output between 2 and 129 bytes
into a destination ofsize 128
sprintf(buf, "-%s", pInstruction->theToken->theSource); (Only the first 15 lines of the commit message are shown above ) |
3.0.r4426 03 Jan 2017 09:04:28 |
jbeich |
games/openbor: fix typos in pkg-descr after r430427 |
3.0.r4426 03 Jan 2017 00:51:45 |
jbeich |
games/openbor: update description
Obtained from: https://sourceforge.net/projects/openbor/ |
3.0.r4426 31 Dec 2016 16:05:42 |
jbeich |
games/openbor: update to 3.0.r4426
Changes: http://www.chronocrash.com/forum/index.php?topic=3178.0
Changes: svn log -r4426:4421 https://svn.code.sf.net/p/openbor/engine/engine/ |
3.0.r4420_3 28 Dec 2016 05:36:58 |
jbeich |
games/openbor: yet another buffer overflow fix |
3.0.r4420_2 26 Dec 2016 05:39:55 |
jbeich |
games/openbor: skip non-existing bor.pak |
3.0.r4420_1 26 Dec 2016 05:39:42 |
jbeich |
games/openbor: allow to disable HOME hack
Add an environment variable for vendor behavior as unpacked data/
doesn't work with more than one (game) module. Some even mix non-stub
.pak file with data/ which makes re-packing them tricky. |
3.0.r4420 25 Dec 2016 08:31:51 |
jbeich |
Mark simplified MIT as ISCL |
3.0.r4420 25 Dec 2016 00:23:13 |
jbeich |
Simplify spelling for softfp defaults |
3.0.r4420 24 Dec 2016 02:31:16 |
jbeich |
devel/libopenbsd, games/openbor: unbreak BOOTSTRAP build
$ make clean all BOOTSTRAP= -C devel/libopenbsd
===> Cleaning for libopenbsd-r298107
===> License ISCL accepted by the user
===> libopenbsd-r298107 depends on file: /usr/local/sbin/pkg - found
===> libopenbsd-r298107 depends on executable: svn - found
/bin/mkdir -p /usr/ports/devel/libopenbsd/work
svn export -r298107 https://svn.freebsd.org/base/head/lib/libopenbsd/
/usr/ports/devel/libopenbsd/work/libopenbsd-r298107
A work/libopenbsd-r298107
A work/libopenbsd-r298107/sys
A work/libopenbsd-r298107/Makefile
A work/libopenbsd-r298107/imsg.c
A work/libopenbsd-r298107/sys/sysctl.h
A work/libopenbsd-r298107/getdtablecount.c (Only the first 15 lines of the commit message are shown above ) |
3.0.r4420 24 Dec 2016 00:46:35 |
jbeich |
games/openbor: fix bogus but unused substitution
--- version.sh.bak 2016-11-05 19:01:19 UTC
+++ version.sh
@@ -27,7 +27,7 @@ fi
}
# Support the Bazaar VCS as an alternative to SVN through the bzr-svn plugin
-function get_revnum {
+VERSION_BUILD=4420() {
if test -d "../.svn" || test -d "./.svn"; then
VERSION_BUILD=`svn info | grep "Last Changed Rev" | sed s/Last\ Changed\
Rev:\ //g`
elif test -d ".bzr"; then |
3.0.r4420 24 Dec 2016 00:37:20 |
jbeich |
games/openbor: add missing licenses |
3.0.r4420 24 Dec 2016 00:06:00 |
jbeich |
games/openbor: unbreak on DragonFly after r428004
In file included from source/webmlib/halloc/halloc.c:20:0:
source/webmlib/halloc/align.h:42:25: error: conflicting types for 'max_align_t'
typedef union max_align max_align_t;
^
In file included from source/webmlib/halloc/halloc.h:18:0,
from source/webmlib/halloc/halloc.c:19:
/usr/include/stddef.h:74:3: note: previous declaration of 'max_align_t' was here
} max_align_t;
^ |
3.0.r4420 23 Dec 2016 04:42:12 |
jbeich |
games/openbor: update to 3.0.r4420
Changes: http://www.chronocrash.com/forum/index.php?topic=3178.0
Changes: svn log -r4420:4419 https://svn.code.sf.net/p/openbor/engine/engine/ |
3.0.r4419 22 Dec 2016 15:30:05 |
jbeich |
games/openbor: update to 3.0.r4419
Changes: http://www.chronocrash.com/forum/index.php?topic=3178.0
Changes: svn log -r4419:4416 https://svn.code.sf.net/p/openbor/engine/engine/ |
3.0.r4417 21 Dec 2016 05:21:02 |
jbeich |
games/openbor: drop extra category from r428686
This port doesn't install tools to develop games. |
3.0.r4417 21 Dec 2016 00:53:20 |
jbeich |
games/openbor: update to 3.0.r4417
Changes: http://www.chronocrash.com/forum/index.php?topic=3178.0 |
3.0.r4416 20 Dec 2016 15:19:11 |
jbeich |
games/openbor: update to 3.0.r4416
Changes: http://www.chronocrash.com/forum/index.php?topic=3178.0 |
3.0.r4415_2 20 Dec 2016 02:30:58 |
jbeich |
games/openbor: remove svn:eol-style
Subversion insistence on screwing up EOL markers turns patch
maintenance here into misery as USES=dos2unix breaks |make makepatch|. |
3.0.r4415_2 20 Dec 2016 02:22:08 |
jbeich |
games/openbor: unbreak patching (try#2) |
3.0.r4415_2 20 Dec 2016 02:01:06 |
jbeich |
games/openbor: unbreak patching |
3.0.r4415_2 20 Dec 2016 01:52:00 |
jbeich |
games/openbor: fix off-by-one noticed by gcc6
openbor.c: In function 'common_dot':
openbor.c:20485:39: warning: iteration 10 invokes undefined behavior
[-Waggressive-loop-optimizations]
iDot_time = self->dot_time[iIndex]; //Get expire time.
~~~~~~~~~~~~~~^~~~~~~~
openbor.c:20483:5: note: within this loop
for(iIndex = 0; iIndex <= MAX_DOTS; iIndex++) //Loop through all DOT
indexes.
^~~ |
3.0.r4415_1 20 Dec 2016 01:15:58 |
jbeich |
games/openbor: fix inline warnings
In file included from source/scriptlib/Interpreter.c:9:
In file included from ./openborscript.h:12:
In file included from source/scriptlib/Interpreter.h:12:
In file included from source/scriptlib/StackedSymbolTable.h:12:
In file included from source/scriptlib/SymbolTable.h:11:
source/scriptlib/ScriptVariant.h:66:23: warning: inline function
'ScriptVariant_Xor' is not defined
[-Wundefined-inline]
inline ScriptVariant *ScriptVariant_Xor( ScriptVariant *svar, ScriptVariant
*rightChild );
^
source/scriptlib/Interpreter.c:1090:22: note: used here
BINARYOP(ScriptVariant_Xor);
^ |
3.0.r4415 19 Dec 2016 21:54:26 |
jbeich |
games/openbor: update to 3.0.r4415
- Pacify -fsanitize=address a bit since previous update
- Drop pointless USES=dos2unix
Changes: svn log -r4415:r4391 https://svn.code.sf.net/p/openbor/engine/engine/ |
3.0.r4390 16 Dec 2016 16:21:59 |
jbeich |
List in more categories |
3.0.r4390 14 Dec 2016 15:39:30 |
jbeich |
Add missing comments for -Wl,--as-needed in my ports |
3.0.r4390 06 Dec 2016 22:54:15 |
jbeich |
games/openbor: update to 3.0.r4390
Changes: svn log -r4390:4236 https://svn.code.sf.net/p/openbor/engine/engine/ |
3.0.r4235 27 Oct 2016 08:02:00 |
jbeich |
games/openbor: update to 3.0.r4235
Changes: svn log -r4235:4168 https://svn.code.sf.net/p/openbor/engine/engine/ |
3.0.r4167_1 30 Sep 2016 01:15:11 |
jbeich |
multimedia/libvpx: update 1.6.0
ABI is incompatible... or not? SONAME has changed but the removed vp10
symbols weren't actually exposed (and still aren't).
Note, FreeBSD 9.x now builds with Clang 3.4 because GCC 4.2 fails:
vp9/encoder/x86/vp9_frame_scale_ssse3.c: In function 'eight_tap_row_ssse3':
vp9/encoder/x86/vp9_frame_scale_ssse3.c:93: internal compiler error: in
simplify_binary_operation_1, at simplify-rtx.c:2563
Please submit a full bug report,
with preprocessed source if appropriate.
See <URL:http://gcc.gnu.org/bugs.html> for instructions.
Changes: https://chromium.googlesource.com/webm/libvpx/+log/v1.5.0..v1.6.0
ACC
report: https://people.freebsd.org/~jbeich/compat_reports/libvpx/1.5.0_to_1.6.0/compat_report.html |
3.0.r4167 20 Jul 2016 15:33:20 |
mat |
Cleanup $() variables in ports Makefiles.
Mostly replace with ${}, but sometime, replace with $$() because it is
what was intended in the first place. (I think.)
Sponsored by: Absolight |
3.0.r4167 16 Mar 2016 12:58:17 |
jbeich |
Drop default directory from _DEPENDS in my ports
https://lists.freebsd.org/pipermail/freebsd-ports/2015-October/100794.html |
3.0.r4167 22 Feb 2016 14:20:20 |
jbeich |
games/openbor: update to 3.0.r4167
ChangeLog:
- New entity properties using the . delimited syntax concept for CronoCrash
engine.
- Player specific credit count was not be carried across saved games.
- Very minor refactor in ImportCache |
3.0.r4163_3 14 Nov 2015 19:34:13 |
jbeich |
multimedia/libvpx: update 1.5.0
ABI isn't compatible, so bump PORTREVISION in consumers.
Changes: https://chromium.googlesource.com/webm/libvpx/+log/e67d45d..v1.5.0
ACC
report: https://people.freebsd.org/~jbeich/compat_reports/libvpx/1.4.0.488_1_to_1.5.0/compat_report.html
PR: 204478
Exp-run by: antoine
Approved by: ashish (maintainer) |
3.0.r4163_2 26 Aug 2015 21:33:20 |
jbeich |
devel/ponscripter-sekai, games/openbor: add TREMOR option
TREMOR is enabled by default on platforms without hardware floating point. |
3.0.r4163_1 26 Aug 2015 21:33:05 |
jbeich |
games/openbor: convert MMX into an option |
3.0.r4163_1 25 Aug 2015 07:10:32 |
jbeich |
games/openbor: unbreak on non-x86 architectures
ib/2xSaI.c -o source/gfxlib/2xSaI.o
source/gfxlib/2xSaI.c:50:11: error: invalid output constraint '=d' in asm
: "=d"(retval)
^
1 error generated.
Reported by: pkg-fallout (armv6) |
3.0.r4163_1 09 Jun 2015 14:25:42 |
jbeich |
multimedia/libvpx: update to 1.4.0
ABI isn't compatible, so bump PORTREVISION in consumers.
Changes: https://chromium.googlesource.com/webm/libvpx/+/v1.4.0
Differential Revision: https://reviews.freebsd.org/D2570
Exp-run by: antoine
Approved by: ashish, multimedia (kwm)
Approved by: maintainer timeout (ale, dinoex; 2 weeks) |
3.0.r4163 06 Jun 2015 12:12:14 |
jbeich |
games/openbor: update to r4163 snapshot
ChangeLog (trimmed):
- Nuke savedata.screen
- Use safe allocation functions for memory allocations |
3.0.r4157 25 Apr 2015 14:17:26 |
jbeich |
- Update to r4157 snapshot
- Normalize patch filenames
ChangeLog (trimmed):
- Fix openborvariant("in_sound_options")
- Major refactor of WebM playback code
- Support playback of WebM videos with no audio track
- Support screenshots and fullscreen flip during WebM playback
- Fix aspect ratio of WebM videos in OpenGL mode
- Fix nestegg bug where all floats would be read as 0.0 on big-endian
- Avoid displaying garbage as first frame of video
- Improve WebM error logging |
3.0.r4138 20 Apr 2015 14:02:04 |
jbeich |
Apply r379037 instead of trying to use C11's max_align_t
While here use my own comment within the file in order to:
- Avoid $FreeBSD$ keywords in patches (per Porter's Handbook)
- Improve rationale
Suggested by: marino |
3.0.r4138 20 Apr 2015 09:25:52 |
jbeich |
Unbreak build with gcc5 (and clang in future)
In file included from source/webmlib/halloc/halloc.c:19:0:
source/webmlib/halloc/align.h:42:25: error: conflicting types for 'max_align_t'
typedef union max_align max_align_t;
^
In file included from source/webmlib/halloc/halloc.h:18:0,
from source/webmlib/halloc/halloc.c:18:
/usr/local/lib/gcc5/gcc/x86_64-portbld-freebsd11.0/5.0.1/include/stddef.h:429:3:
note: previous declaration of 'max_align_t' was here
} max_align_t;
^
Reported by: DPorts |
3.0.r4138 13 Apr 2015 13:43:48 |
jbeich |
Add new port games/openbor
PR: 196657
Reviewed by: games (danfe, partial of earlier version)
Approved by: bapt (mentor, earlier version)
OpenBOR is a continuation of the Beats Of Rage 2D game engine, which
was originally created by Senile Team.
WWW: http://www.chronocrash.com |