aboutsummaryrefslogtreecommitdiff
path: root/graphics/kamera/Makefile
Commit message (Collapse)AuthorAgeFilesLines
* KDE: Update KDE Gear to 21.08.0Tobias C. Berner2021-08-131-2/+3
| | | | | | | | | | | | | | | | | | Thursday, 12 August 2021 KDE Gear 21.08 improves KDE apps across the board, bringing you quick and responsive utilities, creativity programs with powerful features, and secure tools for all your work and play needs. If this is your first time with KDE software, discover a whole new world of free and secure programs, packed with incredible possibilities. If you are already a KDE regular, check out all the fresh innovations we have added to your favorite apps. Either way, go forth and try new things! Full announcement: https://kde.org/announcements/gear/21.08.0/
* 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
|
* graphics/kamera: USES+=localbaseDima Panov2021-01-241-1/+1
| | | | | | | Needed for upcoming libgphoto update Notes: svn path=/head/; revision=562457
* Update KDE Applications to latest upstream release, 19.08Adriaan de Groot2019-08-151-1/+0
| | | | | | | | | | Release announcement https://kde.org/announcements/announce-applications-19.08.0.php Thanks to tcberner for doing most of the prep-work. Notes: svn path=/head/; revision=509000
* 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
* KDE Applications: complete dependency listsTobias C. Berner2019-06-231-1/+2
| | | | | | | | | | This has been on the TODO list for forever... PR: 238764 Reported by: yuri Notes: svn path=/head/; revision=504959
* Update KDE Applications to 19.04.2Tobias C. Berner2019-06-071-1/+0
| | | | | | | https://kde.org/announcements/announce-applications-19.04.2.php Notes: svn path=/head/; revision=503611
* graphics/libgphoto2: Update to 2.5.22, graphics/gphoto2: Update to 2.5.20Kai Knoblich2019-05-271-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Bump PORTREVISION of ports depending on them. Also while I'm here: * Add "gnome" to USES if the XML option is enabled to avoid warnings about using USE_GNOME alone. * Pet portlint Notable changes since 2.5.16 (graphics/libgphoto2) [1]: * Added new USB Ids for various camera types * Updated translations * Report file changes via GP_EVENT_FILE_CHANGED (hooked up for Canon EOS currently) Changes since 2.5.15 (graphics/gphoto2) [2]: * Maximum number in file ranges bumped from 16384 to 65536 * Add shell commands to match commandline: summary, storage-info, trigger-capture * Fixed a fd leak * Updated translations * Handle GP_EVENT_FILE_CHANGED event https://github.com/gphoto/libgphoto2/blob/libgphoto2-2_5_22-release/NEWS https://github.com/gphoto/gphoto2/blob/gphoto2-2_5_20-release/NEWS PR: 235817 [1], 235818 [2] Submitted by: Darren Mulligan <fixer@bsdmail.com> Approved by: woodsb02 (maintainer timeout) Notes: svn path=/head/; revision=502780
* Update KDE Applications to 18.12.2Tobias C. Berner2019-02-081-1/+0
| | | | | | | | [1] https://www.kde.org/announcements/announce-applications-18.12.2.php [2] https://www.kde.org/announcements/fulllog_applications-aether.php?version=18.12.2 Notes: svn path=/head/; revision=492409
* Fix Qt5 symbol version scripts to put the catch-all clause first. WhenTijl Coosemans2019-01-161-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | a symbol matches multiple clauses the last one takes precedence. If the catch-all is last it captures everything. In the case of Qt5 libraries this caused all symbols to have a Qt_5 label while some should have Qt_5_PRIVATE_API. This only affects lld because GNU ld always gives the catch-all lowest priority. Older versions of Qt5Webengine exported some memory allocation symbols from the bundled Chromium. Version 5.9 stopped exporting these [1] but the symbols were kept as weak wrappers for the standard allocation functions to maintain binary compatibility. [2][3] The problem is that the call to the standard function in these weak wrappers is only resolved to the standard function if there's a call to this standard function in other parts of Qt5Webengine, because only then is there a non-weak symbol that takes precedence over the weak one. If there's no such non-weak symbol the call in the weak wrapper resolves to the weak wrapper itself creating an infinite call loop that overflows the stack and causes a crash. Some of the allocation functions are variants of C++ new and delete and it probably depends on the compiler whether these variants are used in other parts of Qt5Webengine. Remove the weak wrappers (make them Linux specific). This isn't binary compatible but we are already breaking that with the changes to the symbol versions. [1] https://github.com/qt/qtwebengine/commit/5c2cbfccf9aafb547b0b30914c4056abd25942a4 [2] https://github.com/qt/qtwebengine/commit/2ed5054e3a800fa97c2c9e920ba1e6ea4b6ef2a5 [3] https://github.com/qt/qtwebengine/commit/009f5ebb4bd6e50188671e0815a5dae6afe39db5 Bump all ports that depend on Qt5. PR: 234070 Exp-run by: antoine Approved by: kde (adridg) Notes: svn path=/head/; revision=490472
* 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
* Update KDE Applications to 18.12.0Tobias C. Berner2018-12-141-1/+0
| | | | | | | https://www.kde.org/announcements/announce-applications-18.12.0.php Notes: svn path=/head/; revision=487405
* Bump PORTREVISION for ports depending on the canonical version of GCCGerald Pfeifer2018-12-121-0/+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
* Fix build with GCC-based architectures for various kde@ ports.Tobias C. Berner2018-10-271-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - Qt5 required c++11 support. Submitted by: Piotr Kubaj <pkubaj@anongoth.pl> PR: 232726 PR: 232725 PR: 232723 PR: 232722 PR: 232721 PR: 232720 PR: 232719 PR: 232697 PR: 232682 PR: 232669 PR: 232668 PR: 232667 PR: 232666 PR: 232665 PR: 232664 PR: 232662 PR: 232661 PR: 232655 PR: 232654 PR: 232652 PR: 232648 PR: 232647 PR: 232641 PR: 232640 PR: 232638 PR: 232635 PR: 232634 PR: 232632 PR: 232631 PR: 232630 PR: 232629 PR: 232628 PR: 232627 PR: 232625 PR: 232624 PR: 232623 PR: 232614 PR: 232613 PR: 232612 PR: 232611 PR: 232610 PR: 232609 PR: 232607 PR: 232606 PR: 232605 PR: 232604 PR: 232603 PR: 232602 PR: 232597 PR: 232589 PR: 232585 PR: 232584 PR: 232583 PR: 232581 PR: 232580 PR: 232579 PR: 232578 PR: 232576 PR: 232575 PR: 232574 PR: 232573 PR: 232570 Notes: svn path=/head/; revision=483125
* Add DOCS options to ports that should have one.Mathieu Arnold2018-09-101-0/+2
| | | | | | | | | | | Also various fixes related to said option. PR: 230864 Submitted by: mat exp-runs by: antoine Notes: svn path=/head/; revision=479406
* Replace bsd.qt.mk by Uses/qt.mk and Uses/qt-dist.mkTobias C. Berner2018-06-281-2/+2
| | | | | | | | | | | | | | | | | | From now on, ports that depend on Qt4 will have to set USES= qt:4 USE_QT= foo bar ports depending on Qt5 will use USES= qt:5 USE_QT= foo bar PR: 229225 Exp-run by: antoine Reviewed by: mat Approved by: portmgr (antoine) Differential Revision: →https://reviews.freebsd.org/D15540 Notes: svn path=/head/; revision=473503
* New ports: KDE Applications graphics/Tobias C. Berner2018-04-081-0/+18
| | | | | | | | | | | | | | | | | | | | | | | | | * graphics/gwenview * graphics/kamera * graphics/kcolorchooser * graphics/kdegraphics-mobipocket * graphics/kdegraphics-svgpart * graphics/kdegraphics-thumbnailers * graphics/kimagemapeditor * graphics/kolourpaint * graphics/libkdcraw * graphics/libkexiv2 * graphics/libkipi * graphics/libksane * graphics/okular * graphics/spectacle This is the current version of KDE Applications <foo>. Note that users of KDE SC4 should stick with <foo>-kde4. Differential Revision: https://reviews.freebsd.org/D14833 Notes: svn path=/head/; revision=466806
* KDE3 and QT3 expired on 2013-07-01, remove these ports.Rene Ladan2013-07-261-43/+0
| | | | | | | | | | | | | | | | | | | Unfortunately, this also affects some ports using QT3 as a GUI toolkit. Changes to infrastructure files: - bsd.kde.mk : obsolete, remove - bsd.qt.mk : note that a CONFLICTS_BUILD line can probably go after a while - CHANGES : document the removals from bsd.port.mk - KNOBS : remove KDE and QT (KDE4 and QT4 should be used instead) - MOVED : add the removed ports PR: ports/180745 Submitted by: rene Approved by: portmgr (bapt) Exp-run by: bapt Notes: svn path=/head/; revision=323748
* - Deprecate QT3, KDE3 and unmaintained ports depending on them. QT 3.3.8Beat Gaetzi2012-12-301-0/+3
| | | | | | | | | | | was released in 2007 and KDE 3.5.10 in 2008 and both are no longer maintained upstream nor in our tree. - Set EXPIRATION_DATE to 2013-07-01 Discussed with: bapt, tabthorpe Notes: svn path=/head/; revision=309662
* - update png to 1.5.10Dirk Meyer2012-06-011-1/+1
| | | | Notes: svn path=/head/; revision=297915
* Reset maintainership de jure. In fact KDE 3 has not been maintained by our teamMax Brazhnikov2011-07-071-1/+1
| | | | | | | | | for a long time, not to mention upstream. Discussed a while ago among the KDE/FreeBSD team. Notes: svn path=/head/; revision=277232
* Sync to new bsd.autotools.mkAde Lovett2010-12-041-1/+1
| | | | Notes: svn path=/head/; revision=265663
* - 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
* -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
* - bump all port that indirectly depends on libjpeg and have not yet been ↵Dirk Meyer2009-07-311-0/+1
| | | | | | | | | bumped or updated Requested by: edwin Notes: svn path=/head/; revision=238701
* The KDE FreeBSD team is proud to announce the releaseMartin Wilke2008-08-181-1/+0
| | | | | | | | | | | | | | | | | | | of KDE 3.5.9 for FreeBSD. The official KDE 3.5.9 release notes can be found at: http://www.kde.org/announcements/announce-3.5.9.php After the KDE 4.1.0 import the team found time to make KDE 3.5.9 ready for the Ports tree. KDE 3.5.9 was released six months ago and 3.5.10 is coming soon. We are not sure we have time to get 3.5.10 for FreeBSD 7.1/6.4 release, but we would have minimum 3.5.9 for those people who prefer to stay with KDE3. Of course Thanks to all Testers. Notes: svn path=/head/; revision=218752
* Bump portrevision due to upgrade of devel/gettext.Edwin Groothuis2008-06-061-0/+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
* Update to KDE 3.5.7 / KOffice 1.6.3Michael Nottebrock2007-07-041-1/+0
| | | | Notes: svn path=/head/; revision=194883
* - 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
* KDE 3.5.4 / KOffice 1.5.2Michael Nottebrock2006-09-121-1/+0
| | | | Notes: svn path=/head/; revision=172898
* - Bump PORTREVISION to force rebuild with new libgphoto2Pav Lucistnik2006-06-191-0/+1
| | | | Notes: svn path=/head/; revision=165814
* Update to KDE 3.5.2Michael Nottebrock2006-03-301-2/+1
| | | | Notes: svn path=/head/; revision=158431
* Conversion to a single libtool environment.Ade Lovett2006-02-231-1/+2
| | | | | | | Approved by: portmgr (kris) Notes: svn path=/head/; revision=156749
* Update to KDE 3.3Michael Nottebrock2004-08-301-1/+1
| | | | Notes: svn path=/head/; revision=117701
* Factor out all but one of the build switches of the KDE main module portsMichael Nottebrock2004-08-111-0/+39
into separate ports. The OPTIONS will remain as of yet and trigger dependencies now, for easy transition. Update KOffice to version 1.3.2. Add patches to fix a number of issues, including: - fix kxkb on Xorg - fix kdemultimedia WITH_MPEGLIB (now mpeglib_artsplug) compilation on gcc 3.4.2 with optimizations greater than -O Add security related patches and entries to portaudit.txt. Notes: svn path=/head/; revision=115880