aboutsummaryrefslogtreecommitdiff
path: root/emulators/visualboyadvance-m
Commit message (Collapse)AuthorAgeFilesLines
* - Fix LICENSEDmitry Marakasov2020-08-262-16/+17
| | | | | | | | | | | - Add LICENSE_FILE - Pet portlint - Update WWW Approved by: portmgr blanket Notes: svn path=/head/; revision=546257
* e*: Add missing USES={gnome,sdl,xorg}Tobias Kortkamp2019-11-081-2/+2
| | | | Notes: svn path=/head/; revision=517045
* Add USES=xorg USES=gl, ports categories eNiclas Zeising2019-11-051-1/+2
| | | | | | | | Add USES=xorg, USES=gl and in a few cases USES=gnome to ports in categories starting with 'e'. Notes: svn path=/head/; revision=516802
* emulators/visualboyadvance-m: Clean up GVBAM dependenciesTobias Kortkamp2019-10-061-8/+6
| | | | | | | - Drop nop GVBAM_USE_GNOME Notes: svn path=/head/; revision=513874
* multimedia/ffmpeg: update to 4.2Jan Beich2019-08-051-1/+1
| | | | | | | | Changes: https://git.ffmpeg.org/gitweb/ffmpeg.git/blob/n4.2:/Changelog ABI: https://abi-laboratory.pro/tracker/timeline/ffmpeg/ Notes: svn path=/head/; revision=508216
* 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
* emulators/visualboyadvance-m: Fix ASMSCALERS optionTobias Kortkamp2019-05-261-4/+4
| | | | | | | | | | | | | - There is no opt_CMAKE_ARGS helper - It requires Nasm - Ninja breaks the build with it on: ninja: error: build.ninja:737: bad $-escape (literal $ must be written as $$) FLAGS = -I$(CMAKE_SOURCE_DIR)/src/filters/hq/asm/ -O1 -DELF -w-orphan-... ^ near here Notes: svn path=/head/; revision=502682
* Unbreak emulators/visualboyadvance-mTobias Kortkamp2019-02-113-2/+33
| | | | | | | | | | | fex/fex/File_Extractor.h:181:58: error: cannot initialize return object of type 'blargg_err_t' (aka 'const char *') with an lvalue of type 'const int' inline blargg_err_t File_Extractor::rewind_v() { return blargg_ok; } PR: 223538 Submitted by: w.schwarzenfeld@utanet.at (based on) Notes: svn path=/head/; revision=492675
* Change cmake default behaviour to outsource.Tobias C. Berner2018-12-251-1/+1
| | | | | | | | | | | | | | Ports that build out of source now simply can use "USES=cmake" instead of "USES=cmake:outsource". Ports that fail to build out of source now need to specify "USES=cmake:insource". I tried to only set insource where explictely needed. PR: 232038 Exp-run by: antoine Notes: svn path=/head/; revision=488341
* multimedia/ffmpeg: update to 4.1Jan Beich2018-11-061-1/+1
| | | | | | | | Changes: https://git.ffmpeg.org/gitweb/ffmpeg.git/blob/n4.1:/Changelog ABI: https://abi-laboratory.pro/tracker/timeline/ffmpeg/ Notes: svn path=/head/; revision=484273
* Mark BROKEN: fails to buildAntoine Brodin2018-11-041-0/+1
| | | | | | | | | | | src/gba/Cheats.cpp:2480:5: error: non-constant-expression cannot be narrowed from type 'unsigned int' to 'u8' (aka 'unsigned char') in initializer list [-Wc++11-narrowing] address & 255, ^~~~~~~~~~~~~ Reported by: pkg-fallout Notes: svn path=/head/; revision=484102
* multimedia/ffmpeg: update to 4.0Jan Beich2018-05-021-1/+1
| | | | | | | | | | | | | | | - FFSERVER support was removed upstream - libressl now uses libtls backend instead of patching openssl one - Clang i386 no longer uses 16-byte aligned stack Changes: https://git.ffmpeg.org/gitweb/ffmpeg.git/blob/n4.0:/Changelog ABI: https://abi-laboratory.pro/tracker/timeline/ffmpeg/ PR: 227726 Exp-run by: antoine Differential Revision: https://reviews.freebsd.org/D15175 Notes: svn path=/head/; revision=468844
* emulators/visualboyadvance-m: unbreak with ffmpeg 4.0Jan Beich2018-05-021-7/+52
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | src/common/ffmpeg.cpp:288:27: error: use of undeclared identifier 'FF_MIN_BUFFER_SIZE' audio_buf = (u8 *)malloc(AUDIO_BUF_LEN); ^ src/common/ffmpeg.cpp:88:36: note: expanded from macro 'AUDIO_BUF_LEN' ^ src/common/ffmpeg.cpp:288:27: error: use of undeclared identifier 'FF_MIN_BUFFER_SIZE' src/common/ffmpeg.cpp:88:69: note: expanded from macro 'AUDIO_BUF_LEN' ^ src/common/ffmpeg.cpp:307:27: error: use of undeclared identifier 'FF_MIN_BUFFER_SIZE' video_buf = (u8 *)malloc(VIDEO_BUF_LEN); ^ src/common/ffmpeg.cpp:90:24: note: expanded from macro 'VIDEO_BUF_LEN' ^ src/common/ffmpeg.cpp:438:29: error: use of undeclared identifier 'AVFMT_RAWPICTURE' if(oc->oformat->flags & AVFMT_RAWPICTURE) { ^ src/common/ffmpeg.cpp:447:20: error: use of undeclared identifier 'FF_MIN_BUFFER_SIZE' pkt.size = VIDEO_BUF_LEN; ^ src/common/ffmpeg.cpp:90:24: note: expanded from macro 'VIDEO_BUF_LEN' ^ src/common/ffmpeg.cpp:463:16: error: use of undeclared identifier 'FF_MIN_BUFFER_SIZE' if(pkt.size > VIDEO_BUF_LEN) { ^ src/common/ffmpeg.cpp:90:24: note: expanded from macro 'VIDEO_BUF_LEN' ^ PR: 227726 Reported by: antoine (via exp-run) Obtained from: upstream Notes: svn path=/head/; revision=468834
* For ports that are marked BROKEN on armv6, and also fail to build onMark Linimon2017-11-301-0/+1
| | | | | | | | | | | | | 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 Notes: svn path=/head/; revision=455167
* Fix whitespace issues (mixed tab/spaces, alignment) in a few ports.Jimmy Olgeni2017-11-011-1/+1
| | | | Notes: svn path=/head/; revision=453284
* multimedia/ffmpeg: update to 3.4Jan Beich2017-10-211-1/+1
| | | | | | | | | | | | | | | | | | | | | | 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 Notes: svn path=/head/; revision=452570
* Remove WANT_GNOME and HAVE_GNOME.Mathieu Arnold2017-10-121-1/+0
| | | | | | | | | Approved by: bapt kwm Sponsored by: Absolight Differential Revision: https://reviews.freebsd.org/D12643 Notes: svn path=/head/; revision=451901
* These ports fail the same way on armv6 as they do on aarch64.Mark Linimon2017-05-261-1/+2
| | | | | | | Approved by: portmgr (tier-2 blanket) Notes: svn path=/head/; revision=441784
* Revision bump of all ports with USE_GL after consolidation of mesa-libsMatthew Rezny2017-05-231-1/+1
| | | | | | | | Approved by: swills (mentor) Differential Revision: https://reviews.freebsd.org/D10845 Notes: svn path=/head/; revision=441503
* - Remove bogus (in presence of USE_GITHUB) USES=tar*Dmitry Marakasov2016-12-294-106/+54
| | | | | | | | | | | | | - Switch to options helpers - Fix build with GBVAM and/or without SDL (add mising files and conditions to plist) - Fix manpage installation (patch mandir instead of moving file later, no need to empty directory in the plist) - Fix build with LIRC (remove double patching) - Fix build with LINK (use correct version of SFML) Approved by: portmgr blanket Notes: svn path=/head/; revision=429917
* multimedia/ffmpeg: update to 3.2.2Jan Beich2016-12-111-1/+1
| | | | | | | | | | Changes: https://git.ffmpeg.org/gitweb/ffmpeg.git/blob/n3.2.2:/Changelog PR: 207547 Submitted by: riggs, ebirth@b0ss.net (libressl fix) Exp-run by: antoine (3 tries) Notes: svn path=/head/; revision=428352
* 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
* The 64-bit arm arch is actually spelled 'aarch64', not 'arm64'.Mark Linimon2016-11-081-1/+1
| | | | Notes: svn path=/head/; revision=425758
* Mark as broken on arm64.Mark Linimon2016-11-081-0/+2
| | | | | | | Approved by: portmgr (tier-2 blanket) Notes: svn path=/head/; revision=425701
* ${RM} already has -f.Mathieu Arnold2016-10-211-1/+1
| | | | | | | | | | PR: 213570 Submitted by: mat Exp-run by: antoine Sponsored by: Absolight Notes: svn path=/head/; revision=424411
* emulators/visualboyadvance-m: 1.8.0 -> 2.0.0b2Kurt Jaeger2016-08-139-60/+65
| | | | | | | | | | | | | | | - patted portlint - patches are now makepatch compliant PR: 210058 Changes: http://vba-m.com/forum/showthread.php?tid=1037&pid=6091#pid6091 http://vba-m.com/forum/showthread.php?tid=1036&pid=6090#pid6090 Submitted by: Piotr Kubaj <pkubaj@anongoth.pl> Reviewed by: pawel Approved by: Allison N. Reid <root@cooltrainer.org> (maintainer) Notes: svn path=/head/; revision=420162
* Convert to @sampleBaptiste Daroussin2016-04-101-3/+1
| | | | Notes: svn path=/head/; revision=412902
* Remove ${PORTSDIR}/ from dependencies, categories d, e, f, and g.Mathieu Arnold2016-04-011-12/+12
| | | | | | | | With hat: portmgr Sponsored by: Absolight Notes: svn path=/head/; revision=412346
* emulators/visualboyadvance-m: Expand patch to support malloc.h-less DFJohn Marino2015-11-131-1/+1
| | | | Notes: svn path=/head/; revision=401488
* Bump portrevision after png updateBaptiste Daroussin2014-12-251-1/+1
| | | | Notes: svn path=/head/; revision=375598
* Change libpng15.so to libpng.so in LIB_DEPENDS to prepare the upgradeAntoine Brodin2014-12-251-1/+1
| | | | Notes: svn path=/head/; revision=375594
* Replace USES=libtool:oldver with USES=libtool or USES=libtool:keepla inTijl Coosemans2014-12-081-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | the 32 ports that still use it. Bump PORTREVISION on their dependent ports except the ones that depend on these: audio/libogg audio/libvorbis devel/pcre ftp/curl graphics/jpeg graphics/libart_lgpl graphics/tiff textproc/expat2 textproc/libxslt In these cases the same trick as in the recent gettext update is used. The ports install a symlink with the old library version. When enough of their dependent ports have had regular updates the remaining ones can get a PORTREVISION bump and the links can be removed. Also remove the devel/pcre dependency from USE_GNOME=glib20. It causes over 2200 packages to depend on devel/pcre while less than 200 actually link with it. The glib20 package still depends on devel/pcre so this should not make a difference for ports with USE_GNOME=glib20. Also, libdata/pkgconfig/glib-2.0.pc lists pcre as a private library so USE_GNOME=glib20 should not propagate it. PR: 195724 Exp-run by: antoine Approved by: portmgr (antoine) Notes: svn path=/head/; revision=374303
* Clean up plistBaptiste Daroussin2014-10-271-6/+0
| | | | Notes: svn path=/head/; revision=371563
* 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 to sfml1 in preparation to sfml updateDmitry Marakasov2014-08-191-4/+11
| | | | | | | | | | - SFML is only needed for LINK option - Fix build when LIRC is enabled Approved by: portmgr blanket Notes: svn path=/head/; revision=365375
* comms/lirc:Tijl Coosemans2014-08-111-0/+1
| | | | | | | | | | | | - Fix missing -lusb [1] - Convert to USES=libtool and bump dependent ports - Add INSTALL_TARGET=install-strip - Use @sample Reported by: sbruno [1] Notes: svn path=/head/; revision=364613
* emulators/visualboyadvance-m: Upgrade version r1001 => r1231John Marino2014-06-2012-126/+166
| | | | | | | | | | | | | | | Improvements: * Add Link support * Add Lirc support * Patch SDL interface (thanks dennylin93) * Several new translations * Many small fixes to various titles PR: 189647 Submitted by: maintainer (Nicole Reid) Notes: svn path=/head/; revision=358546
* Convert to USES=dos2unixBaptiste Daroussin2014-05-261-3/+1
| | | | | | | With hat: portmgr Notes: svn path=/head/; revision=355278
* - Remove manual creation and removal of share/applications, as it's now in ↵Dmitry Marakasov2013-10-221-1/+0
| | | | | | | | | the mtree (categories starting with [bce]) Approved by: portmgr (bdrewery) Notes: svn path=/head/; revision=331271
* emulators/visualboyadvance-m: fix buildWilliam Grzybowski2013-10-054-23/+59
| | | | | | | | | | | | - Fix build [1] - Convert lib depends to new format - Allow staging PR: ports/181413 [1] Submitted by: David Demelier <demelier.david gmail.com> (maintainer) [1] Notes: svn path=/head/; revision=329437
* Add NO_STAGE all over the place in preparation for the staging support (cat: ↵Baptiste Daroussin2013-09-201-0/+1
| | | | | | | emulators) Notes: svn path=/head/; revision=327721
* Add a explicit dependency on pkgconfBaptiste Daroussin2013-09-181-1/+1
| | | | Notes: svn path=/head/; revision=327522
* Convert from USE_GETTEXT to USES= gettextBaptiste Daroussin2013-04-261-13/+11
| | | | | | | | | While here: - Trim some headers - Convert to new options framework Notes: svn path=/head/; revision=316624
* - convert USE_CMAKE to USESMax Brazhnikov2013-03-221-1/+1
| | | | | | | | | | - while here clean up some ports from CMAKE_VERBOSE, which is intended for users Approved by: portmgr (miwi) Notes: svn path=/head/; revision=314960
* - update png to 1.5.10Dirk Meyer2012-06-011-2/+2
| | | | Notes: svn path=/head/; revision=297915
* - 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
* - Fix SFML dependency (use LIB_DEPENDS as now sfml installs numbered .so ↵Dmitry Marakasov2011-09-091-3/+3
| | | | | | | | | | | libraries) PR: 160045 Submitted by: myself Approved by: maintainer timeout Notes: svn path=/head/; revision=281477
* - Update to 1001:Dmitry Marakasov2011-08-046-26/+77
| | | | | | | | | | | | | | - Added support for GBA cheats - Added RTC support - Added vba-over.ini support - Added internationalization support - Added 7zip support PR: 159387 Submitted by: Nicole Reid <root@cooltrainer.org> (maintainer) Notes: svn path=/head/; revision=278924
* - Update to 1.8.0r966Nicola Vitale2010-12-133-7/+12
| | | | | | | | | | | - Patch CMakeList.txt to build properly with devel/cmake 2.8.3 - Remove MD5 checksum from distinfo PR: ports/152594 Submitted by: Nicole Reid <root@cooltrainer.org> (maintainer) Notes: svn path=/head/; revision=266222
* - Add missing bits of the previous commit that somehow were not committed, ↵Dmitry Marakasov2010-09-244-1/+23
| | | | | | | | | | | | this also fixed build - Bump PORTREVISION PR: 144064 Submitted by: okeeblow <root@cooltrainer.org> Notes: svn path=/head/; revision=261779