aboutsummaryrefslogtreecommitdiff
path: root/games/ember
Commit message (Collapse)AuthorAgeFilesLines
* 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
* - Switch devel/libwfut to USES=libtool, drop .la filesDmitry Marakasov2014-08-191-1/+1
| | | | | | | | | - Bump dependent ports as .so version has changed Approved by: portmgr blanket Notes: svn path=/head/; revision=365413
* Upgrade OpenEXR and ilmbase to 2.2.0.Matthias Andree2014-08-151-0/+1
| | | | | | | | | | | | | | | | | | | | | | GCC 4.2 in FreeBSD 8.X/9.X base is now too old to compile OpenEXR, so GCC-based systems will upgrade to the default ports compiler (GCC 4.7 currently.) Add two patches to OpenEXR to permit building it in a live system with the older OpenEXR version installed. Bug report filed to upstream Github at https://github.com/openexr/openexr/issues/130 Couple OpenEXR more tightly to ilmbase and require its exact .so version. Add UPDATING note, and bump PORTREVISION of all dependent ports. Proto-STAGE hugin-devel, and mark it IGNORE because hugin is newer. Approved by: portmgr (implicit for bumping PORTREVISION on unstaged ports) Notes: svn path=/head/; revision=365038
* fix build by defining TOLUAXX_CMD on my ownOliver Lehmann2014-06-141-1/+2
| | | | Notes: svn path=/head/; revision=357766
* Finish conversion to USES=luaBaptiste Daroussin2014-05-261-5/+2
| | | | Notes: svn path=/head/; revision=355361
* update to 0.7.2Oliver Lehmann2014-03-236-495/+536
| | | | | | | switch to CLang Notes: svn path=/head/; revision=348847
* Now that the default version of GCC in the Ports Collection (perGerald Pfeifer2014-03-161-1/+1
| | | | | | | | | | lang/gcc and Mk/bsd.default-versions.mk) is GCC 4.7, replace USE_GCC=4.7+ by USE_GCC=yes. Approved by: portmgr (mat) Notes: svn path=/head/; revision=348436
* 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
* update devel/eris to 1.3.23Oliver Lehmann2014-03-051-1/+1
| | | | Notes: svn path=/head/; revision=347100
* fix build after boost updateOliver Lehmann2014-02-271-0/+2
| | | | Notes: svn path=/head/; revision=346265
* 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
* Chase boost and icu bumpBaptiste Daroussin2014-02-071-1/+1
| | | | | | | While here convert some LIB_DEPENDS Notes: svn path=/head/; revision=343214
* Convert the tree to USES=openalAntoine Brodin2013-12-251-2/+1
| | | | | | | Approved by: portmgr (bapt) Notes: svn path=/head/; revision=337464
* Convert LIB_DEPENDS for ports depending on boostBaptiste Daroussin2013-12-121-7/+7
| | | | Notes: svn path=/head/; revision=336255
* update devel/atlas-devel to 0.6.3 which now requires a C++-11 compilerOliver Lehmann2013-11-211-0/+3
| | | | | | | | | | new .so version changes in affected ports change some ports to use USE_GCC=4.7+ (tested with 4.7 and 4.8) as this is needed for dependencies to devel/atlas-devel finally fix the compilation error in games/ember for at least FreeBSD 9 Notes: svn path=/head/; revision=334470
* 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
* - Remove manual creation and removal of share/applications, as it's now in ↵Dmitry Marakasov2013-10-221-1/+0
| | | | | | | | | the mtree (games category) Approved by: portmgr (bdrewery) Notes: svn path=/head/; revision=331269
* 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
* Add an explicit dependency on pkgconfBaptiste Daroussin2013-09-061-1/+1
| | | | Notes: svn path=/head/; revision=326494
* - Remove MAKE_JOBS_SAFE variableAlex Kozlov2013-08-141-1/+0
| | | | | | | Approved by: portmgr (bdrewery) Notes: svn path=/head/; revision=324744
* This changes almost all the "gnomehack" only USE_GNOME cases to USES= pathfix.Eitan Adler2013-03-191-1/+1
| | | | | | | | | | | | If a port used other USE_GNOME items it was untouched. The ports that used other USES were fixed by hand. PR: ports/177081 Reviewed by: bapt Approved by: portmgr (miwi) Notes: svn path=/head/; revision=314640
* In categories starting with [efg], remove empty lines from pkg-plist (exceptAlexey Dokuchaev2013-03-171-1/+0
| | | | | | | for `graphics/kipi-plugins'). Notes: svn path=/head/; revision=314438
* Chase boost updateBaptiste Daroussin2013-01-311-1/+2
| | | | Notes: svn path=/head/; revision=311310
* update of the worldfordge suiteOliver Lehmann2013-01-193-1076/+1180
| | | | | | | | | | | | | devel/eris: 1.3.21 devel/mercator: 0.3.2 devel/varconf: 1.0.0 math/wfmath: 1.0.1 net/cyphesis: 0.6.0 net/skstream: 0.3.9 games/ember: 0.7.0 Notes: svn path=/head/; revision=310647
* Fix typos in COMMENTCarlo Strub2012-07-291-1/+1
| | | | | | | Approved by: portmgr@ (implicit) Notes: svn path=/head/; revision=301684
* update cegui to 0.7.7Oliver Lehmann2012-06-241-2/+2
| | | | Notes: svn path=/head/; revision=299903
* update cegui to 0.7.6Oliver Lehmann2012-06-241-2/+2
| | | | | | | | | | ignore tinyxml when installed and always use local copy [1] PR: ports/164547 [1] Submitted by: Yanhui Shen <shen.elf@gmail.com> [1] Notes: svn path=/head/; revision=299838
* - update png to 1.5.10Dirk Meyer2012-06-011-1/+1
| | | | Notes: svn path=/head/; revision=297915
* - Enable null renderer in ceguiDmitry Marakasov2012-05-281-2/+2
| | | | | | | | | | | - Fix cegui library versioning scheme PR: 167831 Submitted by: myself Approved by: maintainer timeout (oliver, 2 weeks) Notes: svn path=/head/; revision=297589
* - Update devel/sdl12 to 1.2.15Marcus von Appen2012-02-181-1/+1
| | | | | | | | | | | | | | | | - Update audio/sdl_mixer to 1.2.15 - Update graphics/sdl_image to 1.2.12 - Update graphics/sdl_ttf to 2.0.11 - Update graphics/sdl_gfx to 2.0.23 - Update net/sdl_net to 1.2.8 - Bump PORTREVISIONs on ports that depend on one or more packages due to ABI and shared library version changes - Update Mk/bsd.sdl.mk accordingly for the new shared library versions Tested by: exp-run by pav Notes: svn path=/head/; revision=291667
* update ogre to 1.7.4Oliver Lehmann2012-01-261-2/+3
| | | | | | | bump PORTREVISION on affected ports Notes: svn path=/head/; revision=289829
* remove patchfile which is no longer needed and fails to applyOliver Lehmann2011-12-111-21/+0
| | | | | | | | Noted by: pav Feature safe: yes Notes: svn path=/head/; revision=287208
* update varconf to 0.6.7Oliver Lehmann2011-12-093-357/+483
| | | | | | | | | | update eris to 1.3.19 update ember to 0.6.2 Feature safe: yes Notes: svn path=/head/; revision=287109
* Make @dirrms conditional for %%DOCSDIR%% on NOPORTDOCSChris Rees2011-11-131-1/+1
| | | | | | | | | | PR: ports/162136 Submitted by: 4720@hushmail.com Approved by: [no rejections from any maintainer within 14 days] Feature safe: yes Notes: svn path=/head/; revision=285709
* - Add LDFLAGS to CONFIGURE_ENV and MAKE_ENV (as it was done with LDFLAGS)Dmitry Marakasov2011-09-231-1/+1
| | | | | | | | | | | | - 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
* update graphics/ogre3d to 1.7.3Oliver Lehmann2011-08-011-2/+3
| | | | | | | bump PORTREVISION of affected ports Notes: svn path=/head/; revision=278688
* big WorldForge update:Oliver Lehmann2011-04-293-7/+8
| | | | | | | | | | | | update eris to 1.3.18 update wfmath to 0.3.11 update skstream to 0.3.8 update mercator to 0.3.0 update ember to 0.6.1 update cyphesis to 0.5.26 Notes: svn path=/head/; revision=273315
* graphics/cegui: update to 0.7.5Oliver Lehmann2011-03-105-29/+50
| | | | | | | | | | | | | graphics/ogre3d: update to 1.7.2 games/ember: update to 0.6.0 games/freeorion: update to 0.3.13.3795 games/vegastrike: Bump PORTREVISION x11-toolkits/gigi: Bump PORTREVISION PR: 153817, 153818 Notes: svn path=/head/; revision=270598
* update devel/mercator to 0.2.9Oliver Lehmann2011-01-201-2/+2
| | | | | | | Feature safe: yes Notes: svn path=/head/; revision=268030
* update devel/eris to 1.3.16Oliver Lehmann2010-10-211-1/+1
| | | | Notes: svn path=/head/; revision=263399
* correct my previous commit where i accidently bumped PORTVERSIONOliver Lehmann2010-09-091-1/+2
| | | | | | | | | | instead of PORTREVISION. I hope it is OK having PORTVERSION moving backwards and not bumping PORTEPOCH because the port was never buildable with this higher PORTVERSION Notes: svn path=/head/; revision=260829
* update devel/mercator to 0.2.8Oliver Lehmann2010-09-071-2/+2
| | | | | | | | update net/skstream to 0.3.7 bump PORTREVISION on affected ports Notes: svn path=/head/; revision=260698
* update ember to 0.5.8Oliver Lehmann2010-06-093-800/+1603
| | | | Notes: svn path=/head/; revision=256170
* - 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
* - Introduce USE_OPENAL variable for OpenAL consumersPav Lucistnik2010-01-251-3/+2
| | | | | | | | | | | | - Switch to openal-soft as a default OpenAL implementation PR: ports/142123 Submitted by: mva Tested by: pointyhat exp-run Approved by: portmgr (hat) Notes: svn path=/head/; revision=248567
* make the default install runableOliver Lehmann2010-01-111-1/+4
| | | | | | | bump PORTREVISION Notes: svn path=/head/; revision=247620
* update graphics/ogre3d to 1.6.5Oliver Lehmann2010-01-021-2/+3
| | | | Notes: svn path=/head/; revision=246980
* update to 0.5.7Oliver Lehmann2009-12-035-90/+46
| | | | Notes: svn path=/head/; revision=245167