aboutsummaryrefslogtreecommitdiffstats
path: root/games
Commit message (Collapse)AuthorAgeFilesLines
* multimedia/libvpx: update 1.7.0jbeich2018-01-263-1/+3
| | | | | Changes: https://chromium.googlesource.com/webm/libvpx/+log/v1.6.1..v1.7.0 ABI: https://abi-laboratory.pro/tracker/timeline/libvpx/
* OpenDungeons is an open source, real time strategy game sharing game elementspawel2018-01-266-0/+1048
| | | | | | | | | with the Dungeon Keeper series and Evil Genius. Players build an underground dungeon which is inhabited by creatures. Players fight each other for control of the underground by indirectly commanding their creatures, directly casting spells in combat, and luring enemies into sinister traps. WWW: https://opendungeons.github.io/
* Make portlint happier with my ports (reorder variables)martymac2018-01-257-18/+20
|
* games/openbor: update to 4569jbeich2018-01-252-5/+5
| | | | Changes: https://github.com/DCurrent/openbor/compare/5dd6f84...347fd9b
* update games/wtf to 20180117 snapshot from NetBSDlifanov2018-01-232-4/+4
| | | | This fixes "wtf is" invocation to translate "IS" acronym.
* games/bomns: unbreak build with Clang 6 (C++14 by default)jbeich2018-01-211-0/+1
| | | | | | | | | | | | | | | | | | | src/bomns.cpp:565:22: error: non-constant-expression cannot be narrowed from type 'int' to 'Sint16' (aka 'short') in initializer list [-Wc++11-narrowing] SDL_Rect rcDest = {nX, nY, 15, 20}; ^~ src/bomns.cpp:565:22: note: insert an explicit cast to silence this issue SDL_Rect rcDest = {nX, nY, 15, 20}; ^~ static_cast<Sint16>( ) src/bomns.cpp:565:26: error: non-constant-expression cannot be narrowed from type 'int' to 'Sint16' (aka 'short') in initializer list [-Wc++11-narrowing] SDL_Rect rcDest = {nX, nY, 15, 20}; ^~ src/bomns.cpp:565:26: note: insert an explicit cast to silence this issue SDL_Rect rcDest = {nX, nY, 15, 20}; ^~ static_cast<Sint16>( ) Reported by: pkg-fallout
* games/bombherman: unbreak build with Clang 6 (C++14 by default)jbeich2018-01-211-0/+1
| | | | | | | | | | | | | | | | | | | | | | | display/display.cpp:371:17: error: non-constant-expression cannot be narrowed from type 'Uint16' (aka 'unsigned short') to 'Sint16' (aka 'short') in initializer list [-Wc++11-narrowing] SDL_Rect r = { x, y, w, h }; ^ display/display.cpp:371:17: note: insert an explicit cast to silence this issue SDL_Rect r = { x, y, w, h }; ^ static_cast<Sint16>( ) display/display.cpp:391:48: error: invalid suffix on literal; C++11 requires a space between literal and identifier [-Wreserved-user-defined-literal] TTF_Font * fontTitle = TTF_OpenFont(DATADIR"/"FONT_FILE, (height / fSize)); ^ display/display.cpp:560:5: error: non-constant-expression cannot be narrowed from type 'unsigned int' to 'Sint16' (aka 'short') in initializer list [-Wc++11-narrowing] ( ( dh.w - sSize ) / dp.w ) + ( i * dh.x ), ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ display/display.cpp:583:6: error: non-constant-expression cannot be narrowed from type 'int' to 'Uint16' (aka 'unsigned short') in initializer list [-Wc++11-narrowing] wText, ^~~~~ [...] Reported by: pkg-fallout
* games/battletanks: unbreak build with Clang 6 (C++14 by default)jbeich2018-01-211-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | In file included from engine/net/scanner.cpp:1: In file included from engine/src/config.h:33: In file included from ./mrt/xml.h:23: /usr/include/c++/v1/map:629:15: error: object of type 'std::__1::pair<const mrt::Socket::addr, Scanner::Host>' cannot be assigned because its copy assignment operator is implicitly deleted {__nc = __v.__cc; return *this;} ^ /usr/include/c++/v1/__tree:1645:35: note: in instantiation of member function 'std::__1::__value_type<const mrt::Socket::addr, Scanner::Host>::operator=' requested here __cache->__value_ = *__first; ^ /usr/include/c++/v1/__tree:1575:9: note: in instantiation of function template specialization 'std::__1::__tree<std::__1::__value_type<const mrt::Socket::addr, Scanner::Host>, std::__1::__map_value_compare<const mrt::Socket::addr, std::__1::__value_type<const mrt::Socket::addr, Scanner::Host>, std::__1::less<const mrt::Socket::addr>, true>, std::__1::allocator<std::__1::__value_type<const mrt::Socket::addr, Scanner::Host> > >::__assign_multi<std::__1::__tree_const_iterator<std::__1::__value_type<const mrt::Socket::addr, Scanner::Host>, std::__1::__tree_node<std::__1::__value_type<const mrt::Socket::addr, Scanner::Host>, void *> *, long> >' requested here __assign_multi(__t.begin(), __t.end()); ^ /usr/include/c++/v1/map:912:21: note: in instantiation of member function 'std::__1::__tree<std::__1::__value_type<const mrt::Socket::addr, Scanner::Host>, std::__1::__map_value_compare<const mrt::Socket::addr, std::__1::__value_type<const mrt::Socket::addr, Scanner::Host>, std::__1::less<const mrt::Socket::addr>, true>, std::__1::allocator<std::__1::__value_type<const mrt::Socket::addr, Scanner::Host> > >::operator=' requested here __tree_ = __m.__tree_; ^ engine/net/scanner.cpp:256:8: note: in instantiation of member function 'std::__1::map<const mrt::Socket::addr, Scanner::Host, std::__1::less<const mrt::Socket::addr>, std::__1::allocator<std::__1::pair<const mrt::Socket::addr, Scanner::Host> > >::operator=' requested here hosts = _hosts; ^ /usr/include/c++/v1/utility:325:5: note: copy assignment operator is implicitly deleted because 'pair<const mrt::Socket::addr, Scanner::Host>' has a user-declared move constructor pair(pair&&) = default; ^ Reported by: pkg-fallout
* games/bastet: unbreak build with Clang 6 (C++14 by default)jbeich2018-01-211-0/+49
| | | | | | | | Ui.cpp:174:18: error: non-constant-expression cannot be narrowed from type 'unsigned long' to 'int' in initializer list [-Wc++11-narrowing] return (Dot){maxlen+1,splits.size()}; ^~~~~~~~ Reported by: pkg-fallout
* games/avanor: unbreak build with Clang 6 (C++14 by default)jbeich2018-01-211-0/+19
| | | | | | | | | | | | creature/Uniquem.cpp:628:11: error: cannot initialize return object of type 'int' with an rvalue of type 'nullptr_t' return NULL; ^~~~ /usr/include/sys/_null.h:37:14: note: expanded from macro 'NULL' #define NULL nullptr ^~~~~~~ Reported by: pkg-fallout
* games/abuse_sdl: unbreak build with Clang 6 (C++14 by default)jbeich2018-01-212-0/+46
| | | | | | | | | | | | fileman.cpp:296:33: error: non-constant-expression cannot be narrowed from type 'unsigned long' to 'uint8_t' (aka 'unsigned char') in initializer list [-Wc++11-narrowing] uint8_t sizes[3]={ CLIENT_NFS,strlen(filename)+1,strlen(mode)+1}; ^~~~~~~~~~~~~~~~~~ hmi.cpp:302:97: error: non-constant-expression cannot be narrowed from type 'int' to 'uint8_t' (aka 'unsigned char') in initializer list [-Wc++11-narrowing] ...0x54, 0x68, 0x64, 0x00, 0x00, 0x00, 0x06, 0x00, 0x01, 0x00, (num_tracks + 1), 0x00, 0xC0 }; ^~~~~~~~~~~~~~~~ Reported by: pkg-fallout
* games/CaribbeanStud: unbreak build with Clang 6 (C++14 by default)jbeich2018-01-212-0/+78
| | | | | | | | | | | | | | | | | | | | In file included from Seat.cpp:37: ./Bitmaps.h:47:46: error: constant expression evaluates to 128 which cannot be narrowed to type 'char' [-Wc++11-narrowing] 0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x80, ^~~~ ./Bitmaps.h:47:46: note: insert an explicit cast to silence this issue 0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x80, ^~~~ static_cast<char>( ) Seat.cpp:256:18: error: no matching function for call to 'XCreateBitmapFromData' s_map[i] = XCreateBitmapFromData(_dpy, ^~~~~~~~~~~~~~~~~~~~~ /usr/local/include/X11/Xlib.h:1604:15: note: candidate function not viable: no known conversion from 'const unsigned char [2018]' to 'const char *' for 3rd argument extern Pixmap XCreateBitmapFromData( ^ Reported by: pkg-fallout
* - Add portscoutamdmi32018-01-201-0/+2
|
* There is no need to say "(optional)" about something that is an option.danfe2018-01-201-1/+1
| | | | Suggested by: mat
* Unbreak the port presumably everywhere by not trying to redefine GLintptrARBdanfe2018-01-192-4/+16
| | | | | and GLsizeiptrARB: they are already (correctly) defined in <GL/gl.h>. While here, set USE_GL to `gl' instead of old-school, umbrella `yes'.
* Revert inadvertent change that crept in the previous commit (r459416).danfe2018-01-191-1/+1
|
* - Remove BROKEN_sparc64 that was originally added in r239630 by linimon@danfe2018-01-191-11/+11
| | | | | 8.5 years ago for version 4.2.7; current version (4.9.1) installs fine - Correctly set FOO_RUN_DEPENDS knobs and add some readability linefeeds
* - Update netpaanzer to 0.8.7madpilot2018-01-198-46/+49
| | | | | | - Fix build with clang 6 - Convert to PLIST_FILES - Regenerate patches
* Allow to build on sparc64 and powerpc.danfe2018-01-191-1/+2
|
* Remove BROKEN, DEPRECATED and EXPIRATION_DATEsunpoet2018-01-181-3/+0
| | | | | | | This port builds fine in poudriere. This port depends on py-twisted and py-twistedCore has been removed from ports tree. MFH: 2018Q1
* devel/boost-*: update to 1.66.0jbeich2018-01-1837-33/+39
| | | | | | | Changes: http://www.boost.org/users/history/version_1_66_0.html PR: 223922 Exp-run by: antoine Differential Revision: https://reviews.freebsd.org/D13279
* update games/wtf to 20180113 snapshot from NetBSDlifanov2018-01-162-4/+4
|
* Update to 20171024 and switch to GHmartymac2018-01-163-29/+9
|
* games/diaspora: unbreak build with Clang 6 (C++14 by default)jbeich2018-01-162-1/+80
| | | | | | | - Don't use %%FOO%% in PLIST_FILES to avoid unnecessary substitution PR: 225187 Submitted by: lightside@gmx.com (maintainer)
* - Unbreak the build against new Clang version 6.0.0danfe2018-01-161-1/+3
| | | | | | - While here, adjust COMMENT: Hexen support is limited PR: 224989
* - Unbreak the build against new Clang version 6.0.0danfe2018-01-162-22/+66
| | | | | | | - Merge all Clang-related fixes into existing patch and regenerate it to get sane timestamps while I'm here PR: 224989
* games/atanks: update 5.9 -> 6.5pi2018-01-144-73/+90
| | | | | | | PR: 217455 Submitted by: amdmi3 Approved by: jessefrgsmith@yahoo.ca (maintainer) Relnotes: http://atanks.sourceforge.net/
* update games/wtf to 20180110 snapshot from NetBSDlifanov2018-01-132-4/+4
|
* Return kevlo's ports to the pool, he handed in his commit bit.rene2018-01-121-1/+1
| | | | With hat: portmgr-secretary
* - Fix dependency on ncurses and respect it properlyamdmi32018-01-122-0/+22
|
* Remove superfluous linefeeds and fix some other minor whitespace bugs.danfe2018-01-121-1/+1
|
* Do not abuse INSTALL_MAN when installing documentation, examples, anddanfe2018-01-114-5/+5
| | | | other miscellaneous files that are not actually manual pages (part 2).
* games/openbor: update to 4564jbeich2018-01-112-5/+5
| | | | Changes: https://github.com/DCurrent/openbor/compare/830e0a9...5dd6f84
* Do not abuse INSTALL_MAN when installing documentation, examples, anddanfe2018-01-102-2/+2
| | | | other miscellaneous files which are not actually manual pages.
* - Update to 14.1amdmi32018-01-092-4/+4
|
* Remove a few text occurrences of NOPORTDOCS.mat2018-01-091-1/+1
| | | | Sponsored by: Absolight
* Remove support for variables that have been deprecated for a while.mat2018-01-091-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | variables deprecation revision WITHOUT_NLS 2013-12-13 r336337 WITH_/WITHOUT_ 2014-02-24 r345870 NOPORT(DOC|EXAMPLE)S 2014-04-19 r351587 WITH_BDB_VER 2016-05-02 r414444 OVERRIDE_LINUX_BASE_PORT 2016-09-05 r421387 WITH_OPENSSL_(BASE|PORT) 2016-06-16 r416965 While there, add an ERROR variable that works like DEV_ERROR, but for user facing errors, and move NOPORTDOCS, NOPORTEXAMPLES and WITHOUT_NLS to it. Cleanup bsd.sanity.mk a bit. Fix fallout. PR: 224613 Submitted by: mat Exp-run by: antoine Sponsored by: Absolight Differential Revision: https://reviews.freebsd.org/D13490
* games/iortcw: Fix build with clang 6.0tobik2018-01-091-0/+54
| | | | | | | | | | | | | | | | | | | | | code/splines/util_str.cpp:477:11: error: reinterpret_cast from 'nullptr_t' to 'const char *' is not allowed idStr e( reinterpret_cast<const char *>( NULL ) ); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ code/splines/util_str.cpp:491:10: error: reinterpret_cast from 'nullptr_t' to 'const char *' is not allowed a = c + reinterpret_cast<const char *>( NULL ); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ code/splines/util_str.cpp:494:6: error: reinterpret_cast from 'nullptr_t' to 'const char *' is not allowed a = reinterpret_cast<const char *>( NULL ) + d; ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ code/splines/util_str.cpp:498:7: error: reinterpret_cast from 'nullptr_t' to 'const char *' is not allowed a += reinterpret_cast<const char *>( NULL ); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ PR: 224988 Reported by: jbeich
* update games/stonesoup to 0.21.0lifanov2018-01-092-5/+4
| | | | | | | | | | highlights: * New species: Gnolls * New god: Wu Jian Council * New spell: Borgnjor's Vile Clutch release announcement: https://crawl.develz.org/wordpress/crawl-0-21-gnoll-country-for-old-jian
* Bump PORTREVISION due upgrade of devel/boehm-gc to 7.6.2cpm2018-01-082-1/+2
| | | | Approved by: portmgr (antoine)
* Set LLD_UNSAFE=yes that the port will continue to link with ld.bfdkrion2018-01-086-0/+6
| | | | | | | | 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
* Fix slyle for LLD_UNSAFE.krion2018-01-081-1/+1
| | | | Reported by: jbeich
* Set LLD_UNSAFE=yes that the port will continue to link with ld.bfdkrion2018-01-086-0/+6
| | | | | | | | 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
* Set LLD_UNSAFE=yes that the port will continue to link with ld.bfdkrion2018-01-084-0/+4
| | | | | | | | 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
* Set LLD_UNSAFE=yes that the port will continue to link with ld.bfdkrion2018-01-084-0/+4
| | | | | | | | 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
* Set LLD_UNSAFE=yes that the port will continue to link with ld.bfdkrion2018-01-081-0/+1
| | | | | | | | 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
* games/bovo, fix build with clang6tcberner2018-01-081-1/+2
| | | | PR: 224945
* - Update to 4.14.1danilo2018-01-074-12/+26
|
* - Update to 2.0.3danilo2018-01-075-116/+947
|
* games/aquaria: unbreak with LLD by defaultjbeich2018-01-061-0/+1
| | | | | | | | | | | | | | | | | | | | | | Linking with LLD currently fails due to preemption of symbols with protected visibility in a shared object: /usr/bin/ld: error: cannot preempt symbol: alGetSourcei >>> defined in /usr/local/lib/libopenal.so >>> referenced by BBGE/FmodOpenALBridge.cpp >>> CMakeFiles/aquaria.dir/BBGE/FmodOpenALBridge.cpp.o:(OggDecoder::decode_loop(OggDecoder*)) /usr/bin/ld: error: cannot preempt symbol: alSourceUnqueueBuffers >>> defined in /usr/local/lib/libopenal.so >>> referenced by BBGE/FmodOpenALBridge.cpp >>> CMakeFiles/aquaria.dir/BBGE/FmodOpenALBridge.cpp.o:(OggDecoder::decode_loop(OggDecoder*)) [...] For now set LLD_UNSAFE=yes so that the port will continue to link with ld.bfd if /usr/bin/ld is lld, until the issue can be addressed (with a change in openal-soft or in lld). Reported by: antoine (via bug 214864)
* games/aquaria: unbreak build with Clang 6 (C++14 by default)jbeich2018-01-061-0/+15
| | | | | | | | Aquaria/ScriptInterface.cpp:10412:59: error: invalid suffix on literal; C++11 requires a space between literal and identifier [-Wreserved-user-defined-literal] #define MK_ALIAS(prefix, suffix, alias) {MK_STR(prefix)"_"MK_STR(alias), l_##prefix##_##suffix}, ^ Reported by: antoine (via bug 224669)
* Backport and adapt patch to fix `make install' with Qt 5.9:rakuco2018-01-061-0/+28
| | | | | | | | /usr/local/lib/qt5/bin/qmake -install qinstall /wrkdirs/usr/ports/games/tanglet/work/tanglet-1.4.0/translations/*.qm /wrkdirs/usr/ports/games/tanglet/work/stage/usr/local/share/tanglet/translations/*.qm Error: usage: [-exe] source target *** Error code 3 (ignored) PR: 224849
* Backport patch that fixes `make install' with Qt 5.9.rakuco2018-01-061-0/+28
| | | | | | | | /usr/local/lib/qt5/bin/qmake -install qinstall /wrkdirs/usr/ports/games/gottet/work/gottet-1.1.3/translations/*.qm /wrkdirs/usr/ports/games/gottet/work/stage/usr/local/share/gottet/translations/*.qm Error: usage: [-exe] source target *** Error code 3 (ignored) PR: 224849
* games/xqf: lift BROKEN_aarch64 per FreeBSD 11.0 EOLjbeich2018-01-051-2/+0
| | | | | | | | | | | | | Here's how the error message actually looked like: cc -O2 -pipe -fno-strict-aliasing -Wall -o xqf -Wl,-rpath,/usr/local/lib/xqf -Wl,--export-dynamic -Wl,--version-script=../src/xqf.map addmaster.o addserver.o config.o country-filter.o debug.o dialogs.o dns.o filter.o flt-player.o game.o history.o host.o launch.o menus.o pixmaps.o pref.o psearch.o rc.o rcon.o server.o skin.o skin_pcx.o sort.o source.o srv-info.o srv-list.o srv-prop.o stat.o statistics.o trayicon.o utils.o xqf.o xqf-ui.o xutils.o zipped.o redial.o q3maps.o utmaps.o loadpixmap.o splash.o scripts.o -lintl ../src/zip/libunzip.a ../src/tga/libtga.a -lGeoIP -L/usr/local/lib -lgtk-x11-2.0 -lgdk-x11-2.0 -lpangocairo-1.0 -latk-1.0 -lcairo -lpthread -lgio-2.0 -lpangoft2-1.0 -lpango-1.0 -lfontconfig -lfreetype -lgdk_pixbuf_xlib-2.0 -lgmodule-2.0 -pthread -lgdk_pixbuf-2.0 -lgobject-2.0 -lglib-2.0 -lintl -lz -L/usr/local/lib -lX11 /usr/bin/ld: xqf: local symbol `__progname' in /usr/lib/crt1.o is referenced by DSO /usr/bin/ld: final link failed: Bad value cc: error: linker command failed with exit code 1 (use -v to see invocation) Reported by: http://thunderx1.nyi.freebsd.org/data/110arm64-default/426002/logs/errors/xqf-1.0.5_9.log Pointy hat to: linimon (generic excerpt) Tested on: 11.1 (clang 4.0) and 12.0 (clang 6.0)
* - Pet portlintamdmi32018-01-042-2/+2
| | | | - Update WWW
* Cleanup Mk/Uses/gnome.mk.mat2018-01-031-1/+1
| | | | | | | | | | | | | | - Remove the use of comp_DETECT. - Remove all comp_DETECT variables. - Remove a use of comp_DETECT outside of gnome.mk - Remove py3gobject3. - Have ports depending directly on devel/py-gobject3 use gnome to do it. PR: 224618 Submitted by: mat Exp-run by: antoine Sponsored by: Absolight Differential Revision: https://reviews.freebsd.org/D13550
* - Update OpenTTD to version 1.7.2danfe2018-01-032-7/+6
| | | | | | - Move another icon under !dedicated-server clause TIMESTAMP (openttd-1.7.2-source.tar.xz) = 1514117460
* New USES=eigentcberner2018-01-031-2/+1
| | | | | | | | | | | | | | | | | | | | | | Usage: USES=eigen:<version>[,<type>] version: 2 or 3 (required) type: build (default), run For example: USES=eigen:2,build,run will add a BUILD- and RUN_DEPENDS on math/eigen2, and USES=eigen:3 will add a BUILD_DEPENDS on math/eigen3. * Convert the existing ports to use it - biology/iqtree: remove run time dependency (seemed not to be needed) - graphics/movit: remove run time dependency (seemed not to be needed) - science/avogadro: add run time dependeny (installed cmake file requires it to be present) Reviewed by: rakuco, mat Differential Revision: https://reviews.freebsd.org/D13702
* - Pet portlintamdmi32018-01-022-6/+6
| | | | - Update to 1.6.0
* - Update to 1.6.0amdmi32018-01-022-75/+77
|
* Fix up Makefiles for ports that used to fetch from www.sourcefiles.org.linimon2018-01-022-3/+9
| | | | | | | | | It is gone. While here, chase other mastersites, pet portlint, and set DEPRECATED for ports that do not fetch from alternative sites. Note: most of these ports are ancient and unmaintained.
* games/minecraft-server: Update to 1.12.2dbaio2018-01-022-4/+6
| | | | | | | While here, mark as architecture neutral. PR: 224792 Submitted by: Jonathan Price <freebsd@jonathanprice.org> (maintainer)
* Improve CMake style in my portsjbeich2018-01-011-11/+11
| | | | | | | - Convert to CMAKE_{ON,OFF} helpers - Convert to _CMAKE_BOOL option helpers - android-file-transfer: Share _CMAKE_BOOL via _IMPLIES - Annotate types
* games/openbor: update to 4559jbeich2018-01-012-5/+5
| | | | Changes: https://github.com/DCurrent/openbor/compare/9b1c39b...830e0a9
* Add patches to fix pokerth build with upcoming boost 1.66.madpilot2017-12-312-0/+30
| | | | | | | | This is a NOP with the current boost version. PR: 224123 Submitted by: jbeich@ Obtained from: https://github.com/pokerth/pokerth/issues/338
* games/openbor: update to 4553jbeich2017-12-312-5/+5
| | | | Changes: https://github.com/DCurrent/openbor/compare/dd8fde3...9b1c39b
* - Update to 2.1.2amdmi32017-12-313-7/+7
| | | | - Update WWW
* - Update to 1.3.5amdmi32017-12-312-6/+5
| | | | - Update WWW
* - Update to 1.2.4amdmi32017-12-312-7/+6
| | | | - Update WWW
* - Update to 1.1.2amdmi32017-12-312-7/+6
| | | | - Update WWW
* - Update games/oolite to 1.86madpilot2017-12-302-9/+6
| | | | | | | - Removed unneeded bsd.port.pre/post separation PR: 223389 Submitted by: lightside@gmx.com
* Fix WWWsunpoet2017-12-301-1/+1
| | | | Approved by: portmgr (blanket)
* games/openbor: update to 4550jbeich2017-12-302-5/+5
| | | | Changes: https://github.com/DCurrent/openbor/compare/21f884c...dd8fde3
* - Fix version to correspond to this port instead of ioquake3amdmi32017-12-291-3/+2
|
* - Update games/pokerth to 1.1.2madpilot2017-12-286-168/+160
| | | | | - Add missing dependencies reported by stage-qa - Sort plist
* update games/wtf to 20171222 snapshot from NetBSDlifanov2017-12-282-4/+4
|
* games/openbor: don't report slaves as out of datejbeich2017-12-271-0/+4
|
* games/openbor: update to 4549jbeich2017-12-272-5/+5
| | | | Changes: https://github.com/DCurrent/openbor/compare/55b816d...21f884c
* Deprecate ports broken for more than 6 monthsantoine2017-12-275-0/+10
|
* Disable the extra flag "-march=native" on arm to fix builds.linimon2017-12-272-4/+13
| | | | | Approved by: portmgr (tier-2 blanket) Obtained from: lonesome.com -exp run
* - Add NO_ARCHamdmi32017-12-261-2/+5
| | | | | | | - Style fixes - Switch to options helpers Approved by: portmgr blanket
* games/ags: Update to 3.4.1.11tobik2017-12-253-15/+4
| | | | Changes: https://github.com/adventuregamestudio/ags/releases/tag/v.3.4.1.11
* - Resurrect games/jumpnbump, update to 1.60amdmi32017-12-256-0/+97
|
* Remove games/jumpnbump in order to re-add it preserving historyamdmi32017-12-256-97/+0
|
* Convert to USES=autoreconf.tijl2017-12-241-10/+5
|
* Convert to USES=autoreconf.tijl2017-12-241-7/+1
|
* - Switch to USES=localbaseamdmi32017-12-247-17/+17
| | | | | | | - Regenerate patches - Update WWW Approved by: portmgr blanket
* Convert to USES=autoreconf.tijl2017-12-242-30/+2
|
* This is a game for the whole family. You play cute fluffy littleamdmi32017-12-237-0/+98
| | | | | | | | | | | | | | | bunnies and hop on each other's heads. At the beginning you are in the menu, where you have to let each active player jump over the tree trunk to enter the play area, and then walk to the right. You will then enter the arena. The aim is to jump on the other bunnies' heads... Jump 'n Bump was originally a DOS game by Brainchild Design, which was open sourced under the GPL license and ported to SDL, and then SDL2. WWW: https://gitlab.com/LibreGames/jumpnbump
* - Update games/corsix-to to 0.61madpilot2017-12-226-35/+24
| | | | | - Move information about requiring originaal game data files to pkg-message where it belongs.
* Try to bring some consistency to ports that have x86-specific pieces.linimon2017-12-211-2/+7
| | | | | | | | | | | | | | - in general, if we think that the code is not architecture-specific, and instead just enables x86 assembler by default, those should use BROKEN rather than IGNORE. This will allow them to be attempted with TRYBROKEN. - spell i386 as x86. - spell asm as assembler. - pet portlint. These changes should have no effect on tier-1 builds. Approved by: portmgr (tier-2 blanket)
* Use the modern spellings of 'arm' to attempt to build these on the cluster.linimon2017-12-211-1/+1
| | | | Approved by: portmgr (tier-2 blanket)
* Unbreak unnethackknu2017-12-213-1/+30
| | | | | Submitted by: adridg Differential Revision: D13553
* Cross-builds under qemu may have pathname information encoded in CXX.linimon2017-12-201-1/+1
| | | | | | Fix some regexes to compensate. Approved by: portmgr (tier-2 blanket)
* games/scummvm:lme2017-12-203-4/+5
| | | | Update to 2.0.0
* - Remove python version restrictionamdmi32017-12-201-1/+1
|
* Update textproc/tinyxml2 to 6.0.0sunpoet2017-12-203-1/+23
| | | | | | - Bump PORTREVISION of dependent ports for shlib change Changes: https://github.com/leethomason/tinyxml2/commits/master
* Switch from swig 1.3 to 3.0bapt2017-12-201-2/+2
|
* Switch dependency from swig 1.3 to swig 3.0bapt2017-12-201-1/+2
|
* Mark some older failing ports broken on aarch64.linimon2017-12-192-2/+7
| | | | | | While here, pet portlint and reformat some other BROKEN statements. Approved by: portmgr (tier-2 blanket)
* Mark more recently failing ports broken on aarch64.linimon2017-12-191-0/+4
| | | | | | While here, pet portlint and reformat some other BROKEN statements. Approved by: portmgr (tier-2 blanket)
* - This is in fact broken on all architecturesamdmi32017-12-181-3/+1
| | | | Approved by: portmgr blanket
* - Add LICENSEamdmi32017-12-181-0/+2
|
* Revert r456614, it was caused by testing with boost 1.66amdmi32017-12-181-2/+0
|
* - Fix LICENSEamdmi32017-12-182-15/+9
| | | | | - Switch to options helpers - Don't install LICENSE with docs
* - Mark BROKEN: does not build: ./vaults.des: line 110, pos 9 : Core function ↵amdmi32017-12-181-0/+2
| | | | | | 'level.depth' has unknown return type 'i'. Approved by: portmgr blanket
* - Mark BROKEN: does not build: ↵amdmi32017-12-181-0/+2
| | | | | | src/third_party/websocketpp/websocketpp/transport/asio/connection.hpp:422:45: error: use of class template 'boost::asio::strand' requires template arguments Approved by: portmgr blanket
* - Fix LICENSEamdmi32017-12-181-6/+4
| | | | | - Switch to USES=localbase - Switch to USE_CXXSTD
* - Fix python dependencyamdmi32017-12-151-1/+1
|
* - Builds fine here on armv6, assuming armv7 is also OKamdmi32017-12-151-3/+0
|
* - Fix dependsamdmi32017-12-151-4/+5
| | | | | | - Verbosify build Approved by: portmgr blanket
* - Unbreak and fix build after protobuf 3.5.0 updatemadpilot2017-12-143-3/+30
|
* Mark CONFLICTS_INSTALL with devel/autogensunpoet2017-12-141-0/+2
|
* Update to FreeCiv 2.5.9 (bugfix release)johans2017-12-143-4/+7
|
* Mark pokerth as broken.madpilot2017-12-131-0/+2
| | | | | | Fails to compile after the update of devel/protobuf to 3.5.0. I am working on a fix but will take some time.
* - Move highscores to /var/gamesamdmi32017-12-136-30/+26
| | | | | | | - Drop unneeded flags - Switch to options helpers - Regenerate patches - Fix binary permissings for highscores to properly work
* - Update libva to 2.0.0madpilot2017-12-131-1/+1
| | | | | | | | | | | | | - Update libva-intel-driver to 2.0.0 - Update libva-utils to 2.0.0 - Bump dependent ports due to shlib bump - Import upstream patch to fix multimedia/mpv [1] - Import upstream patch to fix multimedia/gstreamer1-vaapi [2] Approved by: cpm [1], multimedia (timeout) [2] Obtained from: https://github.com/mpv-player/mpv/commit/2ecf240b1cd20875991a5b18efafbe799864ff7f [1] https://cgit.freedesktop.org/gstreamer/gstreamer-vaapi/commit/gst-libs/gst/vaapi/gstvaapiutils.c?id=777bba473e3ed1c7b8b7f7f0322892851c70dfd9 [2] Differential Revision: https://reviews.freebsd.org/D12761
* - Those ports fail to build with python3antoine2017-12-133-3/+3
| | | | - Add some explicit FLAVOR to dependencies where needed
* Fix packaging with python3antoine2017-12-131-0/+1
|
* - Those ports fail to build with python3antoine2017-12-122-3/+3
| | | | - Add some explicit FLAVOR to dependencies where needed
* Re-try ports affected by bug 193528 on powerpc* after r449590jbeich2017-12-122-4/+0
|
* Update devel/protobuf to 3.5.0sunpoet2017-12-123-2/+3
| | | | | | - Bump PORTREVISION for shlib change Changes: https://github.com/google/protobuf/releases
* - Update to 20171210amdmi32017-12-122-5/+5
|
* - Those ports fail to build with python3antoine2017-12-1216-16/+16
| | | | - Add some explicit FLAVOR to dependencies where needed
* - Fix c++11 compatibilityamdmi32017-12-112-0/+26
| | | | | PR: 222403 Submitted by: rleigh@codelibre.net
* - Update to 0.3.5amdmi32017-12-112-4/+4
|
* - Those ports fail to build with python3antoine2017-12-113-5/+5
| | | | - Add some explicit FLAVOR to dependencies where needed
* - Remove arch limitationsamdmi32017-12-102-5/+17
|
* - Update to 0.9.23amdmi32017-12-104-37/+21
| | | | - Re-enable SERVER and VIDEOREC options which work fine now
* Add explicit FLAVOR to dependency (useful when usingantoine2017-12-091-1/+1
| | | | DEFAULT_VERSIONS=python=3.x)
* Add explicit FLAVOR to dependency (useful when usingantoine2017-12-091-1/+1
| | | | DEFAULT_VERSIONS=python=3.x)
* Add explicit FLAVOR to dependencies (useful when usingantoine2017-12-091-1/+1
| | | | DEFAULT_VERSIONS=python=3.x)
* - Add explicit FLAVOR to dependency (useful when usingantoine2017-12-091-3/+4
| | | | | DEFAULT_VERSIONS=python=3.x - Remove dependency on python2 metaport
* gretools is not compatible with python3antoine2017-12-091-1/+1
|
* These are also broken on aarch64 in the same way as armv6/7.linimon2017-12-091-2/+3
| | | | Approved by: portmgr (tier-2 blanket)
* Mark more ports broken that fail on both armv6 and armv7.linimon2017-12-091-0/+3
| | | | Approved by: portmgr (tier-2 blanket)
* games/iortcw: Fix build when PREFIX != LOCALBASEtobik2017-12-091-1/+1
|
* - Switch to USES=localbaseamdmi32017-12-091-6/+3
| | | | | | | - Verbosify fuild - Switch to options helpers Approved by: portmgr blanket
* Don't include bsd.port.options.mk after bsd.port.pre.mk.mat2017-12-084-7/+0
| | | | Sponsored by: Absolight
* Mark these ports as buildable on armv6 after a trybroken run. (Alsolinimon2017-12-084-4/+0
| | | | | | | | tested with trybroken on armv7.) The 'runaway process' ones are most likely just statistical. Approved by: portmgr (tier-2 blanket)
* - Add LICENSEamdmi32017-12-081-4/+10
| | | | | - Add missing Qt dependency - Cosmetic fixes
* A thousand years into post-apocalyptic Earth, many forms of lifeamdmi32017-12-084-0/+63
| | | | | | | | | | | | | have gone extinct, including humans. An alien robot series, called Minilens, is cleaning up the Earth and collecting the surviving flora for research purposes. The robots' duty is to destroy all radioactive barrels and to collect all flora. Aliens forgot that Earth has gravity, therefore Minilens can't jump. WWW: http://kobuge-games.github.io/minilens/
* Update to 4.1ehaupt2017-12-072-4/+4
|
* - Update to 0.10.1amdmi32017-12-073-18/+12
| | | | | PR: 216888 Submitted by: BM-2cUeCzVy7CNYW6BX4WEnC4s9X9unYMUcre@bitmessage.ch
* - Update to 4.0ehaupt2017-12-072-4/+4
| | | | | | | - In addition to r455114 [1], the GitHub account changed because the main dev moved the repo to his personal account. Verifed via IRC Notified by: danfe [1]
* games/opensurge: unbreak and unexpire [1]rene2017-12-063-5/+94
| | | | | | | | | Add LIB_DEPENDS on x11-fonts/alfont PR: 223746 Submitted by: timon at timon.net.nz Approved by: maintainer timeout (nemysis, 15 days) MFH: 2017Q4
* - Update licenseamdmi32017-12-061-1/+2
|
* - Add LICENSEamdmi32017-12-063-4/+11
| | | | | | - Move highscore file to /var/games - Improve highscore handling using @sample - Switch to options helpers
* - Fix version to match upstreamamdmi32017-12-061-5/+5
| | | | | | | - Pet portlint - Switch to options helpers Approved by: portmgr blanket
* - Update to 0.2.9amdmi32017-12-063-18/+25
|
* Add explicit FLAVOR to dependency (useful when usingantoine2017-12-051-1/+1
| | | | DEFAULT_VERSIONS=python=3.x)
* Add explicit FLAVOR to dependency (useful when usingantoine2017-12-051-1/+1
| | | | DEFAULT_VERSIONS=python=3.x)
* Fix configure options for gnustep-maketheraven2017-12-0312-12/+12
| | | | | | | We were not setting the flag to select the GNUstep ABI, so were defaulting to using the GCC-compatible version, which was likely to trigger a lot of subtle bugs. This was noticed when C++ exceptions thrown through Objective-C stack frames caused segfaults.
* - Add explicit FLAVOR to a few dependenciesantoine2017-12-034-8/+8
| | | | | | - Remove FLAVOR from py-docutils dependency in comms/uhd, in this case it needs the rst2html command, not the docutils module - Mark some ports as not compatible with python3
* update games/wtf to 20171202 snapshot from NetBSDlifanov2017-12-022-4/+4
|
* Update to version 0.44.02pawel2017-12-023-8/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | New stuff - Ability to send out squads to raid sites, rescuing prisoners and recovering artifacts - Display cases and pedestals, museum zones, both in forts and other sites - Can view the world map w/ rumors from fort mode - Artifacts created during worldgen: dwarf moods, named heroic objects, holy relics, heirlooms - New artifact events in play and worldgen: questers seek artifacts and ask for or steal them, invaders demand artifacts - New historical events associated to the creation of artifacts (used in fort and worldgen) - Agents used by civilizations to gather information, can assume cover identities - Improved kobold site maps - Goblin site denizens demand an identity instead of immediately attacking every stranger - More modding control over pets and other animals - Adventurer can assume a cover identity at will - Adventurer can name their possessions - New adventurer reputations related to artifacts - New religious activity: monks, pilgrims and prophets - Museums and other room types can be added to fort locations like taverns and libraries - Various additional data in the XML export Major bug fixes - Fixed weapon trap crash vs. item breakage - Fixed bug preventing monster slayers from visiting those forts with monsters to slay - Made animated skulls, hair and other bits easier to pulp - Made idle and vermin-hunting dwarves come down from trees more successfully - Made thirst/hunger and being pushed out of the way less likely to terminate dances Other bug fixes/tweaks - Alphabetized broad stock screen categories - Fixed problem with historical bodies not respecting wounds/processing - Fixed bug causing religions to worship too many gods, with duplicates - Made simple burrow beasts start in caves as possible - Fixed broken historical collection linkage with beast attacks during festivals - Fixed one instance of broken animal person greetings - Stopped natural animals from w.g. rampaging through sites owned by entities at peace with wildlife - Took age into account for w.g. fights vs. body size (e.g. proper dragon size) - Stopped people from being enough to satisfy a need to see great beasts - Made visitors less nervous about going to neutral locations
* Update homepagepawel2017-12-021-1/+1
|
* 20,000 Light Years Into Space is a steampunk-themed strategy gameamdmi32017-12-024-0/+59
| | | | | | where you have to manage a steam supply network. WWW: http://www.jwhitham.org/20kly/
* - Resurrect games/lordsawar, unbreak, take maintainershipamdmi32017-12-0112-0/+414
| | | | | | | | | | | A turn-based strategy game where up to 8 players strive for control of as many cities as possible. Produce new armies in cities to conquer nearby cities. Using the income from those cities, make more armies to take more cities. Send a hero to a temple to get a quest, or maybe search a nearby ruin instead. Play with others or against the computer. WWW: http://www.nongnu.org/lordsawar/
* Remove expired ports:rene2017-12-016-136/+0
| | | | | | | 2017-11-30 www/p5-Yahoo-Lifestyle: This service has been shut down 2017-11-30 games/linux-rtcw: Use the native and open source games/iortcw instead 2017-11-30 java/bootstrap-openjdk: superseded by java/bootstrap-openjdk[68] 2017-11-30 lang/gcc46: Unsupported by upstream. Use GCC 6 or newer instead.
* - Add LICENSE_FILEamdmi32017-12-011-7/+5
| | | | | | - Switch to USES=localbase - Don't install license with docs - Cosmetic fixes
* Cleanup LIB_DEPENDS on libpngantoine2017-12-012-2/+2
|
* - Add LICENSE_FILEamdmi32017-12-011-0/+1
| | | | Approved by: portmgr blanket
* Convert Python ports to FLAVORS.mat2017-11-3037-81/+90
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Ports using USE_PYTHON=distutils are now flavored. They will automatically get flavors (py27, py34, py35, py36) depending on what versions they support. There is also a USE_PYTHON=flavors for ports that do not use distutils but need FLAVORS to be set. A USE_PYTHON=noflavors can be set if using distutils but flavors are not wanted. A new USE_PYTHON=optsuffix that will add PYTHON_PKGNAMESUFFIX has been added to cope with Python ports that did not have the Python PKGNAMEPREFIX but are flavored. USES=python now also exports a PY_FLAVOR variable that contains the current python flavor. It can be used in dependency lines when the port itself is not python flavored. For example, deskutils/calibre. By default, all the flavors are generated. To only generate flavors for the versions in PYTHON2_DEFAULT and PYTHON3_DEFAULT, define BUILD_DEFAULT_PYTHON_FLAVORS in your make.conf. In all the ports with Python dependencies, the *_DEPENDS entries MUST end with the flavor so that the framework knows which to build/use. This is done by appending '@${PY_FLAVOR}' after the origin (or @${FLAVOR} if in a Python module with Python flavors, as the content will be the same). For example: RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}six>0:devel/py-six@${PY_FLAVOR} PR: 223071 Reviewed by: portmgr, python Sponsored by: Absolight Differential Revision: https://reviews.freebsd.org/D12464
* update games/gemrb to 0.8.5lifanov2017-11-303-21/+25
| | | | | | | | | | | | | | | | | | | | The port is cleaned up to remove a lot of heavy dependencies. New features SDL2 resolution-independent window scaling, environmental audio, IRIX compatibility regeneration during sleep, time dilation iwd2 ability stacking, iwd ZZ* weapon bonuses portrait.2da handling, avatar shadows, dialogF.tlk handling Improved features infravision better compatibility with bgt, 10pp, ia, kelsey, dr sdl2 input, mouse scrolling, opengl driver iwd2 cg&lu, item (un)usability, avatar sizes, permanent clabs ambients, verbal constants, random walk, walk sounds bugfixes
* SpaceZero is a Real Time Strategy 2D space combat game for twoamdmi32017-11-305-0/+108
| | | | | | | | | | | | | | | players over a network. The objective is to conquer the universe, defeating all enemies. At starting point you have only one ship and one planet, but you have gold to buy more ships to conquer more planets. All ships can be controlled by the computer (automatic mode) or by the player (manual mode). You can easily change among your ships, controlling all of them independently. WWW: http://spacezero.sourceforge.net/
* For ports that are marked BROKEN on armv6, and also fail to build onlinimon2017-11-3016-0/+16
| | | | | | | | | | armv7, mark them so. This is part two of a multipart commit to bring armv7 ports to parity with armv6. Approved by: portmgr (tier-2 blanket) Obtained from: lonesome.com -exp run
* For ports that are marked NOT_FOR/ONLY_FOR armv6, also mark them solinimon2017-11-302-2/+2
| | | | | | | | | on armv7. This is part one of a multipart commit to bring armv7 ports to parity with armv6. Approved by: portmgr (tier-2 blanket)
* - Fix server buildamdmi32017-11-302-3/+10
| | | | | PR: 222408 Reported by: gerrit@weinberg2.de
* Update to 3.9ehaupt2017-11-292-5/+5
|
* games/openmw: Update to 0.43.0tobik2017-11-293-6/+6
| | | | Changes: https://github.com/OpenMW/openmw/releases/tag/openmw-0.43.0
* Taisei (lit. Occident) is a fan-made Open Source clone of the Touhouamdmi32017-11-256-0/+77
| | | | | | | | | | series, written in C using SDL/OpenGL. Basically, it is a shoot'em up game with lots of bullets (the genre is literally called bullet hell). The game is mostly done and very playable, so feel free to give it a try! WWW: https://taisei-project.org/
* games/stockfish: update 5 -> 8junovitch2017-11-243-21/+27
| | | | | | | | - Book support removed; it was removed from latest stockfish version - PROFILE option support is no longer functional and was removed PR: 206096 Submitted by: Gautam Mani <execve@gmail.com> (maintainer)
* games/cockatrice: Bump to 2.4.0 Releasesbruno2017-11-242-6/+5
| | | | https://github.com/Cockatrice/Cockatrice/releases/tag/2017-11-19-Release-2.4.0
* New port: games/openclaw: Reimplementation of Captain Claw (1997) platformeryuri2017-11-235-0/+87
| | | | | | | PR: 223139 Submitted by: Greg V <greg@unrelenting.technology> Approved by: tcberner (mentor) Differential Revision: https://reviews.freebsd.org/D13164
* New port: games/xptoolstz2017-11-2221-0/+503
| | | | | | | | | | | | | The X-Plane Scenery Tools (XPTools) code base is the source code tree for all of the Laminar Research scenery creation/editing tools. This code does not include X-Plane and the "X-Apps" (PlaneMaker, WorldMaker, AirfoilMaker, and Briefer). It does include source to the ac3d x-plane plugin, WED, the various tools, and our global scenery generator. WWW: https://developer.x-plane.com/code/ PR: 223649 Submitted by: Michael Danilov <mike.d.ft402@gmail.com>
* Remove expired ports:rene2017-11-2216-309/+0
| | | | | | | | | | | | | | | 2017-11-20 news/brag: Tcl/Tk 8.4 is no longer maintained, please use 8.5+ 2017-11-20 textproc/srilm: Tcl/Tk 8.4 is no longer maintained, please use 8.5+ 2017-11-20 x11-toolkits/tk84: Tcl/Tk 8.4 is no longer maintained, please use 8.5+ 2017-11-20 devel/tkinspect: Tcl/Tk 8.4 is no longer maintained, please use 8.5+ 2017-11-20 games/bogged: Tcl/Tk 8.4 is no longer maintained, please use 8.5+ 2017-11-20 games/ttraffic: Tcl/Tk 8.4 is no longer maintained, please use 8.5+ 2017-11-20 games/ifm: Tcl/Tk 8.4 is no longer maintained, please use 8.5+ 2017-11-20 games/tksol: Tcl/Tk 8.4 is no longer maintained, please use 8.5+ 2017-11-20 lang/tcl84: Tcl/Tk 8.4 is no longer maintained, please use 8.5+ 2017-11-20 mail/tkrat2: Tcl/Tk 8.4 is no longer maintained, please use 8.5+ 2017-11-20 multimedia/dtv: Tcl/Tk 8.4 is no longer maintained, please use 8.5+ 2017-11-20 net-mgmt/netwag: Tcl/Tk 8.4 is no longer maintained, please use 8.5+
* OPTIONS_SUB only cares about being defined, its content is ignored.mat2017-11-211-1/+1
| | | | Sponsored by: Absolight
* games/manaplus: Update to 1.7.11.11swills2017-11-202-4/+4
| | | | PR: Thibault Payet <monwarez@mailoo.org> (maintainer)
* update games/wtf to 20171118 snapshot from NetBSDlifanov2017-11-203-6/+5
|
* Bump portrevision to chase graphics/glew shard library version update.zeising2017-11-1924-23/+24
| | | | | | | PR: 223370 Submitted by: zeising exp-run by: antoine Approved by: antoine
* games/opensurge: actually mark it as brokenrene2017-11-161-0/+1
| | | | Submitted by: antoine
* games/opensurge: does not build, schedule for removal on 2018-02-01rene2017-11-141-1/+4
| | | | | | | | | | | | | CMakeFiles/opensurge.dir/src/entities/particle.c.o: In function `particle_update_all': particle.c:(.text+0x113): undefined reference to `image_height' particle.c:(.text+0x126): undefined reference to `image_width' particle.c:(.text+0x1f0): undefined reference to `image_width' particle.c:(.text+0x20f): undefined reference to `image_height' particle.c:(.text+0x296): undefined reference to `image_width' particle.c:(.text+0x2b2): undefined reference to `image_height' collect2: error: ld returned 1 exit status and other files
* Fix USE_GITHUB usage.mat2017-11-132-4/+4
| | | | Sponsored by: Absolight
* games/emptyepsilon: Update to 2017.11.03yuri2017-11-133-10/+10
| | | | | Approved by: tcberner (mentor) Differential Revision: https://reviews.freebsd.org/D12944
* games/opensurge: unexpire, x11-fonts/alfont is fixed again.rene2017-11-121-3/+0
|
* Remove expired ports:rene2017-11-1110-366/+0
| | | | | | | | | | | | | | | | | 2017-11-04 lang/ats: Unmaintained, outdated, needs lots of refreshment 2017-11-09 games/lordsawar: Broken for more than 6 months 2017-11-09 databases/elixir-ecto_migrate: Broken for more than 6 months 2017-11-09 audio/gspeakers: Broken for more than 6 months 2017-11-09 net/p5-Filesys-SmbClient: Broken for more than 6 months 2017-11-09 audio/tclmidi: Broken for more than 6 months 2017-11-09 security/py-xmlsec: Broken for more than 6 months 2017-11-09 security/samba-virusfilter: Broken for more than 6 months 2017-11-09 textproc/ocaml-pxp: Broken for more than 6 months 2017-11-09 audio/sooperlooper: Broken for more than 6 months 2017-11-09 devel/dwarves: Broken for more than 6 months 2017-11-09 devel/cl-cffi-sbcl: Broken for more than 6 months 2017-11-09 devel/pinba_engine: Broken for more than 6 months 2017-11-09 devel/py-event: Broken for more than 6 months
* Update to 1.2.4martymac2017-11-1111-148/+120
| | | | | | | Switch to updated version from: https://trackballs.github.io/ (see also: http://trackballs.sourceforge.net) Reported by: Manuel Stoeckl <mstoeckl@u.rochester.edu>
* Fix the context of some patches so that they apply with stricter patch(1)antoine2017-11-101-2/+3
| | | | | PR: 223545 With hat: portmgr
* devel/icu: update to 60.1jbeich2017-11-095-4/+5
| | | | | | | Changes: http://site.icu-project.org/download/60 ABI: https://abi-laboratory.pro/tracker/timeline/icu4c/ PR: 223373 Exp-run by: antoine
* Update the URL's for Neverwinter Nights (Original and Diamond editions)scf2017-11-096-21/+37
| | | | | | | | | | | | | | | | | | data and client binaries due to them being moved again. Since the available version of the Bink Player has changed and no archives of the old copy exist, the ability to play movies in the game is now experimental if and only if a newer version of the nwmovies.so hook is compiled on Linux i386 and used. The binary for the hook is not currently provided, hence, it is experimental. I am currently working with the maintainer of that hook to make a release to add to the port to bring back movie support. Regenerate distinfo files to add TIMESTAMP. Reviewed by: lifanov, mat Approved by: lifanov Differential Revision: https://reviews.freebsd.org/D12960
* - Update to 14.0amdmi32017-11-083-28/+4
|
* - Update to 0.3.4amdmi32017-11-083-12/+14
|
* Fix USE_GITHUB usage.mat2017-11-064-9/+10
| | | | Sponsored by: Absolight
* - Update to 20171029amdmi32017-11-062-5/+5
|
* Un-break build in the presence of print/texinforiggs2017-11-052-0/+22
| | | | | | | | | | | Details: - If print/texinfo is installed, the build process detects and uses it to rebuild the info pages. This fails because of some syntax errors, previously only flagged as warnings. - There is currently no configure switch to change this behaviour, hence the texi files are patched to pass the texinfo run. MFH: 2017Q4 (ports-secteam build fix blanket)
* games/moonlight-embedded: Update to 2.4.4tobik2017-11-054-13/+21
| | | | Changes: https://github.com/irtimmer/moonlight-embedded/releases/tag/v2.4.4
* Update to 5.2.vanilla2017-11-042-4/+5
|
* - Update to 0.8.1amdmi32017-11-045-26/+35
| | | | | | | - Fix LICENSE - Switch to USES=localbase - Switch to upstream build - Update WWW
* - Add games/tty-solitaireamdmi32017-11-045-0/+68
| | | | | | Ncurses-based klondike solitaire game WWW: https://github.com/mpereira/tty-solitaire
* Fix whitespace issues (mixed tab/spaces, alignment) in a few ports.olgeni2017-11-033-4/+4
| | | | This round is @FreeBSD.org residents except teams.
* - Update WWWamdmi32017-11-022-2/+2
|
* Merge Linux ncurses-base into linux_base. It's needed by ncurses-libs.tijl2017-11-011-2/+2
|
* Fix whitespace issues (mixed tab/spaces, alignment) in a few ports.olgeni2017-11-011-1/+1
|
* Update to 3.8ehaupt2017-11-012-4/+4
|
* games/wtf: fix package lookup with FreeBSD pkglifanov2017-10-312-0/+17
| | | | | PR: 223329 Submitted by: John Hein <z7dr6ut7gs@snkmail.com>
* Fix whitespace issues (mixed tab/spaces, alignment) in a few ports.olgeni2017-10-313-4/+4
|
* - Update to 0.5.3amdmi32017-10-312-5/+4
|
* - Update to 0.5.3amdmi32017-10-312-5/+4
|
* - Update WWWamdmi32017-10-301-4/+7
| | | | | | - Fix LICENSE - Add LICENSE_FILE - Switch to options helpers
* Update games/manaplus to 1.7.10.28tcberner2017-10-302-4/+4
| | | | | PR: 223305 Submitted by: Thibault Payet <monwarez@mailoo.org> (maintainer)
* - Update WWWamdmi32017-10-241-9/+10
| | | | | | - Fix LICENSE - Switch to USES=localbase - Switch to options helpers
* games/openbor: update to 4542jbeich2017-10-242-4/+5
| | | | Changes: https://github.com/DCurrent/openbor/compare/4539...55b816d
* games/robocode: Update to 1.9.3.0dbaio2017-10-223-5/+5
| | | | Changes: http://robo-code.blogspot.com.br/2017/10/robocode-1930.html
* Mark games/linux-rtcw as deprecated.tobik2017-10-211-0/+3
| | | | | | It doesn't work correctly [1] and we have a native version in games/iortcw. [1] https://forums.freebsd.org/threads/61621/
* multimedia/ffmpeg: update to 3.4jbeich2017-10-216-5/+6
| | | | | | | | | | | | | | | | | | | Notable changes: - i386/amd64 now depend on NASM per https://git.ffmpeg.org/gitweb/ffmpeg.git/commitdiff/4f9297ac3b39 - NETCDF is now MYSOFA but the dependency doesn't exist in ports yet - SCHROEDINGER is gone per https://git.ffmpeg.org/gitweb/ffmpeg.git/commitdiff/220b24c7c9 - DRM, LIBRSVG2, LIBXML2 are new options - ABI isn't completely compatible: some structs have changed Minor cleanup: - Don't pass --disable-{in,out}dev when it's already blocked by disabled dependency - Drop redundant "Enable" from option descriptions - Switch CDIO_DESC to use Mk/bsd.options.desc.mk Changes: https://git.ffmpeg.org/gitweb/ffmpeg.git/blob/n3.4:/Changelog ABI: https://abi-laboratory.pro/tracker/timeline/ffmpeg/ PR: 223057 Exp-run by: antoine
* lang/tcl84, x11-toolkits/tk84: extend expiration for another monthgahr2017-10-204-0/+12
| | | | Track down a few more ports that depend on those two, and deprecate them too.
* - Update WWWamdmi32017-10-203-7/+16
| | | | | | - Add LICENSE - Switch to options helpers - Regenerate patches
* New port of the "Colossal Cave Adventure", based on the last versionse2017-10-204-0/+51
| | | | | | | released by the initial authors (Crowther & Woods). Also known as the 430-point adventure. Approved by: antoine (mentor)
* games/manaplus: Update to 1.7.10.14swills2017-10-192-4/+4
| | | | | PR: 223089 Submitted by: Thibault Payet <monwarez@mailoo.org> (maintainer)
* - Update FreeDoko to version 0.7.16 and also unbreak; unfortunately,danfe2017-10-193-18/+13
| | | | | | | it now requires gtkmm30 and C++14 compliant compiler - While here, make network support optional (but enabled by default) TIMESTAMP (FreeDoko_0.7.16.src.zip) = 1484159638
* Remove games/crafty-tablebase-pawn, waste of resourcesantoine2017-10-177-457/+0
| | | | With hat: portmgr
* Remove expired ports:rene2017-10-176-83/+0
| | | | | | | | | 2017-10-15 devel/vtcl: This port depends on Tcl/Tk 8.4 , which is no longer maintained. Please port it to 8.5+ 2017-10-15 editors/tpad: This port depends on Tcl/Tk 8.4 , which is no longer maintained. Please port it to 8.5+ 2017-10-15 games/polypuzzle: This port depends on Tcl/Tk 8.4 , which is no longer maintained. Please port it to 8.5+ 2017-10-15 multimedia/nxtvepg: This port depends on Tcl/Tk 8.4 , which is no longer maintained. Please port it to 8.5+ 2017-10-15 net/xpvm: This port depends on Tcl/Tk 8.4 , which is no longer maintained. Please port it to 8.5+ 2017-10-15 x11/tkXwin: This port depends on Tcl/Tk 8.4 , which is no longer maintained. Please port it to 8.5+
* games/openra: update to 20171014jbeich2017-10-154-85/+41
| | | | | | | | | - Drop DOCS as Lua API docs aren't available anymore - Drop ZENITY as it's only used to show FAQ link on crashes - Move game data to DATADIR, better mimicking hier(7) Changes: https://github.com/OpenRA/OpenRA/wiki/Changelog#release-20171014 MFH: 2017Q4 (for multiplayer)
* Remove forced clang34 dependency. The port builds on 10.3 (which hasbrooks2017-10-141-20/+1
| | | | | the supposedly broken version) and 11.1 without this change. This removes the last use of clang34 in the ports tree.
* Convert to options target helpersunpoet2017-10-121-4/+1
| | | | - Convert to test framework
* For ports that are explicitly enabled on armv6, also enable themlinimon2017-10-111-1/+1
| | | | | | | on armv7. This has not been tested with an -exp run but should "do no harm". PR: 221894 (partial)
* - Update WWWamdmi32017-10-101-1/+1
| | | | Approved by: portmgr blanket
* games/openra: update GeoLite2 to October snapshotjbeich2017-10-092-3/+3
| | | | fetch: https://geolite.maxmind.com/download/geoip/database/GeoLite2-Country.mmdb.gz: size mismatch: expected 1564896, actual 1583522
* Deprecate ports broken for more than 6 monthsantoine2017-10-092-0/+4
|
* games/openbor: update to 4539jbeich2017-10-083-14/+4
| | | | | Changes: https://github.com/DCurrent/openbor/compare/12fc70c...4539 MFH: 2017Q4
* games/pioneer: update to 0.0.20171001jbeich2017-10-063-14/+94
| | | | | | | | | | | | | | | - Remove already applied patch for assimp-4.0.0 - Move USES before USE_* per Porter's Handbook style (found by portlint) - Add SERVERAGENT port's option - Apply upstream patch to "Fix SAR selection of ship sizes for missions" Note, saved games from previous version are not compatible. Changes: https://github.com/pioneerspacesim/pioneer/blob/20171001/Changelog.txt https://github.com/pioneerspacesim/pioneer/compare/20170304...20171001 PR: 222823 Submitted by: lightside@gmx.com (maintainer) MFH: 2017Q4
* Update flightgear-aircraft to 20170929martymac2017-10-042-46/+46
|
* Update games/manaplus to 1.7.9.30tcberner2017-10-012-4/+4
| | | | | PR: 222706 Submitted by: Thibault Payet <monwarez@mailoo.org> (maintainer)
* games/openra: update GeoLite2 to September snapshotjbeich2017-10-012-3/+3
| | | | fetch: https://geolite.maxmind.com/download/geoip/database/GeoLite2-Country.mmdb.gz: size mismatch: expected 1454069, actual 1564896
* Distfiles work better when they're uploaded.adamw2017-09-301-0/+3
| | | | Reported by: cy
* Update to the sources from DragonflyBSD 4.8.1adamw2017-09-302-9/+5
|
* Update Simgear and Flightgear ports to 2017.3.1martymac2017-09-3010-203/+31
|
* games/manaplus: update to 1.7.9.16jbeich2017-09-282-4/+4
| | | | | | | Changes: https://manaplus.org/changelog#new_release_17916 PR: 222544 Submitted by: Thibault Payet <monwarez@mailoo.org> (maintainer) MFH: 2017Q3
* Bump PORTREVISION in ports depending on archivers/libzip.rakuco2017-09-283-3/+3
| | | | | | | | libzip was updated to 1.3.0 in r450774, and its SOVERSION went from .4 to .5 after the removal of zip_archive_set_tempdir(). All dependent ports continue to build fine without that symbol. PR: 222638
* games/super_methane_brothers: unbreak after r450353jbeich2017-09-271-1/+1
| | | | | | | | | | In file included from sources/game.cpp:28: In file included from sources/target.h:21: In file included from /usr/local/include/ClanLib-2.3/ClanLib/display.h:112: In file included from /usr/local/include/ClanLib-2.3/ClanLib/Display/TargetProviders/display_window_provider.h:44: /usr/local/include/ClanLib-2.3/ClanLib/Display/TargetProviders/../Window/display_window.h:48:10: fatal error: 'X11/Xlib.h' file not found #include <X11/Xlib.h> ^
* - Update to 92.5amdmi32017-09-272-6/+5
|
* - Update to 1.4amdmi32017-09-272-3/+4
|
* devel/boost-*: update to 1.65.1jbeich2017-09-2536-36/+38
| | | | | | | | | Changes: http://www.boost.org/users/history/version_1_65_1.html PR: 218835 Approved by: maintainer timeout (1.65.1: 2 weeks; 1.65.0: 1 month) Tested by: jhibbits (on powerpc64, earlier version) Exp-run by: antoine Differential Revision: https://reviews.freebsd.org/D11582
* games/stuntrally: switch to C++11 for Boostjbeich2017-09-252-3/+7
| | | | PR: 222189
* devel/boost-*: enable C++11 featuresjbeich2017-09-2535-33/+37
| | | | | | | | PR: 218835 Obtained from: https://github.com/DragonFlyBSD/DeltaPorts/pull/690 Approved by: maintainer timeout (2 months) Exp-run by: antoine Differential Revision: https://reviews.freebsd.org/D11582
* devel/icu: update to 59.1jbeich2017-09-255-4/+5
| | | | | | | | | - Temporarily keep C++98 working in consumers for Clang's default -std= Changes: http://site.icu-project.org/download/59 PR: 218788 Submitted by: takefu@airport.fm, dcarmich@dcarmichael.net (early version) Exp-run by: antoine
* Reset maintainership on Dominic Fandrey's ports.adamw2017-09-249-9/+9
| | | | With hat: portmgr
* remove games/ember. It is a) BROKEN and b) no longer developed since 2014.oliver2017-09-2310-2170/+0
| | | | | The immediate BROKEN reason can be fixed, but other problems arise afterwards which I'm not willing to fix without seeing upstream development continuing.
* Cleanup after removal of libexecinfo from ports.mat2017-09-224-14/+4
| | | | | | | PR: 220271 Submitted by: mat (review), Yasuhiro KIMURA (PR) Sponsored by: Absolight Differential Revision: https://reviews.freebsd.org/D11488