- Fix breakage from conversion to new options framework - Clean up slave feature triggers - New style Makefile headers Fix: Patch attached with submission follows: How-To-Repeat: Currently all ioquak3 and slave ports are marked IGNORE due to wrong options.
Responsible Changed From-To: freebsd-ports-bugs->miwi I'll take it.
Attached is an updated patchset. The patch removes files, take heed when applying! Infrastructure changes: - Switch to using PLIST_FILES instead of a pkg-plist files - Unify the generation of the do-install target and PLIST_FILES - Include more documentation ioquake3-devel* and iourbanterror* changes: - Sources are updated from SVN revision 2318 to GIT revision 2178 - Switch to .xz packaged sources (smaller distfiles) - Introduce OPUS support - Introduce OpenGL2 support urbanterror-data: - Update from 4.1.1 to 4.2.014, contributed by Zhihao Yuan <lichray@gmail.com> -- A: Because it fouls the order in which people normally read text. Q: Why is top-posting such a bad thing? A: Top-posting. Q: What is the most annoying thing on usenet and in e-mail?
The attached adds new files introduced in conjunction with the previously mailed patch.
Can I speed this up by providing tinderbox logs? Regards Kami -- A: Because it fouls the order in which people normally read text. Q: Why is top-posting such a bad thing? A: Top-posting. Q: What is the most annoying thing on usenet and in e-mail?
Just wondering if there is a problem with this PR / patch. I've been waiting on it being approved for a while now and it seems to be in a state of limbo :[ BTW, I'm an IOQuake3 user, not the maintainer. -Tig
Responsible Changed From-To: miwi->marino I'll over-take it.
State Changed From-To: open->closed Committed with minor changes. The revision is 325812. Unfortunately due to a typo I referenced the wrong PR and it didn't get posted here.
Author: marino Date: Sat Aug 31 17:25:08 2013 New Revision: 325818 URL: http://svnweb.freebsd.org/changeset/ports/325818 Log: games/iourbanterror: Fix new patches Something went with shar extraction. One new patch came out wrong and the other wasn't created. Let's put them right now. PR: ports/180576 Reported by: Domininic Fandrey (maintainer) Added: head/games/iourbanterror/files/patch-code-qcommon-vm_x86.c (contents, props changed) Modified: head/games/iourbanterror/files/patch-code-qcommon-vm_interpreted.c Modified: head/games/iourbanterror/files/patch-code-qcommon-vm_interpreted.c ============================================================================== --- head/games/iourbanterror/files/patch-code-qcommon-vm_interpreted.c Sat Aug 31 17:21:40 2013 (r325817) +++ head/games/iourbanterror/files/patch-code-qcommon-vm_interpreted.c Sat Aug 31 17:25:08 2013 (r325818) @@ -1,7 +1,6 @@ -diff -r de1eebcbab05 code/qcommon/vm_interpreted.c ---- code/qcommon/vm_interpreted.c Mon Jul 15 20:43:44 2013 +0200 -+++ code/qcommon/vm_interpreted.c Tue Jul 23 10:41:47 2013 +0200 -@@ -436,21 +436,21 @@ +--- code/qcommon/vm_interpreted.c.orig 2013-07-15 18:54:41.000000000 +0000 ++++ code/qcommon/vm_interpreted.c +@@ -436,21 +436,21 @@ nextInstruction2: return 0; } #endif @@ -27,7 +26,7 @@ diff -r de1eebcbab05 code/qcommon/vm_int opStackOfs -= 2; goto nextInstruction; case OP_STORE1: -@@ -460,7 +460,7 @@ +@@ -460,7 +460,7 @@ nextInstruction2: case OP_ARG: // single byte offset from programStack @@ -36,47 +35,3 @@ diff -r de1eebcbab05 code/qcommon/vm_int opStackOfs--; programCounter += 1; goto nextInstruction; -a05650c847d3648d03593516ce310db4 -echo x - games/iourbanterror/files/patch-code-qcommon-vm_x86.c -sed 's/^X//' >games/iourbanterror/files/patch-code-qcommon-vm_x86.c << 'b99229479f1b9014d0f8028a3c1f2c41' -diff -r de1eebcbab05 code/qcommon/vm_x86.c ---- code/qcommon/vm_x86.c Mon Jul 15 20:43:44 2013 +0200 -+++ code/qcommon/vm_x86.c Tue Jul 23 10:41:43 2013 +0200 -@@ -783,7 +783,7 @@ - return qtrue; - - case OP_STORE4: -- EmitMovEAXStack(vm, (vm->dataMask & ~3)); -+ EmitMovEAXStack(vm, vm->dataMask); - #if idx64 - EmitRexString(0x41, "C7 04 01"); // mov dword ptr [r9 + eax], 0x12345678 - Emit4(Constant4()); -@@ -798,7 +798,7 @@ - return qtrue; - - case OP_STORE2: -- EmitMovEAXStack(vm, (vm->dataMask & ~1)); -+ EmitMovEAXStack(vm, vm->dataMask); - #if idx64 - Emit1(0x66); // mov word ptr [r9 + eax], 0x1234 - EmitRexString(0x41, "C7 04 01"); -@@ -1369,7 +1369,7 @@ - case OP_STORE4: - EmitMovEAXStack(vm, 0); - EmitString("8B 54 9F FC"); // mov edx, dword ptr -4[edi + ebx * 4] -- MASK_REG("E2", vm->dataMask & ~3); // and edx, 0x12345678 -+ MASK_REG("E2", vm->dataMask); // and edx, 0x12345678 - #if idx64 - EmitRexString(0x41, "89 04 11"); // mov dword ptr [r9 + edx], eax - #else -@@ -1381,7 +1381,7 @@ - case OP_STORE2: - EmitMovEAXStack(vm, 0); - EmitString("8B 54 9F FC"); // mov edx, dword ptr -4[edi + ebx * 4] -- MASK_REG("E2", vm->dataMask & ~1); // and edx, 0x12345678 -+ MASK_REG("E2", vm->dataMask); // and edx, 0x12345678 - #if idx64 - Emit1(0x66); // mov word ptr [r9 + edx], eax - EmitRexString(0x41, "89 04 11"); -b99229479f1b9014d0f8028a3c1f2c41 -exit Added: head/games/iourbanterror/files/patch-code-qcommon-vm_x86.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/games/iourbanterror/files/patch-code-qcommon-vm_x86.c Sat Aug 31 17:25:08 2013 (r325818) @@ -0,0 +1,38 @@ +--- code/qcommon/vm_x86.c.orig 2013-07-15 18:54:41.000000000 +0000 ++++ code/qcommon/vm_x86.c +@@ -783,7 +783,7 @@ qboolean ConstOptimize(vm_t *vm, int cal + return qtrue; + + case OP_STORE4: +- EmitMovEAXStack(vm, (vm->dataMask & ~3)); ++ EmitMovEAXStack(vm, vm->dataMask); + #if idx64 + EmitRexString(0x41, "C7 04 01"); // mov dword ptr [r9 + eax], 0x12345678 + Emit4(Constant4()); +@@ -798,7 +798,7 @@ qboolean ConstOptimize(vm_t *vm, int cal + return qtrue; + + case OP_STORE2: +- EmitMovEAXStack(vm, (vm->dataMask & ~1)); ++ EmitMovEAXStack(vm, vm->dataMask); + #if idx64 + Emit1(0x66); // mov word ptr [r9 + eax], 0x1234 + EmitRexString(0x41, "C7 04 01"); +@@ -1369,7 +1369,7 @@ void VM_Compile(vm_t *vm, vmHeader_t *he + case OP_STORE4: + EmitMovEAXStack(vm, 0); + EmitString("8B 54 9F FC"); // mov edx, dword ptr -4[edi + ebx * 4] +- MASK_REG("E2", vm->dataMask & ~3); // and edx, 0x12345678 ++ MASK_REG("E2", vm->dataMask); // and edx, 0x12345678 + #if idx64 + EmitRexString(0x41, "89 04 11"); // mov dword ptr [r9 + edx], eax + #else +@@ -1381,7 +1381,7 @@ void VM_Compile(vm_t *vm, vmHeader_t *he + case OP_STORE2: + EmitMovEAXStack(vm, 0); + EmitString("8B 54 9F FC"); // mov edx, dword ptr -4[edi + ebx * 4] +- MASK_REG("E2", vm->dataMask & ~1); // and edx, 0x12345678 ++ MASK_REG("E2", vm->dataMask); // and edx, 0x12345678 + #if idx64 + Emit1(0x66); // mov word ptr [r9 + edx], eax + EmitRexString(0x41, "89 04 11"); _______________________________________________ svn-ports-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/svn-ports-all To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org"