aboutsummaryrefslogtreecommitdiff
path: root/graphics/cairomm
Commit message (Collapse)AuthorAgeFilesLines
* Remove # $FreeBSD$ from Makefiles.Mathieu Arnold2021-04-061-1/+0
|
* Add USES=xorg USES=gl, ports categories gNiclas Zeising2019-11-051-1/+1
| | | | | | | | Add USES=xorg and USES=gl to ports in categories starting with 'g'. While here, try to sprinkle other USES (mostly gnome and sdl) as needed. Notes: svn path=/head/; revision=516845
* 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
* graphics/cairomm: Fix DOCS optionTobias Kortkamp2019-05-261-1/+1
| | | | | | | | | | There is no opt_CONFIGURE_ARGS_OFF helper. While nothing was really broken thanks to having @comment in the plist with the option off. Actually passing --disable-documentation to configure should save a tiny bit of build time during builds with DOCS=off. Notes: svn path=/head/; revision=502691
* 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
* Bump PORTREVISION for ports depending on the canonical version of GCCGerald Pfeifer2018-07-291-1/+1
| | | | | | | | | | | | | | | | | in the ports tree (via Mk/bsd.default-versions.mk and lang/gcc) which has now moved from GCC 6 to GCC 7 by default. This includes ports - featuring USE_GCC=yes or USE_GCC=any, - featuring USES=fortran, - using Mk/bsd.octave.mk which in turn features USES=fortran, and those - with USES=compiler specifying one of openmp, nestedfct, c11, c++0x, c++11-lib, c++11-lang, c++14-lang, c++17-lang, or gcc-c++11-lib. PR: 222542 Notes: svn path=/head/; revision=475857
* Bump PORTREVISION for ports depending on the canonical version of GCCGerald Pfeifer2017-09-101-0/+1
| | | | | | | | | | | | | | | | | (via Mk/bsd.default-versions.mk and lang/gcc) which has moved from GCC 5.4 to GCC 6.4 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, c++11-lib, c++11-lang, c++14-lang, c++0x, c11, or gcc-c++11-lib. PR: 219275 Notes: svn path=/head/; revision=449591
* Update the gtk+ stack [1]Koop Mast2017-04-233-51/+75
| | | | | | | | | | | | | | | | | | | | | | | | | Update gdk-pixbuf2 to 2.36.6 Update gtk30 to 3.22.12 Update cairomm to 1.12.2 Update gtkmm30 to 3.22.0 Update the following themes to be compatible with the new gtk+ version: Update adwaita-icon-theme to 3.22.0 Update gnome-themes-standard to 3.22.3 Update gtk-E17-theme to 3.22.1 [2] Update gtk-arc-themes to 20170302 [3] Update mate-themes to 3.22.10 Bump xfce4-notifyd due to new gtk30 version, requested by olivierd@. Mark LordsaWar broken, it doesn't build with cairomm 1.12. PR: 210272 [1], 210696 [2], 218667 [3] Submitted by: Matthew Rezny [2] Obtained from: Unless otherwise stated obtained from GNOME devel repo Exp-run by: antoine@ [1] Notes: svn path=/head/; revision=439206
* Fix build with newer sigc++20Baptiste Daroussin2017-04-021-1/+2
| | | | Notes: svn path=/head/; revision=437569
* - Switch to options helpersDmitry Marakasov2015-08-261-5/+1
| | | | | | | | | - While here, add some NO_ARCHes Approved by: portmgr blanket Notes: svn path=/head/; revision=395389
* Drop :keepla from libtool USES.Koop Mast2015-08-012-4/+2
| | | | Notes: svn path=/head/; revision=393402
* Cleanup plistBaptiste Daroussin2014-10-201-8/+0
| | | | Notes: svn path=/head/; revision=371283
* Remove NOPORTDOCS and NOPORTEXAMPLES.Adam Weinberger2014-07-041-3/+6
| | | | Notes: svn path=/head/; revision=360491
* When linking a library libA with a library libB using libtool, if libB.laTijl Coosemans2014-04-231-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | exists, libtool will add all libraries libB.la refers to (dependency_libs field) to the linker command line and store them in the dependency_libs field of libA.la. So everything that subsequently links with libA will also link to these extra libraries. This causes too much overlinking. This commit modifies Mk/Uses/libtool.mk so it empties the dependency_libs field in .la libraries during staging. However, because .la libraries have very limited use when dependency_libs is empty it makes sense to completely remove them during staging. So with this commit USES=libtool is modified to remove .la libraries and a new form (USES=libtool:keepla) is introduced in case they need to be kept (dependency_libs is still emptied). PORTREVISION is bumped on all ports with USES=libtool that install .la libraries. Most ports are also changed to add :keepla because .la libraries have to be kept around as long as there are dependent ports with .la libraries that refer to them in their dependency_libs field. In most cases :keepla can be removed again as soon as all dependent ports that install .la libraries have some form of USES=libtool added to their Makefile. PR: ports/188759 Exp-run: bdrewery Approved by: portmgr (bdrewery) Notes: svn path=/head/; revision=351936
* Stagify.Koop Mast2014-03-072-7/+8
| | | | | | | | Use USES=libtool pathfix Use USE_GNOME for cairo and libxml++26 depends. Notes: svn path=/head/; revision=347351
* - Stage supportMartin Wilke2014-02-171-1/+0
| | | | Notes: svn path=/head/; revision=344648
* Fix NO_STAGE attributionBaptiste Daroussin2013-09-221-1/+1
| | | | Notes: svn path=/head/; revision=327888
* 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
* Add an explicit dependency on pkgconfBaptiste Daroussin2013-09-021-6/+2
| | | | Notes: svn path=/head/; revision=326025
* - update png to 1.5.10Dirk Meyer2012-06-011-0/+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-3/+3
| | | | | | | | | | | | - 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
* Remove USE_GNOME=gnometarget from ports. It has been a empty keyword sinceKoop Mast2011-08-111-1/+1
| | | | | | | | | | mid 2008. PR: ports/159624 Submitted by: Ruslan Mahmatkhanov <cvs-src@yandex.ru> Notes: svn path=/head/; revision=279506
* Update the glib and gtk stack to the lastest stable releases.Koop Mast2011-07-303-17/+49
| | | | | | | | | | | Add new ports for the new stable releases of gtk+-3.0. Update vala to the newest stable release 0.12.1. Thanks to pav@ for doing multiple exp-runs, and marcus@ for repo-copies. Full contributors acknowledgment will be given in the GNOME 3 import. Notes: svn path=/head/; revision=278556
* -remove MD5Olli Hauer2011-07-031-1/+0
| | | | Notes: svn path=/head/; revision=276992
* Sync to new bsd.autotools.mkAde Lovett2010-12-041-1/+1
| | | | Notes: svn path=/head/; revision=265663
* Presenting GNOME 2.32.1 for FreeBSD. The offical release notes for thisKoop Mast2010-11-204-20/+25
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | release can be found at http://library.gnome.org/misc/release-notes/2.32/ This will be the last release of the GNOME 2.x series, mainly a bugfix and bridge release to the first release of the GNOME 3.x series. This release features commits by avl, marcus, mezz and myself. The FreeBSD GNOME Team would like to thank the following contributors and testers for there help with this release: Zane C.B. <vvelox@vvelox.net> romain@ Olaf Seibert <O.Seibert@cs.ru.nl> DomiX Bapt <baptiste.daroussin@gmail.com> jsa@ miwi@ Sergio de Almeida Lenzi <lenzi.sergio@gmail.com> Maxim Samsonov <xors@mne.ru> Kris Moore And pav@ for 2 exp-runs PR: ports/152255 ports/143260 ports/141033 ports/149629 ports/150350 ports/151523 With hat: gnome@ Notes: svn path=/head/; revision=264837
* - update to 1.4.1Dirk Meyer2010-03-281-0/+1
| | | | | | | | Reviewed by: exp8 run on pointyhat Supported by: miwi Notes: svn path=/head/; revision=251605
* - Fix plistPav Lucistnik2009-11-111-0/+1
| | | | | | | Reported by: pointyhat Notes: svn path=/head/; revision=244133
* Fix build when NOPORTDOCS is defined.Joe Marcus Clarke2009-11-011-3/+1
| | | | | | | Reported by: QAT Notes: svn path=/head/; revision=243616
* Update to 1.8.4.Joe Marcus Clarke2009-11-014-324/+162
| | | | Notes: svn path=/head/; revision=243615
* -Repocopy devel/libtool15 -> libtool22 and libltdl15 -> libltdl22.Jeremy Messenger2009-08-021-1/+1
| | | | | | | | | | | | | | | | | | | | | -Update libtool and libltdl to 2.2.6a. -Remove devel/libtool15 and devel/libltdl15. -Fix ports build with libtool22/libltdl22. -Bump ports that depend on libltdl22 due to shared library version change. -Explain what to do update in the UPDATING. It has been tested with GNOME2, XFCE4, KDE3, KDE4 and other many wm/desktop and applications in the runtime. With help: marcus and kwm Pointyhat-exp: a few times by pav Tested by: pgollucci, "Romain Tartière" <romain@blogreen.org>, and a few MarcusCom CVS users. Also, I might have missed a few. Repocopy by: marcus Approved by: portmgr Notes: svn path=/head/; revision=238781
* Update to 1.8.2.Joe Marcus Clarke2009-07-183-24/+24
| | | | Notes: svn path=/head/; revision=238026
* Clean up the PORTDOCS.Joe Marcus Clarke2009-02-252-0/+4
| | | | | | | Reported by: pav and erwin Notes: svn path=/head/; revision=229051
* Fix the build on 6.X.Joe Marcus Clarke2009-02-241-0/+11
| | | | Notes: svn path=/head/; revision=228978
* Update to 1.8.0.Joe Marcus Clarke2009-02-243-11/+88
| | | | Notes: svn path=/head/; revision=228973
* Update to 1.6.4.Joe Marcus Clarke2008-09-082-4/+4
| | | | Notes: svn path=/head/; revision=220208
* Update to 1.6.2.Joe Marcus Clarke2008-08-153-5/+8
| | | | Notes: svn path=/head/; revision=218604
* First all, ahze did most of work. Thanks ahze! Last week or so, I am justJeremy Messenger2008-06-303-6/+7
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | merely pick up and help him. Thanks to many testers in both private and mailing list emails for report a few of build and dependencies problems. Also, thanks to marcus and Chess Griffin for test in their tinderboxes. x11/pixman: Update to 0.10.0 ------------------------------------------------------- Firefox 3 needs it. Orignal, the shared library was bumped and ahze has added a new feature in our USE_GNOME=ltverhack by can control the number of shared library. To control the number of shared library, add the ltverhack:N. Right now pixman has USE_GNOME=ltverhack:9 to make it stays same at libpixman-1.so.9. If anyone want to use ltverhack:N in one of your port, you need to make sure the ABI doesn't change to use it.. ------------------------------------------------------- graphics/cairo: Update to 1.6.4 ------------------------------------------------------- Firefox 3 needs it. We have updated most cairo binding ports too. ------------------------------------------------------- graphics/poppler: Update to 0.8.3 ------------------------------------------------------- The shared libraries version have been changed. All ports that depend on poppler have PORTREVISION bump. The graphics/py-poppler has been updated to 0.8.1 to work with newer poppler better. As for the poppler-qt, there is no shared library version change. ------------------------------------------------------- www/firefox3 and gecko ports related: Update to 3.0 final ------------------------------------------------------- The bsd.gecko.mk has been moved from www/mozilla/ to Mk/. You no longer need to include bsd.gecko.mk/Makefile.common by manual. We are keeping it in backward compatibility, so the rest ports won't be break. We haven't add some other ports to have Firefox 3 support yet, so feel free to send us patch or commit it by yourself (to committers). However, view in bsd.gecko.mk for document. ------------------------------------------------------- Approved by: portmgr (marcus) Notes: svn path=/head/; revision=216043
* Bump portrevision due to upgrade of devel/gettext.Edwin Groothuis2008-06-061-1/+1
| | | | | | | | | | | | | The affected ports are the ones with gettext as a run-dependency according to ports/INDEX-7 (5007 of them) and the ones with USE_GETTEXT in Makefile (29 of them). PR: ports/124340 Submitted by: edwin@ Approved by: portmgr (pav) Notes: svn path=/head/; revision=214430
* Fix the installation and plist when NOPORTDOCS is defined, bump theJeremy Messenger2008-05-192-233/+233
| | | | | | | | | PORTREVISION. Reported by: itetcu Notes: svn path=/head/; revision=213346
* - Remove unneeded dependency from gtk12/gtk20 [1]Martin Wilke2008-04-191-2/+2
| | | | | | | | | | | | | | | | | | - Remove USE_XLIB/USE_X_PREFIX/USE_XPM in favor of USE_XORG - Remove X11BASE support in favor of LOCALBASE or PREFIX - Use USE_LDCONFIG instead of INSTALLS_SHLIB - Remove unneeded USE_GCC 3.4+ Thanks to all Helpers: Dmitry Marakasov, Chess Griffin, beech@, dinoex, rafan, gahr, ehaupt, nox, itetcu, flz, pav PR: 116263 Tested on: pointyhat Approved by: portmgr (pav) Notes: svn path=/head/; revision=211584
* Downgrade cairo back to 1.4.14. It has been reported that 1.5 was causingJoe Marcus Clarke2008-03-302-12/+1
| | | | | | | | | | | redraw performance problems for some users. The hope was that 1.6 would have been ready for GNOME 2.22, but this did not happen. Cairo 1.6 will be imported with GNOME 2.24. Discussed with: ahze Notes: svn path=/head/; revision=210152
* The FreeBSD GNOME team is proud to annunce the release of GNOME 2.22.0 forJoe Marcus Clarke2008-03-244-10/+77
| | | | | | | | | | | | | | | | | | | | | | | | | FreeBSD. The official GNOME 2.22 release notes can be found at http://library.gnome.org/misc/release-notes/2.22/ . On the FreeBSD front, this release features an updated hal port with support for video4linux devices, DRM (Direct Rendering), and better support of removable media. Work is also underway to tie webkit more closely into GNOME. As part of the GNOME 2.22 upgrade, GStreamer received a rather large upgrade as well. Be sure to consult UPDATING on the proper steps to upgrade all of your GNOME ports. This release would not have been possible without the contributions and testing efforts of the following people: Pawel Worach kan edwin Peter Ulrich Kruppa J. W. Ballantine Yasuda Keisuke Andriy Gapon Notes: svn path=/head/; revision=209647
* Remove always-false/true conditions based on OSVERSION 500000Edwin Groothuis2007-10-041-7/+1
| | | | Notes: svn path=/head/; revision=200773
* - Welcome X.org 7.2 \o/.Florent Thoumie2007-05-191-0/+1
| | | | | | | | - Set X11BASE to ${LOCALBASE} for recent ${OSVERSION}. - Bump PORTREVISION for ports intalling files in ${X11BASE}. Notes: svn path=/head/; revision=191544
* Update to 1.2.4.Jeremy Messenger2007-01-253-7/+7
| | | | Notes: svn path=/head/; revision=183292
* Chase the GNOME X11BASE to LOCALBASE move, and fix the build with theJoe Marcus Clarke2006-10-144-178/+200
| | | | | | | | | | new freetype2 where needed. Submitted by: mezz, ahze, pav, and many others Approved by: portmgr (implicit, kris) Notes: svn path=/head/; revision=175261
* Update to 0.6.0.Joe Marcus Clarke2006-04-083-9/+12
| | | | Notes: svn path=/head/; revision=159100
* Update to 0.5.0.Joe Marcus Clarke2006-03-153-7/+186
| | | | Notes: svn path=/head/; revision=157106
* Conversion to a single libtool environment.Ade Lovett2006-02-232-1/+3
| | | | | | | Approved by: portmgr (kris) Notes: svn path=/head/; revision=156749