aboutsummaryrefslogtreecommitdiff
path: root/graphics/rubygem-cairo
Commit message (Collapse)AuthorAgeFilesLines
* graphics/rubygem-cairo: Update to 1.17.13Po-Chuan Hsieh2023-12-252-5/+6
| | | | | | - Update WWW Changes: https://github.com/rcairo/rcairo/blob/master/NEWS
* graphics/rubygem-cairo: Update to 1.17.12Po-Chuan Hsieh2023-07-093-25/+4
| | | | Changes: https://github.com/rcairo/rcairo/blob/master/NEWS
* graphics/rubygem-cairo: fix build with clang 16Dimitry Andric2023-06-042-0/+21
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Clang 16 has a new error about incompatible function types, which shows up when building graphics/rubygem-cairo: rb_cairo_surface.c:2354:3: error: incompatible function pointer types passing 'VALUE (int, VALUE *, VALUE)' (aka 'unsigned long (int, unsigned long *, unsigned long)') to parameter of type 'VALUE (*)(VALUE, VALUE)' (aka 'unsigned long (*)(unsigned long, unsigned long)') [-Wincompatible-function-pointer-types] rb_define_method (rb_cCairo_GLSurface, "initialize", ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /usr/local/include/ruby-3.1/ruby/internal/anyargs.h:287:135: note: expanded from macro 'rb_define_method' #define rb_define_method(klass, mid, func, arity) RBIMPL_ANYARGS_DISPATCH_rb_define_method((arity), (func))((klass), (mid), (func), (arity)) ^~~~~~ /usr/local/include/ruby-3.1/ruby/internal/anyargs.h:276:1: note: passing argument to parameter here RBIMPL_ANYARGS_DECL(rb_define_method, VALUE, const char *) ^ /usr/local/include/ruby-3.1/ruby/internal/anyargs.h:255:72: note: expanded from macro 'RBIMPL_ANYARGS_DECL' RBIMPL_ANYARGS_ATTRSET(sym) static void sym ## _01(__VA_ARGS__, VALUE(*)(VALUE, VALUE), int); \ ^ rb_cairo_surface.c:2368:3: error: incompatible function pointer types passing 'VALUE (int, VALUE *, VALUE)' (aka 'unsigned long (int, unsigned long *, unsigned long)') to parameter of type 'VALUE (*)(VALUE, VALUE)' (aka 'unsigned long (*)(unsigned long, unsigned long)') [-Wincompatible-function-pointer-types] rb_define_method (rb_cCairo_GLTextureSurface, "initialize", ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /usr/local/include/ruby-3.1/ruby/internal/anyargs.h:287:135: note: expanded from macro 'rb_define_method' #define rb_define_method(klass, mid, func, arity) RBIMPL_ANYARGS_DISPATCH_rb_define_method((arity), (func))((klass), (mid), (func), (arity)) ^~~~~~ /usr/local/include/ruby-3.1/ruby/internal/anyargs.h:276:1: note: passing argument to parameter here RBIMPL_ANYARGS_DECL(rb_define_method, VALUE, const char *) ^ /usr/local/include/ruby-3.1/ruby/internal/anyargs.h:255:72: note: expanded from macro 'RBIMPL_ANYARGS_DECL' RBIMPL_ANYARGS_ATTRSET(sym) static void sym ## _01(__VA_ARGS__, VALUE(*)(VALUE, VALUE), int); \ ^ This is because rb_define_method's last argument is the 'arity' of the method, and in case of cr_gl_surface_initialize() and cr_gl_texture_surface_initialize() it should be -1 to indicate a variable number of arguments. PR: 271706 Approved by: portmgr (buildfix blanket) MFH: 2023Q2
* Mk/**ruby.mk: Switch from USE_RUBY=yes to USES=rubyMuhammad Moinur Rahman2023-01-141-1/+0
| | | | | | | | | | | | | | | | | | | | | | | | Switch from Mk/bsd.ruby.mk to Mk/Uses/ruby.mk Notable changes are. - Mk/bsd.ruby.mk is moved to Mk/Uses/ruby.mk. - USE_RUBY=yes is replaced with USES=ruby. - USE_RUBY_EXTCONF is replaced with USES=ruby:extconf. - USE_RUBY_RDOC is replaced with USES=ruby:rdoc. - USE_RUBY_SETUP is replaces with USES=ruby:setup. - RUBY_NO_BUILD_DEPENDS and RUBY_NO_RUN_DEPENDS are replaced with USES=ruby:{build,none,run}. - RUBY_REQUIRE isn't used anywhere, so removed. - USES=gem now implies USES=ruby. This is mainly the work of yasu@ at https://reviews.freebsd.org/D27863 I have just made some cosmetic changes and ran exp-run to test that the tree is not in a BROKEN state. Approved by: portmgr Differential Revision: https://reviews.freebsd.org/D37925
* Remove WWW entries moved into port MakefilesStefan Eßer2022-09-071-2/+0
| | | | | | | | | | Commit b7f05445c00f has added WWW entries to port Makefiles based on WWW: lines in pkg-descr files. This commit removes the WWW: lines of moved-over URLs from these pkg-descr files. Approved by: portmgr (tcberner)
* Add WWW entries to port MakefilesStefan Eßer2022-09-071-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | It has been common practice to have one or more URLs at the end of the ports' pkg-descr files, one per line and prefixed with "WWW:". These URLs should point at a project website or other relevant resources. Access to these URLs required processing of the pkg-descr files, and they have often become stale over time. If more than one such URL was present in a pkg-descr file, only the first one was tarnsfered into the port INDEX, but for many ports only the last line did contain the port specific URL to further information. There have been several proposals to make a project URL available as a macro in the ports' Makefiles, over time. This commit implements such a proposal and moves one of the WWW: entries of each pkg-descr file into the respective port's Makefile. A heuristic attempts to identify the most relevant URL in case there is more than one WWW: entry in some pkg-descr file. URLs that are not moved into the Makefile are prefixed with "See also:" instead of "WWW:" in the pkg-descr files in order to preserve them. There are 1256 ports that had no WWW: entries in pkg-descr files. These ports will not be touched in this commit. The portlint port has been adjusted to expect a WWW entry in each port Makefile, and to flag any remaining "WWW:" lines in pkg-descr files as deprecated. Approved by: portmgr (tcberner)
* graphics/rubygem-cairo: Update to 1.17.8Po-Chuan Hsieh2022-09-042-4/+4
| | | | Changes: https://github.com/rcairo/rcairo/blob/master/NEWS
* graphics/rubygem-cairo: Update to 1.17.7Po-Chuan Hsieh2022-08-272-4/+4
| | | | Changes: https://github.com/rcairo/rcairo/blob/master/NEWS
* graphics/rubygem-cairo: Update to 1.17.5Po-Chuan Hsieh2021-07-063-7/+8
| | | | | | | - Update LICENSE - Update WWW Changes: https://github.com/rcairo/rcairo/blob/master/NEWS
* One more small cleanup, forgotten yesterday.Mathieu Arnold2021-04-071-1/+0
| | | | Reported by: lwhsu
* Remove # $FreeBSD$ from Makefiles.Mathieu Arnold2021-04-061-1/+0
|
* Update to 1.16.2Sunpoet Po-Chuan Hsieh2018-11-112-5/+5
| | | | | | | Changes: https://github.com/rcairo/rcairo/blob/master/NEWS Notes: svn path=/head/; revision=484746
* Update to 1.15.14Sunpoet Po-Chuan Hsieh2018-08-212-4/+4
| | | | | | | Changes: https://github.com/rcairo/rcairo/blob/master/NEWS Notes: svn path=/head/; revision=477739
* Update to 1.15.13Sunpoet Po-Chuan Hsieh2018-05-032-4/+4
| | | | | | | Changes: https://github.com/rcairo/rcairo/blob/master/NEWS Notes: svn path=/head/; revision=468969
* Update to 1.15.12Sunpoet Po-Chuan Hsieh2018-03-152-4/+4
| | | | | | | Changes: https://github.com/rcairo/rcairo/blob/master/NEWS Notes: svn path=/head/; revision=464611
* Update to 1.15.11Sunpoet Po-Chuan Hsieh2017-12-142-4/+4
| | | | | | | Changes: https://github.com/rcairo/rcairo/blob/master/NEWS Notes: svn path=/head/; revision=456366
* Update to 1.15.10Sunpoet Po-Chuan Hsieh2017-10-162-4/+4
| | | | | | | Changes: https://github.com/rcairo/rcairo/blob/master/NEWS Notes: svn path=/head/; revision=452232
* Update to 1.15.9Sunpoet Po-Chuan Hsieh2017-06-042-4/+4
| | | | | | | Changes: https://github.com/rcairo/rcairo/blob/master/NEWS Notes: svn path=/head/; revision=442553
* Update to 1.15.8Sunpoet Po-Chuan Hsieh2017-05-312-6/+6
| | | | | | | Changes: https://github.com/rcairo/rcairo/blob/master/NEWS Notes: svn path=/head/; revision=442171
* Update to 1.15.7Sunpoet Po-Chuan Hsieh2017-05-022-4/+4
| | | | | | | Changes: https://github.com/rcairo/rcairo/blob/master/NEWS Notes: svn path=/head/; revision=439986
* Update to 1.15.6Sunpoet Po-Chuan Hsieh2017-04-282-6/+7
| | | | | | | | | - Add USES=gnome Changes: https://github.com/rcairo/rcairo/blob/master/NEWS Notes: svn path=/head/; revision=439642
* Update to 1.15.5Sunpoet Po-Chuan Hsieh2017-02-072-4/+4
| | | | | | | Changes: https://github.com/rcairo/rcairo/blob/master/NEWS Notes: svn path=/head/; revision=433607
* Convert USES=gem:autoplist to USES=gem since autoplist is defaultSteve Wills2016-04-271-1/+1
| | | | Notes: svn path=/head/; revision=414136
* create USES=gem and update rubygem- ports to use itSteve Wills2016-04-271-3/+1
| | | | | | | | | | Note that for now ports still have to have USE_RUBY=yes to use USES=gem PR: 209041 Differential Revision: https://reviews.freebsd.org/D6070 Notes: svn path=/head/; revision=414118
* 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
* Remove source and intermediate build output from intalled rubygem- portsSteve Wills2016-02-021-0/+2
| | | | | | | PR: 192949 Notes: svn path=/head/; revision=407788
* - Update to 1.14.3Sunpoet Po-Chuan Hsieh2015-09-122-3/+3
| | | | | | | Changes: https://github.com/rcairo/rcairo/blob/master/NEWS Notes: svn path=/head/; revision=396773
* - Update to 1.14.2Sunpoet Po-Chuan Hsieh2015-09-072-3/+3
| | | | | | | Changes: https://github.com/rcairo/rcairo/blob/master/NEWS Notes: svn path=/head/; revision=396314
* - Update to 1.14.1Sunpoet Po-Chuan Hsieh2015-05-032-3/+3
| | | | | | | Changes: https://github.com/rcairo/rcairo/blob/master/NEWS Notes: svn path=/head/; revision=385301
* - Add LICENSESunpoet Po-Chuan Hsieh2014-08-281-0/+3
| | | | Notes: svn path=/head/; revision=366419
* graphics/rubygem-cairo: update to 1.12.9Steve Wills2014-08-252-4/+4
| | | | Notes: svn path=/head/; revision=366149
* - Update rubygem-gnome2 and associated ports to 2.1.0Steve Wills2014-02-222-3/+3
| | | | Notes: svn path=/head/; revision=345660
* - Add stage supportSteve Wills2013-10-301-1/+0
| | | | Notes: svn path=/head/; revision=332044
* Add NO_STAGE all over the place in preparation for the staging support (cat: ↵Baptiste Daroussin2013-09-201-0/+1
| | | | | | | graphics) Notes: svn path=/head/; revision=327733
* Ruby/Cairo is a Ruby binding for Cairo.Steve Wills2013-06-093-0/+23
WWW: http://cairographics.org/ PR: ports/173373 Submitted by: Shin-ya Murakami <murashin@gfd-dennou.org> Notes: svn path=/head/; revision=320377