aboutsummaryrefslogtreecommitdiff
path: root/games/super_methane_brothers
Commit message (Collapse)AuthorAgeFilesLines
* Remove # $FreeBSD$ from Makefiles.Mathieu Arnold2021-04-061-1/+0
|
* Bump PORTREVISION for ports depending on the canonical version of GCCGerald Pfeifer2019-07-261-1/+1
| | | | | | | | | | | | | | | | | | as defined in Mk/bsd.default-versions.mk which has moved from GCC 8.3 to GCC 9.1 under most circumstances now after revision 507371. This includes ports - with USE_GCC=yes or USE_GCC=any, - with USES=fortran, - using Mk/bsd.octave.mk which in turn features USES=fortran, and - with USES=compiler specifying openmp, nestedfct, c11, c++0x, c++11-lang, c++11-lib, c++14-lang, c++17-lang, or gcc-c++11-lib plus, everything INDEX-11 shows with a dependency on lang/gcc9 now. PR: 238330 Notes: svn path=/head/; revision=507372
* Bump PORTREVISION for ports depending on the canonical version of GCCGerald Pfeifer2018-12-121-1/+1
| | | | | | | | | | | | | | | | | | defined via Mk/bsd.default-versions.mk which has moved from GCC 7.4 t GCC 8.2 under most circumstances. This includes ports - with USE_GCC=yes or USE_GCC=any, - with USES=fortran, - using Mk/bsd.octave.mk which in turn features USES=fortran, and - with USES=compiler specifying openmp, nestedfct, c11, c++0x, c++11-lang, c++11-lib, c++14-lang, c++17-lang, or gcc-c++11-lib plus, as a double check, everything INDEX-11 showed depending on lang/gcc7. PR: 231590 Notes: svn path=/head/; revision=487272
* More precisely specify USES=compiler to fix build on gcc-basedMark Linimon2018-09-181-1/+1
| | | | | | | | | | | platforms such as powerpc64. Tested on powerpc64, amd64. Approved by: portmgr (tier-2 blanket) Notes: svn path=/head/; revision=479990
* games/super_methane_brothers: unbreak after r450353Jan Beich2017-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> ^ Notes: svn path=/head/; revision=450712
* Cleanup after removal of libexecinfo from ports.Mathieu Arnold2017-09-221-2/+1
| | | | | | | | | | PR: 220271 Submitted by: mat (review), Yasuhiro KIMURA (PR) Sponsored by: Absolight Differential Revision: https://reviews.freebsd.org/D11488 Notes: svn path=/head/; revision=450353
* Remove USES=execinfo.Mathieu Arnold2017-09-221-1/+1
| | | | | | | | | | PR: 220271 Submitted by: mat (review), Yasuhiro KIMURA (PR) Sponsored by: Absolight Differential Revision: https://reviews.freebsd.org/D11488 Notes: svn path=/head/; revision=450351
* games/super_methane_brothers: unbreak runtime on non-x86 after r446663Jan Beich2017-07-263-25/+100
| | | | | | | | | | | $ methane Exception caught: Sorry, clanSWRender requires a processor capable of SSE2 instructions. (Update your CPU) Pointy hat to: jbeich Notes: svn path=/head/; revision=446693
* games/super_methane_brothers: use clang and unbreak with gcc5 or laterJan Beich2017-02-052-2/+34
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | sources/misc.cpp:43:65: error: narrowing conversion of '4294967248u' from 'unsigned int' to 'int' inside { } [-Wnarrowing] static PARTYOFFS party_0c = {SPR_ENDSPR_1+0x0c,0x0020,0xFFFFFFD0}; ^ sources/misc.cpp:46:65: error: narrowing conversion of '4294967282u' from 'unsigned int' to 'int' inside { } [-Wnarrowing] static PARTYOFFS party_0f = {SPR_ENDSPR_1+0x0f,0x005E,0xFFFFFFF2}; ^ sources/misc.cpp:47:65: error: narrowing conversion of '4294967290u' from 'unsigned int' to 'int' inside { } [-Wnarrowing] static PARTYOFFS party_10 = {SPR_ENDSPR_1+0x10,0x007E,0xFFFFFFFA}; ^ sources/misc.cpp:48:65: error: narrowing conversion of '4294967289u' from 'unsigned int' to 'int' inside { } [-Wnarrowing] static PARTYOFFS party_11 = {SPR_ENDSPR_1+0x11,0x008E,0xFFFFFFF9}; ^ sources/misc.cpp:50:65: error: narrowing conversion of '4294967291u' from 'unsigned int' to 'int' inside { } [-Wnarrowing] static PARTYOFFS party_13 = {SPR_ENDSPR_1+0x13,0x00B2,0xFFFFFFFB}; ^ sources/misc.cpp:51:65: error: narrowing conversion of '4294967290u' from 'unsigned int' to 'int' inside { } [-Wnarrowing] static PARTYOFFS party_14 = {SPR_ENDSPR_1+0x14,0x00C2,0xFFFFFFFA}; ^ sources/misc.cpp:60:65: error: narrowing conversion of '4294967280u' from 'unsigned int' to 'int' inside { } [-Wnarrowing] static PARTYOFFS party_1d = {SPR_ENDSPR_1+0x1d,0x0030,0xFFFFFFF0}; ^ PR: 216707 Reported by: antoine (via exp-run) Notes: svn path=/head/; revision=433376
* Bump PORTREVISIONS for ports depending on the canonical version of GCC andGerald Pfeifer2016-11-201-1/+1
| | | | | | | | | | | | lang/gcc which have moved from GCC 4.8.5 to GCC 4.9.4 (at least under some circumstances such as versions of FreeBSD or platforms). In particular that is ports with USE_GCC=yes, USE_GCC=any, or one of gcc-c++11-lib, openmp, nestedfct, c++11-lib as well as c++14-lang, c++11-lang, c++0x, c11 requested via USES=compiler. Notes: svn path=/head/; revision=426566
* Remove ${PORTSDIR}/ from dependencies, categories d, e, f, and g.Mathieu Arnold2016-04-011-1/+1
| | | | | | | | With hat: portmgr Sponsored by: Absolight Notes: svn path=/head/; revision=412346
* - Unbreak by installing missing data filesDmitry Marakasov2015-10-132-27/+8
| | | | | | | | | | - Remove unused depends - Remove /var/games stuff which is not used MFH: 2015Q4 Notes: svn path=/head/; revision=399176
* - Switch to USES=execinfoPawel Pekala2015-01-051-3/+2
| | | | | | | - Cleanup pkg-plist Notes: svn path=/head/; revision=376331
* Update the default version of GCC in the Ports Collection from GCC 4.7.4Gerald Pfeifer2014-09-101-1/+1
| | | | | | | | | | | | | to GCC 4.8.3. Part II, Bump PORTREVISIONs. PR: 192025 Tested by: antoine (-exp runs) Approved by: portmgr (implicit) Notes: svn path=/head/; revision=367888
* Convert a bunch of EXTRACT_SUFX=... into USES=tar:...Adam Weinberger2014-07-291-2/+1
| | | | | | | Approved by: portmgr (not really, but touches unstaged ports) Notes: svn path=/head/; revision=363374
* Support LIBS like LDFLAGS.Tijl Coosemans2014-06-111-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - 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 added to LIBS to make sure they appear after any -L and -l flags set by upstream. Many ports currently add -L${LOCALBASE}/lib to LDFLAGS but this may appear too early on the command line causing installed libraries to be linked in instead of freshly built ones. Additional changes: benchmarks/netio: Replace WITH_IPV6 with an IPV6 option. comms/gnokii: Replace some patches with USES=pathfix. Also remove -fPIC. graphics/gimageview: USES=libtool and install desktop file in DESKTOPDIR. graphics/visionworkbench: Remove FreeBSD 7 support. multimedia/libmovtar: New LIB_DEPENDS syntax. multimedia/opencinematools: Use standard do-build. net/siproxd: USES=libtool:keepla (port actually needs .la files for plugins) net-mgmt/nagios: Remove -fPIC. net-mgmt/nagios4: Remove -fPIC. print/cups-base: Only add -lssp_nonshared on i386 and OSVERSION < 1000036. security/p11-kit: Replace PTHREAD_LIBS in CONFIGURE_ENV with ac_cv_func_pthread_mutexattr_init=no in CONFIGURE_ARGS. This skips a test in configure that falsely detects pthread_mutexattr_init in our libc. sysutils/dar: Fix iconv detection. x11/rxvt-unicode: Remove -lstdc++ and patch configure to remove a FreeBSD hack and use $CXX as linker as on other platforms. PR: 190592 Exp-run by: antoine Approved by: portmgr (antoine) Notes: svn path=/head/; revision=357486
* 1: Stagify.Vanilla I. Shu2014-06-081-9/+7
| | | | | | | 2: convert to new LIB_DEPENDS format. Notes: svn path=/head/; revision=356969
* Update the default version of GCC used in the Ports Collection fromGerald Pfeifer2014-03-101-1/+1
| | | | | | | | | | | | | | GCC 4.6.4 to GCC 4.7.3. This entails updating the lang/gcc port as well as changing the default in Mk/bsd.default-versions.mk. Part II, Bump PORTREVISIONs. PR: 182136 Supported by: Christoph Moench-Tegeder <cmt@burggraben.net> (fixing many ports) Tested by: bdrewery (two -exp runs) Notes: svn path=/head/; revision=347809
* Remove trailing whitespaces from category gamesEmanuel Haupt2014-02-211-1/+1
| | | | Notes: svn path=/head/; revision=345410
* According to the Porter's Handbook (5.12.2.3.) default options must be added toEmanuel Haupt2014-02-101-0/+3
| | | | | | | | | | | | | | OPTIONS_DEFINE. This policy has been implemented only recently that's why we have many ports violating this policy. This patch adds the default options specified in the Porter's Handbook to OPTIONS_DEFINE where they are being used. Ports maintained by gnome@FreeBSD.org, kde@FreeBSD.org and x11@FreeBSD.org have been excluded. Approved by: portmgr (bapt) Notes: svn path=/head/; revision=343634
* Reset maintainer at his request.Mark Linimon2013-11-251-1/+1
| | | | | | | PR: ports/184260 Notes: svn path=/head/; revision=334801
* Update to libmpc version 1.0.1 which brings the following fixes:Gerald Pfeifer2013-10-261-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - Switched to automake 1.11.6, see CVE-2012-3386. - #14669: Fixed extraction of CC from gmp.h. - Fixed case of intermediate zero real or imaginary part in mpc_fma, found by hydra with GMP_CHECK_RANDOMIZE=1346362345. This is on top of the following changes from version 1.0 - Licence change towards LGPLv3+ for the code and GFDLv1.3+ (with no invariant sections) for the documentation. - 100% of all lines are covered by tests - Renamed functions . mpc_mul_2exp to mpc_mul_2ui . mpc_div_2exp to mpc_div_2ui - 0^0, which returned (NaN,NaN) previously, now returns (1,+0). - Removed compatibility with K&R compilers, which was untestable due to lack of such compilers. - New functions . mpc_log10 . mpc_mul_2si, mpc_div_2si - Speed-ups . mpc_fma - Bug fixes . mpc_div and mpc_norm now return a value indicating the effective rounding direction, as the other functions. . mpc_mul, mpc_sqr and mpc_norm now return correct results even if there are over- or underflows during the computation. . mpc_asin, mpc_proj, mpc_sqr: Wrong result when input variable has infinite part and equals output variable is corrected. . mpc_fr_sub: Wrong return value for imaginary part is corrected. Convert to the new LIB_DEPENDS standard and remove hard-coded .so versions from a couple of dependent ports. Bump PORTREVISIONS of all dependent ports. PR: 183141 Approved by: portmgr (bdrewery) Notes: svn path=/head/; revision=331644
* Add NO_STAGE all over the place in preparation for the staging support (cat: ↵Baptiste Daroussin2013-09-201-0/+1
| | | | | | | games) Notes: svn path=/head/; revision=327730
* - update to 2.3.7Ruslan Makhmatkhanov2013-09-011-2/+2
| | | | | | | | | | | - chase the update in games/super_methane_brothers - convert USE_GMAKE to USES, while here PR: 181491 Submitted by: chris petrik <c.petrik.sosa@gmail.com> (maintainer) Notes: svn path=/head/; revision=325864
* Replace USE_GCC=4.6+ and USE_GCC=4.4+ by USE_GCC=yes.Gerald Pfeifer2013-08-171-1/+1
| | | | | | | | | | | | | | | | | Right now this is a noop in the former case and a noop in the latter case unless lang/gcc44 has been installed explicitly. This puts a bit more emphasis on standardizing on a canonical version "current" GCC and makes it easier to update that canonical version by changing the default in Mk/bsd.gcc.mk and updating the lang/gcc port. That is, USE_GCC=yes means "use a decent/modern version of GCC" without having to worry about details. Approved by: portmgr (bdrewery) Notes: svn path=/head/; revision=324851
* Convert g* to USES=pkgconfigBaptiste Daroussin2013-04-231-1/+1
| | | | Notes: svn path=/head/; revision=316343
* - Please welcome back Chris Petrik as maintainer ofBryan Drewery2013-03-071-1/+1
| | | | | | | | | | | | | | these ports [1] - Trim headers - Remove indefinite article from COMMENT - Convert tab to space in WWW lines PR: ports/175415 [1] Submitted by: Chris Petrik <c.petrik.sosa@gmail.com> [1] Discussed with: bapt Notes: svn path=/head/; revision=313559
* - Update to 1.5.1Martin Wilke2013-02-056-57/+72
| | | | | | | | PR: 175043 Submitted by: Ports Fury Notes: svn path=/head/; revision=311678
* Revert Chris Petrik's ports to the pool. Thank you for all your work so ↵Eitan Adler2012-12-101-1/+1
| | | | | | | | | | far, and should you desire to return just let us know. PR: ports/174309 Submitted by: Chris Petrik Notes: svn path=/head/; revision=308576
* - Update devel/clanlib to 2.3.6Jason E. Hale2012-10-021-12/+5
| | | | | | | | | | | | - Adjust dependent ports to use devel/clanlib1 [1] - Strip Makefile headers PR: ports/171333 Submitted by: Chris Petrik <c.petrik.sosa@gmail.com> (maintainer) Approved by: makc (mentor), maintainers via private email [1] Notes: svn path=/head/; revision=305154
* Welcome back Chris Petrik <c.petrik.sosa@gmail.com>Eitan Adler2012-09-091-1/+1
| | | | | | | PR: ports/171481 Notes: svn path=/head/; revision=303952
* - update png to 1.5.10Dirk Meyer2012-06-011-1/+1
| | | | Notes: svn path=/head/; revision=297915
* - Add LDFLAGS to CONFIGURE_ENV and MAKE_ENV (as it was done with LDFLAGS)Dmitry Marakasov2011-09-231-2/+2
| | | | | | | | | | | | - 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 Notes: svn path=/head/; revision=282282
* Return these ports to the pool.Mark Linimon2011-03-021-1/+1
| | | | | | | | PR: ports/155217 Submitted by: maintainer Notes: svn path=/head/; revision=270145
* - Pass maintainership to submitterMartin Wilke2011-02-052-2/+1
| | | | | | | | | | | - Drop MD5 support PR: 154489 Submitted by: chris petrik <c.petrik.sosa@gmail.com> Feature safe: yes Notes: svn path=/head/; revision=268633
* - update to 1.4.1Dirk Meyer2010-03-281-1/+1
| | | | | | | | Reviewed by: exp8 run on pointyhat Supported by: miwi Notes: svn path=/head/; revision=251605
* - update to jpeg-8Dirk Meyer2010-02-051-1/+1
| | | | Notes: svn path=/head/; revision=249285
* For ports maintained by ports@FreeBSD.org, remove names and/orDoug Barton2009-12-211-3/+0
| | | | | | | | | | | e-mail addresses from the pkg-descr file that could reasonably be mistaken for maintainer contact information in order to avoid confusion on the part of users looking for support. As a pleasant side effect this also avoids confusion and/or frustration for people who are no longer maintaining those ports. Notes: svn path=/head/; revision=246327
* - Switch SourceForge ports to the new File Release System: categories ↵Dmitry Marakasov2009-08-221-2/+1
| | | | | | | starting with G Notes: svn path=/head/; revision=240070
* - Reset maintainer and remove old MASTER_SITES.Wesley Shields2009-08-021-1/+1
| | | | | | | | PR: ports/137224 Submitted by: Martin Tournoij <carpetsmoker@rwxrwxrwx.net> (maintainer) Notes: svn path=/head/; revision=238752
* - bump all port that indirectly depends on libjpeg and have not yet been ↵Dirk Meyer2009-07-311-0/+1
| | | | | | | | | bumped or updated Requested by: edwin Notes: svn path=/head/; revision=238701
* - Update to 1.4.8.Alejandro Pulver2007-09-143-22/+16
| | | | | | | | | | - Take maintainership. PR: ports/115144 Submitted by: Martin Tournoij <carpetsmoker@xs4all.nl> Notes: svn path=/head/; revision=199464
* - Welcome X.org 7.2 \o/.Florent Thoumie2007-05-191-1/+1
| | | | | | | | - Set X11BASE to ${LOCALBASE} for recent ${OSVERSION}. - Bump PORTREVISION for ports intalling files in ${X11BASE}. Notes: svn path=/head/; revision=191544
* - Remove FreeBSD 4.X support from unmaintained ports in categories startingGabor Kovesdan2007-04-151-7/+1
| | | | | | | with letter f-h Notes: svn path=/head/; revision=190038
* Drop maintainershipJean-Yves Lefort2006-11-031-1/+1
| | | | Notes: svn path=/head/; revision=176271
* Remove USE_REINPLACE for categories starting with a GEdwin Groothuis2006-05-071-1/+0
| | | | Notes: svn path=/head/; revision=161663
* SHA256ifyEdwin Groothuis2006-01-221-0/+1
| | | | | | | Approved by: krion@ Notes: svn path=/head/; revision=154152
* - Fix compilation [1]Jean-Yves Lefort2005-07-022-4/+4
| | | | | | | | | | - Respect ${CXX} - When deinstalling, remove the score file if it is empty Reported by: kris [1] Notes: svn path=/head/; revision=138339
* BROKEN: Does not compileKris Kennaway2005-06-111-0/+2
| | | | Notes: svn path=/head/; revision=137295
* - Update to 1.4.7Jean-Yves Lefort2005-04-246-101/+61
| | | | | | | | | - Save high scores Approved by: adamw (implicit, mentor) Notes: svn path=/head/; revision=134066