aboutsummaryrefslogtreecommitdiff
path: root/emulators
Commit message (Collapse)AuthorAgeFilesLines
* Update to util-linux-ng 2.17.2-12.24.el6_8.1.Tijl Coosemans2016-11-233-29/+29
| | | | | | | | PR: 214772 Submitted by: Piotr Kubaj <pkubaj@anongoth.pl> Notes: svn path=/head/; revision=426893
* QEMU requires pixman to build qemu-system-* targets regardless ofSean Bruno2016-11-211-1/+4
| | | | | | | | | | whether we are building for X or not. Add the dependency if PR: 214668 Submitted by: mail+freebsd@gerritbeine.de Notes: svn path=/head/; revision=426725
* Bump PORTREVISIONS for ports depending on the canonical version of GCC andGerald Pfeifer2016-11-2011-4/+11
| | | | | | | | | | | | 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
* emulators/kcemu, editors/wordgrinder: Document ncurses requirementJohn Marino2016-11-191-1/+1
| | | | | | | Approved by: ncurses blanket Notes: svn path=/head/; revision=426532
* devel/icu: update to 58.1Jan Beich2016-11-191-1/+1
| | | | | | | | | | Changes: http://site.icu-project.org/download/58 PR: 214384 Exp-run by: antoine Approved by: office (bapt) Notes: svn path=/head/; revision=426525
* emulators/i386-wine-devel: update to 1.9.23David Naylor2016-11-193-25/+51
| | | | Notes: svn path=/head/; revision=426368
* emulators/visualboyadvance-m: unbreak build with ffmpeg 3.xJan Beich2016-11-182-0/+174
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | In file included from src/common/ffmpeg.cpp:62: src/common/ffmpeg.h:70:5: error: unknown type name 'PixelFormat'; did you mean 'AVPixelFormat'? priv_PixelFormat pixfmt; ^~~~~~~~~~~~~~~~ AVPixelFormat src/common/ffmpeg.cpp:61:26: note: expanded from macro 'priv_PixelFormat' #define priv_PixelFormat PixelFormat ^ /usr/local/include/libavutil/pixfmt.h:60:6: note: 'AVPixelFormat' declared here enum AVPixelFormat { ^ src/common/ffmpeg.cpp:81:11: error: use of undeclared identifier 'avcodec_alloc_frame' pic = avcodec_alloc_frame(); ^ src/common/ffmpeg.cpp:92:28: error: use of undeclared identifier 'CODEC_ID_NONE'; did you mean 'AV_CODEC_ID_NONE'? if(fmt->audio_codec == CODEC_ID_NONE) ^~~~~~~~~~~~~ AV_CODEC_ID_NONE /usr/local/include/libavcodec/avcodec.h:192:5: note: 'AV_CODEC_ID_NONE' declared here AV_CODEC_ID_NONE, ^ src/common/ffmpeg.cpp:163:11: error: use of undeclared identifier 'PIX_FMT_RGB24'; did you mean 'AV_PIX_FMT_RGB24'? pixfmt = PIX_FMT_RGB24; ^~~~~~~~~~~~~ AV_PIX_FMT_RGB24 /usr/local/include/libavutil/pixfmt.h:64:5: note: 'AV_PIX_FMT_RGB24' declared here AV_PIX_FMT_RGB24, ///< packed RGB 8:8:8, 24bpp, RGBRGB... ^ src/common/ffmpeg.cpp:416:13: error: use of undeclared identifier 'avcodec_encode_video'; did you mean 'avcodec_encode_video2'? pkt.size = avcodec_encode_video(ctx, video_buf, VIDEO_BUF_LEN, f); ^~~~~~~~~~~~~~~~~~~~ avcodec_encode_video2 /usr/local/include/libavcodec/avcodec.h:5322:5: note: 'avcodec_encode_video2' declared here int avcodec_encode_video2(AVCodecContext *avctx, AVPacket *avpkt, ^ src/common/ffmpeg.cpp:468:13: error: use of undeclared identifier 'avcodec_encode_audio'; did you mean 'avcodec_encode_audio2'? pkt.size = avcodec_encode_audio(ctx, audio_buf, frame_len, ^~~~~~~~~~~~~~~~~~~~ avcodec_encode_audio2 /usr/local/include/libavcodec/avcodec.h:5283:5: note: 'avcodec_encode_audio2' declared here int avcodec_encode_audio2(AVCodecContext *avctx, AVPacket *avpkt, ^ PR: 214190 Obtained from: upstream Approved by: maintainer timeout (2 weeks) Notes: svn path=/head/; revision=426345
* emulators/kcemu: unbreak build with ffmpeg 3.xJan Beich2016-11-182-9/+45
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | ffmpeg.cc:79:29: error: use of undeclared identifier 'PIX_FMT_YUV420P'; did you mean 'AV_PIX_FMT_YUV420P'? _stream->codec->pix_fmt = PIX_FMT_YUV420P; ^~~~~~~~~~~~~~~ AV_PIX_FMT_YUV420P /usr/local/include/libavutil/pixfmt.h:62:5: note: 'AV_PIX_FMT_YUV420P' declared here AV_PIX_FMT_YUV420P, ///< planar YUV 4:2:0, 12bpp, (1 Cr & Cb sample per 2x2 Y samples) ^ ffmpeg.cc:100:12: error: use of undeclared identifier 'avcodec_alloc_frame' _frame = avcodec_alloc_frame(); ^ ffmpeg.cc:159:18: error: use of undeclared identifier 'avcodec_encode_video'; did you mean 'avcodec_encode_video2'? int out_size = avcodec_encode_video(_stream->codec, _buf, _bufsize, _frame); ^~~~~~~~~~~~~~~~~~~~ avcodec_encode_video2 /usr/local/include/libavcodec/avcodec.h:5261:5: note: 'avcodec_encode_video2' declared here int avcodec_encode_video2(AVCodecContext *avctx, AVPacket *avpkt, ^ ffmpeg.cc:159:55: error: cannot initialize a parameter of type 'AVPacket *' with an lvalue of type 'byte_t *' (aka 'unsigned char *') int out_size = avcodec_encode_video(_stream->codec, _buf, _bufsize, _frame); ^~~~ /usr/local/include/libavcodec/avcodec.h:5261:60: note: passing argument to parameter 'avpkt' here int avcodec_encode_video2(AVCodecContext *avctx, AVPacket *avpkt, ^ PR: 214188 Approved by: maintainer timeout (2 weeks) Notes: svn path=/head/; revision=426344
* emulators/citra: update to s20161115Jan Beich2016-11-172-5/+5
| | | | | | | Changes: https://github.com/citra-emu/citra/compare/ae2fab4...fb13bfe Notes: svn path=/head/; revision=426302
* Track QEMU upstream as we approach 2.8.0Sean Bruno2016-11-172-8/+7
| | | | Notes: svn path=/head/; revision=426294
* Reset edwin's ports, he has handed in his commit bit.Rene Ladan2016-11-161-1/+1
| | | | | | | With hat: portmgr-secretary Notes: svn path=/head/; revision=426269
* Update to Wine 1.9.23. This includes the following changes:Gerald Pfeifer2016-11-163-6/+29
| | | | | | | | | | - Color font support in Direct2D. - More color formats in Direct3D. - Uninstallation fixes in MSI. - Various bug fixes. Notes: svn path=/head/; revision=426233
* emulators/ppsspp: link to upstream issue for BROKENJan Beich2016-11-141-2/+5
| | | | Notes: svn path=/head/; revision=426134
* Do not terminate BROKEN messages with period, it is added by the framework.Alexey Dokuchaev2016-11-141-1/+1
| | | | Notes: svn path=/head/; revision=426104
* Mark as broken on various tier-2 archs.Mark Linimon2016-11-144-4/+11
| | | | | | | | | While here, pet portlint. Approved by: portmgr (tier-2 blanket) Notes: svn path=/head/; revision=426089
* - fix build with ffmpeg3Dirk Meyer2016-11-141-1/+4
| | | | | | | PR: 214189 Notes: svn path=/head/; revision=426087
* Fix build with devel/ncurses installed.Sean Bruno2016-11-142-4/+16
| | | | | | | | PR: 214484 Submitted by: John Hein <z7dr6ut7gs@snkmail.com> Notes: svn path=/head/; revision=426079
* - Verbosify buildDmitry Marakasov2016-11-121-1/+1
| | | | | | | Approved by: portmgr blanket Notes: svn path=/head/; revision=425946
* Update qemu-sbruno/bsd-user to caputre a pile of memory leak abatementsSean Bruno2016-11-112-7/+7
| | | | | | | in upstream QEMU. Notes: svn path=/head/; revision=425912
* Track used or drop unused devel/icu dependencyJan Beich2016-11-111-3/+2
| | | | | | | | | | | | | This tries to fix discrepancy between $ pkg rquery '%o %B' | awk '/libicu/ { print $1 }' | sort -u $ git grep -lF :devel/icu | sed 's,/Makefile$,,' PR: 214384 Reported by: tijl, stage-qa, readelf(1) Notes: svn path=/head/; revision=425890
* Update libspectrum, fuse and fuse-utils to 1.3.1Rene Ladan2016-11-097-13/+13
| | | | | | | Reported by: portscout Notes: svn path=/head/; revision=425802
* The 64-bit arm arch is actually spelled 'aarch64', not 'arm64'.Mark Linimon2016-11-082-2/+2
| | | | Notes: svn path=/head/; revision=425758
* Delete duplicate distinfo lines that I inserted with make makesum.Sean Bruno2016-11-081-2/+0
| | | | | | | | | | Pointyhat fits nicely. PR: 214309 Submitted by: pkubaj@anongoth.pl Notes: svn path=/head/; revision=425742
* - Add LICENSEDmitry Marakasov2016-11-084-12/+15
| | | | | | | - Regenerate patches Notes: svn path=/head/; revision=425731
* Mark as broken on arm64.Mark Linimon2016-11-081-0/+2
| | | | | | | Approved by: portmgr (tier-2 blanket) Notes: svn path=/head/; revision=425701
* Mark as broken on arm64.Mark Linimon2016-11-081-0/+2
| | | | Notes: svn path=/head/; revision=425695
* Hopeless on anything other than x86.Mark Linimon2016-11-081-0/+3
| | | | Notes: svn path=/head/; revision=425673
* Update and track upstream QEMU 2.7.50Sean Bruno2016-11-084-15/+34
| | | | | | | No changes to qemu-user are intended here, nor are there and fixes here. Notes: svn path=/head/; revision=425656
* - Add LICENSEDmitry Marakasov2016-11-072-6/+9
| | | | | | | | - Add missing dependency - Regenerate patches Notes: svn path=/head/; revision=425638
* - Add LICENSEDmitry Marakasov2016-11-075-72/+75
| | | | | | | | | - Add missing dependency - Switch pkg-plist to DATADIR and DOCSDIR - Regenerate patches Notes: svn path=/head/; revision=425631
* Winetricks is an easy way to work around problems in Wine.Matthew Seaman2016-11-075-0/+43
| | | | | | | | | | | | | | It has a menu of supported games/apps for which it can do all the workarounds automatically. It also lets you install missing DLLs or tweak various Wine settings individually. WWW: https://wiki.winehq.org/Winetricks PR: 211293 Submitted by: Nikolai Lifanov <lifanov@mail.lifanov.com> Notes: svn path=/head/; revision=425599
* - use new ffmpeg idsDirk Meyer2016-11-061-1/+4
| | | | | | | PR: 214189 Notes: svn path=/head/; revision=425573
* Update to Wine 1.9.22. This includes the following changes:Gerald Pfeifer2016-11-063-6/+16
| | | | | | | | | | - Initial implementation of bitmap rendering in Direct2D. - More WebServices implementation. - A few more steps towards HID support. - Various bug fixes. Notes: svn path=/head/; revision=425502
* Convert knobs to optionsJason E. Hale2016-11-063-27/+19
| | | | | | | | | | Convert to USES=localbase Add LICENSE (GPLv2+) Remake/rename patches according to convention Bump PORTREVISION so options are registered Notes: svn path=/head/; revision=425482
* Fix modes for /compat/linux/sys.Jung-uk Kim2016-11-048-8/+8
| | | | | | | | | This commit is analogous to r425303 and r425309 for /compat/linux/proc. MFH: 2016Q4 Notes: svn path=/head/; revision=425333
* Apply r425303 to linux_base-f10: Fix modes for /compat/linux/procAntoine Brodin2016-11-042-2/+2
| | | | Notes: svn path=/head/; revision=425309
* Fix modes for /compat/linux/procBaptiste Daroussin2016-11-046-6/+6
| | | | | | | | | | | | When linprocfs is mounted the mode set to /compat/linux/proc is set to 555 while the package said 755 meaning pkg will try to change it 755 and fail preventing upgrade or installation of the package because linprocfs does not support changing attributes. Enforce it to 555 to prevent that situation Notes: svn path=/head/; revision=425303
* Remove NVIDIA option from Linux ports now that the nvidia-driver can beTijl Coosemans2016-11-032-12/+4
| | | | | | | installed later. Notes: svn path=/head/; revision=425274
* Cleanup no longer needed CHMOD usage after r424898.Mathieu Arnold2016-11-022-14/+0
| | | | | | | | | | PR: 213743 Submitted by: mat Exp-run by: antoine Sponsored by: Absolight Notes: svn path=/head/; revision=425174
* - Fix plist when DEBUG enabled on 11Li-Wen Hsu2016-11-022-4/+11
| | | | | | | | Reviewed by: jkim Differential Revision: https://reviews.freebsd.org/D5071 Notes: svn path=/head/; revision=425106
* emulators/citra: update to s20161031Jan Beich2016-11-012-5/+10
| | | | | | | | | - Fix citra --version output Changes: https://github.com/citra-emu/citra/compare/8b833d3...ae2fab4 Notes: svn path=/head/; revision=425041
* emulators/citra: update to s20161027Jan Beich2016-10-283-7/+7
| | | | | | | Changes: https://github.com/citra-emu/citra/commit/f672c7b Notes: svn path=/head/; revision=424799
* - Verbosify buildDmitry Marakasov2016-10-261-1/+1
| | | | | | | Approved by: portmgr blanket Notes: svn path=/head/; revision=424701
* - Fix build on 11.x+ by fixing abs() issueDmitry Marakasov2016-10-252-3/+15
| | | | | | | | | | - Mention c++11 requirement - Mark broken on 9.x: does not build due to lacking c++11 support Approved by: portmgr blanket Notes: svn path=/head/; revision=424624
* - Mark broken on 9.x: does not build:Dmitry Marakasov2016-10-242-32/+40
| | | | | | | | | | | multiboot.raw: option ROM does not begin with magic 55 aa - Add missing files to plist Approved by: portmgr blanket Notes: svn path=/head/; revision=424575
* OPTIONS_SET/OPTIONS_UNSET are global variables, they cannot be used in ports ↵Mathieu Arnold2016-10-243-3/+3
| | | | | | | | | | | | | | | Makefiles. So, replace them with OPTIONS_SLAVE, OPTIONS_EXCLUDE, OPTIONS_DEFAULT, where appropriate. The ghostscript ports are doing something nasty that is certainly wrong, but I don't want to try to understand it. Sponsored by: Absolight Notes: svn path=/head/; revision=424560
* Update to 5.1.8.Jung-uk Kim2016-10-231-2/+1
| | | | | | | | PR: 213683 Differential Revision: https://reviews.freebsd.org/D8292 Notes: svn path=/head/; revision=424538
* Update to 5.1.8.Jung-uk Kim2016-10-237-68/+13
| | | | | | | | PR: 213683 Differential Revision: https://reviews.freebsd.org/D8292 Notes: svn path=/head/; revision=424537
* emulators/citra: list more licensesJan Beich2016-10-221-1/+6
| | | | Notes: svn path=/head/; revision=424471
* Update grep to 2.20-5.el6_8 and use SRC_SUFX.Tijl Coosemans2016-10-223-219/+219
| | | | | | | | PR: 213264 Submitted by: pkubaj@anongoth.pl Notes: svn path=/head/; revision=424466