non port: games/openbor/Makefile |
SVNWeb
|
Number of commits found: 142 (showing only 42 on this page) |
Sun, 16 Apr 2017
|
[ 12:58 jbeich ]
games/openbor: move to GitHub where new builds are
http://www.chronocrash.com/forum/index.php?topic=3344.0
MFH: 2017Q2
|
Mon, 6 Feb 2017
|
[ 12:56 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/
|
Sun, 5 Feb 2017
|
[ 03:30 jbeich ]
Prefer -std=gnu89 over -fgnu89-inline
|
Wed, 18 Jan 2017
|
[ 13:20 tijl ] (Only the first 10 of 120 ports in this commit are shown above. )
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)
|
Sun, 15 Jan 2017
|
[ 11:48 jbeich ]
games/openbor: oops, size_t > int on 64bit platforms
|
[ 11:31 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 )
|
Sat, 31 Dec 2016
|
[ 16:05 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/
|
Wed, 28 Dec 2016
|
[ 05:36 jbeich ]
games/openbor: yet another buffer overflow fix
|
Mon, 26 Dec 2016
|
[ 05:39 jbeich ]
games/openbor: skip non-existing bor.pak
|
[ 05:39 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.
|
Sun, 25 Dec 2016
|
[ 08:31 jbeich ]
Mark simplified MIT as ISCL
|
[ 00:23 jbeich ]
Simplify spelling for softfp defaults
|
Sat, 24 Dec 2016
|
[ 02:31 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 )
|
[ 00:46 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
|
[ 00:37 jbeich ]
games/openbor: add missing licenses
|
[ 00:06 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;
^
|
Fri, 23 Dec 2016
|
[ 04:42 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/
|
Thu, 22 Dec 2016
|
[ 15:30 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/
|
Wed, 21 Dec 2016
|
[ 05:21 jbeich ]
games/openbor: drop extra category from r428686
This port doesn't install tools to develop games.
|
[ 00:53 jbeich ]
games/openbor: update to 3.0.r4417
Changes: http://www.chronocrash.com/forum/index.php?topic=3178.0
|
Tue, 20 Dec 2016
|
[ 15:19 jbeich ]
games/openbor: update to 3.0.r4416
Changes: http://www.chronocrash.com/forum/index.php?topic=3178.0
|
[ 02:30 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|.
|
[ 02:22 jbeich ]
games/openbor: unbreak patching (try#2)
|
[ 01:52 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.
^~~
|
[ 01:15 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);
^
|
Mon, 19 Dec 2016
|
[ 21:54 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/
|
Fri, 16 Dec 2016
|
[ 16:21 jbeich ]
List in more categories
|
Wed, 14 Dec 2016
|
[ 15:39 jbeich ]
Add missing comments for -Wl,--as-needed in my ports
|
Tue, 6 Dec 2016
|
[ 22:54 jbeich ]
games/openbor: update to 3.0.r4390
Changes: svn log -r4390:4236 https://svn.code.sf.net/p/openbor/engine/engine/
|
Thu, 27 Oct 2016
|
[ 08:02 jbeich ]
games/openbor: update to 3.0.r4235
Changes: svn log -r4235:4168 https://svn.code.sf.net/p/openbor/engine/engine/
|
Fri, 30 Sep 2016
|
[ 01:15 jbeich ] (Only the first 10 of 34 ports in this commit are shown above. )
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
|
Wed, 20 Jul 2016
|
[ 15:33 mat ] (Only the first 10 of 67 ports in this commit are shown above. )
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
|
Wed, 16 Mar 2016
|
[ 12:58 jbeich ] (Only the first 10 of 30 ports in this commit are shown above. )
Drop default directory from _DEPENDS in my ports
https://lists.freebsd.org/pipermail/freebsd-ports/2015-October/100794.html
|
Mon, 22 Feb 2016
|
[ 14: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
|
Sat, 14 Nov 2015
|
[ 19:34 jbeich ] (Only the first 10 of 35 ports in this commit are shown above. )
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)
|
Wed, 26 Aug 2015
|
[ 21:33 jbeich ]
devel/ponscripter-sekai, games/openbor: add TREMOR option
TREMOR is enabled by default on platforms without hardware floating point.
|
[ 21:33 jbeich ]
games/openbor: convert MMX into an option
|
Tue, 25 Aug 2015
|
[ 07:10 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)
|
Tue, 9 Jun 2015
|
[ 14:25 jbeich ] (Only the first 10 of 42 ports in this commit are shown above. )
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)
|
Sat, 6 Jun 2015
|
[ 12:12 jbeich ]
games/openbor: update to r4163 snapshot
ChangeLog (trimmed):
- Nuke savedata.screen
- Use safe allocation functions for memory allocations
|
Sat, 25 Apr 2015
|
[ 14:17 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
|
Mon, 13 Apr 2015
|
[ 13:43 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
|
Number of commits found: 142 (showing only 42 on this page) |