aboutsummaryrefslogtreecommitdiff
path: root/sysutils/krename
Commit message (Collapse)AuthorAgeFilesLines
* 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
|
* sysutils/krename: update to 5.0.1 releaseDima Panov2021-01-055-206/+535
| | | | | | | | | Drop abandonware KJS support in favor of QJS [1] Obtained from: gentoo [1] Notes: svn path=/head/; revision=560415
* Fix up previous fix:Adriaan de Groot2020-07-181-3/+5
| | | | | | | | | | | | | | | | | | | | - with KF5 5.71, each application can have its own FindTaglib, or uses the one from kdelibs4support (I think). This is generally an "old-style" CMake module. - with KF5 5.72, ECM delivers a modern CMake module which is found **first**, but is also incompatible with the old version of FindTaglib. Adjust the patches so they work with KF5 5.71 (now in-tree) and 5.72 (upcoming). Not bumping PORTREVISION here because the packages could not have built with the previous patches. Note to self: do not assume useful backwards-compatibility in CMake modules from different sources. PR: 247907 Notes: svn path=/head/; revision=542537
* Fix sysutils/krename in the face of Taglib CMake-incompatibilityAdriaan de Groot2020-07-182-3/+7
| | | | | | | | | | This fix is complicated by krename already having a big complex patch from git against exiv, and no newer releases, so I had to bodge in the new patch to avoid double-patching the same file or losing the existing comments and explanation. Notes: svn path=/head/; revision=542532
* Make implicit dependency on devel/qt5-concurrent explicitTobias C. Berner2020-03-141-2/+2
| | | | Notes: svn path=/head/; revision=528428
* 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
* sysutils/krename: add upstrams patch (filtered through gentoo) to find exiv2 ↵Tobias C. Berner2019-05-112-1/+193
| | | | | | | | | | | | | | again Upstream: https://github.com/KDE/krename/commit/b22de9135ba2a5abdbd2b275a60933a50f074010 Gentoo: https://gitweb.gentoo.org/repo/gentoo.git/tree/kde-misc/krename/files/krename-5.0.0-exiv2-0.27.patch Reported by: fluffy Notes: svn path=/head/; revision=501234
* 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
* Fix build on gcc-based architectures:Mark Linimon2019-03-121-1/+1
| | | | | | | | | The compiler feature "cxx_decltype" is not known to CXX compiler Approved by: portmgr (tier-2 blanket) Notes: svn path=/head/; revision=495432
* Fix Qt5 symbol version scripts to put the catch-all clause first. WhenTijl Coosemans2019-01-161-1/+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
* 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
* Update grahics/exiv2 to 0.26Tobias C. Berner2018-04-281-0/+1
| | | | | | | | | PR: 223625 Exp-run by: antoine Differential Revision: https://reviews.freebsd.org/D12345 Notes: svn path=/head/; revision=468519
* Use a more up-to-date URL in pkg-descrRaphael Kubo da Costa2018-02-171-1/+1
| | | | Notes: svn path=/head/; revision=462095
* Update KRename to 5.0.0 and adopt the port with my kde@ hatRaphael Kubo da Costa2018-02-164-0/+73
| | | | | | | | | | | This is the first KF5-based release, so rename the port from sysutils/krename-kde4 to sysutils/krename. Announcement: https://mail.kde.org/pipermail/kde-announce-apps/2018-February/005426.html Notes: svn path=/head/; revision=462057
* KDE3 and QT3 expired on 2013-07-01, remove these ports.Rene Ladan2013-07-264-70/+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
* - update png to 1.5.10Dirk Meyer2012-06-011-1/+1
| | | | Notes: svn path=/head/; revision=297915
* - Set Portscout flagsMartin Wilke2012-03-171-1/+1
| | | | | | | | | | | - Pass maintainership to submitter PR: 165917 165916 165975 165973 165972 Submitted by: Muhammad Moinur Rahman <5u623l20@gmail.com> Feature safe: yes Notes: svn path=/head/; revision=293438
* Set PORTSCOUT, new versions for KDE 4 onlyMax Brazhnikov2012-03-131-0/+2
| | | | | | | Feature safe: yes Notes: svn path=/head/; revision=293229
* - Reassign to the heapThomas Abthorpe2011-07-051-1/+1
| | | | Notes: svn path=/head/; revision=277083
* - Get Rid MD5 supportMartin Wilke2011-03-191-1/+0
| | | | Notes: svn path=/head/; revision=271305
* 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
* - Retire MASTER_SITE_SOURCEFORGE_EXTENDED, it's no longer needed - all ↵Dmitry Marakasov2009-09-021-2/+1
| | | | | | | | | | | | mirrors actually have all distfiles - Merge all SF mirrors to MASTER_SITE_SOURCEFORGE, resort according to quick download speed survey - Fix MASTER_SITES for all port that have used SOURCEFORGE_EXTENTED Approved by: portmgr (pav) Notes: svn path=/head/; revision=240715
* -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
* 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
* - Welcome X.org 7.2 \o/.Florent Thoumie2007-05-192-4/+1
| | | | | | | | - Set X11BASE to ${LOCALBASE} for recent ${OSVERSION}. - Bump PORTREVISION for ports intalling files in ${X11BASE}. Notes: svn path=/head/; revision=191544
* Update to version 3.0.14Markus Brueffer2007-03-252-4/+4
| | | | Notes: svn path=/head/; revision=188340
* Update to version 3.0.13Markus Brueffer2006-12-143-4/+5
| | | | Notes: svn path=/head/; revision=179698
* Update to version 3.0.12Markus Brueffer2006-08-144-27/+4
| | | | Notes: svn path=/head/; revision=170630
* - Move the servicemenus to the right place. This fixes not appearingMarkus Brueffer2006-04-083-2/+14
| | | | | | | | "Actions" menu entries for krename in konqueror - Bump PORTREVISION Notes: svn path=/head/; revision=159159
* Conversion to a single libtool environment.Ade Lovett2006-02-231-1/+1
| | | | | | | Approved by: portmgr (kris) Notes: svn path=/head/; revision=156749
* Update to version 3.0.11Markus Brueffer2006-02-223-10/+8
| | | | Notes: svn path=/head/; revision=156711
* Replace ugly "@unexec rmdir %D... 2>/dev/null || true" with @dirrmtryEdwin Groothuis2006-01-221-4/+4
| | | | | | | | Approved by: krion@ PR: ports/88711 (related) Notes: svn path=/head/; revision=154116
* - Update to version 3.0.10Markus Brueffer2006-01-133-3/+5
| | | | | | | - Add SHA256 Notes: svn path=/head/; revision=153379
* Update to version 3.0.9Markus Brueffer2005-11-053-4/+6
| | | | Notes: svn path=/head/; revision=147417
* Bump PORTREVISION to chase the glib20 shared library update.Joe Marcus Clarke2005-11-051-0/+1
| | | | Notes: svn path=/head/; revision=147269
* Update to version 3.0.8Markus Brueffer2005-09-282-3/+3
| | | | | | | | PR: ports/86577 Submitted by: Andrej Zverev <az@inec.ru> Notes: svn path=/head/; revision=143674
* - Update to version 3.0.7Markus Brueffer2005-08-293-21/+3
| | | | | | | - Remove some directories from the plist that are already covered by kdehier Notes: svn path=/head/; revision=141222
* Update to version 3.0.6Markus Brueffer2005-06-282-3/+3
| | | | | | | | PR: ports/82722 Submitted by: Andrej Zverev <az@inec.ru> Notes: svn path=/head/; revision=138137
* Update to version 3.0.5Markus Brueffer2005-05-223-3/+7
| | | | Notes: svn path=/head/; revision=135857
* Update to version 3.0.4Markus Brueffer2005-04-242-4/+3
| | | | Notes: svn path=/head/; revision=134049
* Bump PORTREVISION to chase the glib20 shared lib version change.Joe Marcus Clarke2005-03-121-0/+1
| | | | Notes: svn path=/head/; revision=130974
* Update to version 3.0.3Markus Brueffer2005-02-134-18/+18
| | | | Notes: svn path=/head/; revision=128725
* Update to version 3.0.2Markus Brueffer2004-08-093-3/+4
| | | | Notes: svn path=/head/; revision=115705
* Update to version 3.0.1Markus Brueffer2004-07-293-3/+4
| | | | | | | | PR: ports/69374 Submitted by: Andrej Zverev <az@inec.ru> Notes: svn path=/head/; revision=115006
* - Update to version 3.0.0Markus Brueffer2004-06-303-26/+43
| | | | | | | | | - Use MASTER_SITE_SOURCEFORGE_EXTENDED - Fix whitespace - Remove PTHREAD_LIBS hack Notes: svn path=/head/; revision=112575