aboutsummaryrefslogtreecommitdiff
path: root/graphics/kphotoalbum
Commit message (Collapse)AuthorAgeFilesLines
* cleanup: remove transitive py27 deprecation (www/qt5-webengine)Rene Ladan2022-01-231-7/+0
|
* graphics/kphotoalbum: Update to 5.8.1Tobias C. Berner2021-06-293-8/+7
|
* 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
|
* Mark ports recursively depending on Python 2.7 for expiration on June 23.Rene Ladan2021-03-241-0/+7
| | | | | | | | | | | | | | For ports optionally dependending on Python 2.7, just mark those options as expired. Remove konquerer from the x11/kde-baseapps metaport and bump its PORTREVISION. Submitted by: rene Reviewed by: portmgr, adridg, ehaupt, lme, madpilot, pizzamig, se, sunpoet, yuri Approved by: portmgr Differential Revision: https://reviews.freebsd.org/D28665 Notes: svn path=/head/; revision=569118
* - Fix LICENSEDmitry Marakasov2020-10-292-2/+2
| | | | | | | | | - Update WWW Approved by: portmgr blanket Notes: svn path=/head/; revision=553594
* graphics/kphotoalbum: disable webengine by default on non-x86Piotr Kubaj2020-09-041-1/+7
| | | | | | | Port builds fine without it on powerpc64. Notes: svn path=/head/; revision=547566
* Remove obsolete CONFLICTS on kde4 portsTobias C. Berner2020-08-091-1/+0
| | | | | | | - kde4 has been removed 2018-12-31, that's way back when. Notes: svn path=/head/; revision=544551
* graphics/kphotoalbum: update to 5.7.0Tobias C. Berner2020-08-093-9/+8
| | | | | | | - remove obsolete dependency on libkgeomap Notes: svn path=/head/; revision=544550
* graphics/kphotoalbum: update to 5.6.1Tobias C. Berner2020-02-122-4/+7
| | | | Notes: svn path=/head/; revision=525923
* graphics/kphotoalbum: update to 5.6Tobias C. Berner2020-02-112-6/+5
| | | | | | | | | | | | | | | | | | We're pleased to announce a new release of KPhotoAlbum, the KDE photo management software! This release particularly brings huge performance improvements when tagging a large number of images and performance improvements for thumbnail view. Kudos to Robert Krawitz for again diving into the code and finding places for optimization and removal of redundancy! Additionally, this release adds support for KDE's purpose plugin framework. Announcement: https://www.kphotoalbum.org/2020/02/08/0099/ Notes: svn path=/head/; revision=525881
* Bump PORTREVISION for ports depending on the canonical version of GCCGerald Pfeifer2019-07-261-0/+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/kphotoalbum: update to 5.5Tobias C. Berner2019-04-283-71/+9
| | | | | | | | Announcement: https://www.kphotoalbum.org/news/?item=0098#item0098 Notes: svn path=/head/; revision=500321
* graphics/exiv2: update to 0.27Tobias C. Berner2019-03-171-1/+1
| | | | | | | | | | | | | | | Changelog: http://www.exiv2.org/changelog.html - All depending ports have been bumped. - graphics/py-exiv2 has been marked broken; use graphics/gexiv2 for python bindings Exp-run by: antoine PR: 235943 PR: 234830 Notes: svn path=/head/; revision=496059
* multimedia/phonon, multimedia/phonon-gestreamer, ↵Tobias C. Berner2019-03-161-1/+1
| | | | | | | multimedia/phonon-designerplugin: remove flavorse (Qt4 deprecation) Notes: svn path=/head/; revision=495961
* graphics/kphotoalbum: prepare for exiv2-0.27Tobias C. Berner2019-03-082-0/+63
| | | | | | | | | | Import gentoo's patch from: https://gitweb.gentoo.org/repo/gentoo.git/tree/media-gfx/kphotoalbum/files/kphotoalbum-5.4-exiv2-0.27.patch?id=8487b360db9fcf049fe9a5543469b8e6fee28e4d PR: 235943 Notes: svn path=/head/; revision=495082
* graphics/kphotoalbum: update to 5.4.2Tobias C. Berner2019-02-202-5/+4
| | | | Notes: svn path=/head/; revision=493440
* Fix with build on GCC architectures.Tobias C. Berner2019-02-081-1/+2
| | | | | | | | PR: 235093 Submitted by: Piotr Kubaj <pkubaj@anongoth.pl> Notes: svn path=/head/; revision=492466
* 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
* graphics/kphotoalbum: update to 5.4Tobias C. Berner2018-10-144-32/+30
| | | | Notes: svn path=/head/; revision=482038
* graphics/kphotoalbum: fix build with Qt 5.11Tobias C. Berner2018-09-021-0/+27
| | | | | | | | PR: 230884 Obtained from: upstream Notes: svn path=/head/; revision=478780
* 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 port: graphics/kphotoalbumTobias C. Berner2018-04-294-0/+396
| | | | | | | * KF5 based version of graphics/kphotoalbum-kde4 Notes: svn path=/head/; revision=468639
* 2012-10-20 lang/ironpython: No more public distfilesBaptiste Daroussin2012-10-254-448/+0
| | | | | | | | | | | | | | | | | | | | 2012-10-20 lang/cu-prolog: No more public distfiles 2012-10-20 japanese/stardict-dict-ja: No more public distfiles 2012-10-20 japanese/otojiro-fpw: No more public distfiles 2012-10-20 japanese/hex: No more public distfiles 2012-10-20 japanese/gxditview: No more public distfiles 2012-10-20 graphics/view3ds: No more public distfiles 2012-10-20 graphics/photoclip: No more public distfiles 2012-10-20 graphics/multivideo: Abandonware, no more upstream, depends on the deprecated wxGTK 2.4 2012-10-20 graphics/kphotoalbum: No more public distfiles 2012-10-20 graphics/jpegpixi: No more public distfiles 2012-10-20 graphics/gimp-manual-pdf: No more public distfiles 2012-10-20 graphics/exifprobe: No more public distfiles Feature safe: yes Notes: svn path=/head/; revision=306407
* Deprecated a bunch a ports with no more public distfiles (thanks ehaupt'sBaptiste Daroussin2012-09-211-0/+3
| | | | | | | distilator Notes: svn path=/head/; revision=304608
* Update graphics/exiv2 to version 0.23.Boris Samorodov2012-07-311-2/+2
| | | | | | | | | | | | The so library version has changed. Bump PORTREVISIONs at dependent ports. PR: ports/169733 Submitted by: bsam (me) Approved by: multimedia (maintainer timeout 3 weeks) Notes: svn path=/head/; revision=301793
* - update png to 1.5.10Dirk Meyer2012-06-011-1/+1
| | | | Notes: svn path=/head/; revision=297915
* - Reassign to the heapThomas Abthorpe2011-07-051-1/+1
| | | | Notes: svn path=/head/; revision=277083
* - chase exiv2 library bumpBaptiste Daroussin2011-04-122-3/+2
| | | | | | | | - while here remove some MD5 - fix some forgottern desktop-file-utils dependencies Notes: svn path=/head/; revision=272597
* Sync to new bsd.autotools.mkAde Lovett2010-12-041-1/+1
| | | | Notes: svn path=/head/; revision=265663
* Chase exiv2 shlib bump.Koop Mast2010-08-201-2/+2
| | | | Notes: svn path=/head/; revision=259619
* - 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-1/+1
| | | | | | | | | bumped or updated Requested by: edwin Notes: svn path=/head/; revision=238701
* . update graphics/exiv2 to the new version;Boris Samorodov2009-03-111-2/+2
| | | | | | | | | | | | | | | . bump ports which depends upon libexiv2.so (the library was bumpted from *.so.3 to *.so.7); . mark current graphics/py-exiv2 as broken since it doesn't compile with new libexiv2; this should change with graphics/py-exiv2-0.2. PR: ports/131376 Submitted by: bsam (me) Discussed with: kde@ Approved by: maintainer timeout (5 weeks) Notes: svn path=/head/; revision=229912
* Chase kdcraw library and bump PORTREVISIONAlex Dupre2008-09-231-2/+2
| | | | | | | (and fix compilation where needed). Notes: svn path=/head/; revision=220497
* Make fetchable againMarkus Brueffer2008-09-021-1/+1
| | | | Notes: svn path=/head/; revision=219681
* 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
* Chase kipi lib version and bump PORTREVISION.Alex Dupre2008-04-221-1/+2
| | | | Notes: svn path=/head/; revision=211744
* Update to version 3.1.1Markus Brueffer2008-04-093-11/+42
| | | | Notes: svn path=/head/; revision=210903
* - Chase exiv2 updatePav Lucistnik2008-03-071-2/+2
| | | | Notes: svn path=/head/; revision=208614
* 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-192-27/+1
| | | | | | | | - Set X11BASE to ${LOCALBASE} for recent ${OSVERSION}. - Bump PORTREVISION for ports intalling files in ${X11BASE}. Notes: svn path=/head/; revision=191544
* - Bump PORTREVISION to force rebuild with new exiv2, which is reported to bePav Lucistnik2007-03-291-0/+1
| | | | | | | | | | ABI incompatible PR: ports/110972 Reported by: Kyryll A Mirnenko <mirya@zoc.com.ua> Notes: svn path=/head/; revision=188787
* - Update to version 3.0Markus Brueffer2006-12-314-17/+149
| | | | | | | | - Add another mastersite as the projectsite is currently very slow - Add the new support for videos to pkg-descr Notes: svn path=/head/; revision=181172
* Fix typo and grammarMarkus Brueffer2006-06-041-4/+4
| | | | Notes: svn path=/head/; revision=164345
* - Change the graphics/exiv2 dependency to use LIB_DEPENDS, now that theMarkus Brueffer2006-05-301-4/+3
| | | | | | | | | | | libexiv2 library name has been fixed - Bump PORTREVISION PR: ports/96855 Submitted by: Joerg Pulz <Joerg.Pulz@frm2.tum.de> Notes: svn path=/head/; revision=164019
* - kimdaba has been renamed to photoalbum, therefore add graphics/kphotoalbumMarkus Brueffer2006-04-304-401/+280
| | | | | | | | | | | and remove graphics/kimdaba - Update to version 2.2 - mark BROKEN on 4.x Repocopied by: marcus Notes: svn path=/head/; revision=160908