aboutsummaryrefslogtreecommitdiff
path: root/graphics/converseen
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
|
* graphics/converseen: update to 0.9.9.0Fernando Apesteguía2021-02-162-4/+4
| | | | | | | | | | | | From ChangeLog: * Fixed random crash when all images are removed * Some translation updates * Various Minor Updates * Various bugfixes Notes: svn path=/head/; revision=565433
* graphics/converseen: update to 0.9.8.1Fernando Apesteguía2020-02-043-7/+8
| | | | | | | | | | | From ChangeLog (http://converseen.fasterland.net/changelog/): * Added Swedish Translation * Various Minor Updates * Various bugfixes Notes: svn path=/head/; revision=525238
* graphics/converseen: update to 0.9.8.0Fernando Apesteguía2019-11-052-5/+4
| | | | | | | | | | | ChangeLog (http://converseen.fasterland.net/changelog/): * Fixed bug with TIF files * Various Minor Updates * Various bugfixes Notes: svn path=/head/; revision=516773
* 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/converseen: update to 0.9.7.2Fernando Apesteguía2019-03-102-5/+4
| | | | | | | | | | From ChangeLog: * Updated Japanese Localization * Various bugfixes Notes: svn path=/head/; revision=495305
* 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
* 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
* Update ImageMagick to 6.9.10.14 [1]Koop Mast2018-11-101-1/+2
| | | | | | | | | | | | | | | | | | | | | * Add PKGNAMESUFFIX and rename the directory. This was done to show that IM6 is not the "main" version. But still fully supported by upstream. * Convert a number of options to optionhelpers. * Add option for ISO/IEC 23008-12:2017 HEIF suport * Add comment to pkg-descr explaining IM6's "legacy" tag. * Add comment to the patch-config_policy.xml file why it still needed. Please note that IM7 is not a drop in replacement due to library API and command arguments changes. And as a result ports need to decide for themself which version to use. Chase these changes in all the ports that using IM6. PR: 225102 (based on, only the version update) [1] Submitted by: Pascal Christen <pascal.christen@hostpoint.ch> Notes: svn path=/head/; revision=484640
* graphics/converseen: update to 0.9.7Fernando Apesteguía2018-08-083-11/+14
| | | | | | | | | | | | | | Also: * PORTVERSION to DISTVERSION * Switch to Github site * Sort USES and USE_QT Approved by: tcberner (mentor) Differential Revision: https://reviews.freebsd.org/D16630 Notes: svn path=/head/; revision=476654
* 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
* 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
* Remove Ego-Lines from fernape's portsFernando Apesteguía2018-03-131-1/+0
| | | | | | | | Approved by: tcberner (mentor) Differential Revision: https://reviews.freebsd.org/D14668 Notes: svn path=/head/; revision=464438
* Update MAINTAINER to new FreeBSD.org accountFernando Apesteguía2018-03-121-1/+1
| | | | | | | | | | | Update MAINTAINER email address for Fernando Apesteguia from fernando.apesteguia@gmail.com Approved by: tcberner (mentor) Differential Revision: https://reviews.freebsd.org/D14668 Notes: svn path=/head/; revision=464275
* ImageMagick to 6.9.9-15.Koop Mast2017-09-281-1/+1
| | | | | | | | | | | | | | | | | * Disable FPX (FlashPix) support by default. This image format is really rare these days coupled with that there are known CVE's in libfpx and it doesn't seem to be maintained these days. It doesn't make sense to keep it enabled by default anymore. [1] * Add new option for RAW support * Fix portscout macro to only show 6.9.x versions Bump other ports for the shared library bumps in IM 6. PR: 222309 [1] Submitted by: Anton Yuzhaninov <citrin+pr@citrin.ru> [1] Notes: svn path=/head/; revision=450852
* Bump PORTREVISION for ports depending on the canonical version of GCCGerald Pfeifer2017-09-101-1/+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
* Chase ImageMagick shlib bumpKoop Mast2017-05-261-0/+1
| | | | Notes: svn path=/head/; revision=441761
* graphics/converseen: fix obsolete PORTREVISIONBartek Rutkowski2017-04-031-1/+0
| | | | | | | Approved by: blanket Notes: svn path=/head/; revision=437656
* graphics/converseen: update 0.9.6.1 -> 0.9.6.2Bartek Rutkowski2017-04-033-4/+5
| | | | | | | | PR: 218259 Submitted by: Fernando Apesteguia <fernando.apesteguia@gmail.com> (maintainer) Notes: svn path=/head/; revision=437655
* Bump PORTREVISIONs for ports depending on the canonical version of GCC andGerald Pfeifer2017-04-011-0/+1
| | | | | | | | | | | | | | | | | lang/gcc which have moved from GCC 4.9.4 to GCC 5.4 (at least under some circumstances such as versions of FreeBSD or platforms). This includes ports - with USE_GCC=yes or USE_GCC=any, - with USES=fortran, - using using Mk/bsd.octave.mk which in turn has USES=fortran, and - with USES=compiler specifying openmp, nestedfct, c++11-lib, c++14-lang, c++11-lang, c++0x, c11, or gcc-c++11-lib. PR: 216707 Notes: svn path=/head/; revision=437439
* Update to 0.9.6.1Matthew Seaman2017-02-042-5/+5
| | | | | | | | PR: 216616 Submitted by: fernando.apesteguia@gmail.com (maintainer) Notes: svn path=/head/; revision=433289
* Update to 0.9.6.Raphael Kubo da Costa2017-01-212-5/+5
| | | | | | | | | | | – Added support for ImageMagick 7 – Various code improvements PR: 216331 Submitted by: fernando.apesteguia@gmail.com (maintainer) Notes: svn path=/head/; revision=432034
* Update to 0.9.5.2Guido Falsi2016-09-303-5/+5
| | | | | | | | PR: 213103 Submitted by: fernando.apesteguia@gmail.com (maintainer) Notes: svn path=/head/; revision=423015
* - Update to 0.9.5.1Dmitry Marakasov2016-09-093-8/+6
| | | | | | | | | | - While here, remove unneded WRKSRC and fix WWW: PR: 212497 Submitted by: fernando.apesteguia@gmail.com (maintainer) Notes: svn path=/head/; revision=421624
* - Update to 0.9.5Dmitry Marakasov2016-09-012-9/+10
| | | | | | | | | | - Fix LICENSE PR: 212288 Submitted by: fernando.apesteguia@gmail.com (maintainer) Notes: svn path=/head/; revision=421211
* 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
* Adjust dependencies.Raphael Kubo da Costa2015-08-251-2/+4
| | | | | | | | | | | | | | | - Depend on qt4-network. - Depend only on qt4-linguisttools instead of qt4-linguist for the *.qm files. - Drop unused gettext and iconv dependencies. - Set LICENSE_FILE. PR: 202557 Submitted by: Andriy Voskoboinyk <s3erios@gmail.com> Approved by: fernando.apesteguia@gmail.com <maintainer> Notes: svn path=/head/; revision=395250
* graphics/converseen: update 0.9.1 -> 0.9.2Bartek Rutkowski2015-03-302-4/+3
| | | | | | | | PR: 198879 Submitted by: Fernando Apesteguia <fernando.apesteguia@gmail.com> Notes: svn path=/head/; revision=382645
* Update ImageMagick to 6.9.0-10.Koop Mast2015-03-101-0/+1
| | | | | | | | | | | | - USES=pkgconfig:both since the *-config scripts are wrappers around pkg-config. - Don't require ghostscript for the freetype2 option. - Actualy remove the pkg-help file with is obsolete since r377347 when the library names where normalized. Due to libMagick++-6.so bump, chase depend ports. Notes: svn path=/head/; revision=380910
* graphics/converseen: update 0.9.0 -> 0.9.1Bartek Rutkowski2015-03-072-3/+3
| | | | | | | | PR: 198355 Submitted by: Nicolas de Bari Embriz <nbari@dalmp.com> Notes: svn path=/head/; revision=380681
* Update to 0.9.0.Guido Falsi2015-02-122-4/+4
| | | | | | | | PR: 197575 Submitted by: fernando.apesteguia@gmail.com (maintainer) Notes: svn path=/head/; revision=378900
* Update to 0.8.6.Guido Falsi2015-02-012-4/+3
| | | | | | | | PR: 197176 Submitted by: fernando.apesteguia@gmail.com (maintainer) Notes: svn path=/head/; revision=378236
* Update ImageMagick to 6.9.0.4.Koop Mast2015-01-181-1/+2
| | | | | | | | | | | | | | | | | | | | | - Normalize the ImageMagick library name so it stays the same regardless of what the 16-bit and HDRI option are set to [1]. Teach cmake to look for the new name. Bump ports that link to the libraries due to this. - As a result do away with the "HALFSUPPORTED" option block, and list 16-bit and HDRI with the other options. - ImageMagick ships a basic SVG plugin when not using librsvg2 for SVG support. This basic SVG plugin needs libxml2 to work [2]. Make libxml2 a mandatory dependency (instead of only when the SVG option was selected). - Don't touch .keep files in the modules directory, there files there so it useless. PR: 194949 [1] PR: 195227 [2] Requested by: many [1] Submitted by: software-freebsd@interfasys.ch [2] Notes: svn path=/head/; revision=377347
* Update to version 0.8.5Pawel Pekala2014-12-192-3/+3
| | | | | | | | PR: 196132 Submitted by: maintainer Notes: svn path=/head/; revision=374981
* Remove * from LIB_DEPENDS lines and specify the default library nameKoop Mast2014-11-071-1/+1
| | | | | | | for ImageMagick. Using '*' it is unsupported and potention bugs here. Notes: svn path=/head/; revision=372250
* - Update to 0.8.4Guido Falsi2014-10-053-10/+5
| | | | | | | | | | - Remove dirrms PR: 194100 Submitted by: fernando.apesteguia@gmail.com (maintainer) Notes: svn path=/head/; revision=370081
* - Update to 0.8.3Jason E. Hale2014-08-313-16/+4
| | | | | | | | | | | | While here: - Add LICENSE_FILE - Remove unneeded hack from Makefile PR: 193103 Submitted by: <fernando.apesteguia@gmail.com> (maintainer) Notes: svn path=/head/; revision=366769
* Update to 0.8.2.Adam Weinberger2014-08-233-34/+8
| | | | | | | | PR: 192865 Submitted by: maintainer Notes: svn path=/head/; revision=365798
* Update to 0.8.1Tilman Keskinoz2014-08-192-3/+3
| | | | | | | | PR: 192747 Submitted by: maintainer Notes: svn path=/head/; revision=365410
* - Update from 0.7.3 to 0.8Danilo Egea Gondolfo2014-07-302-4/+4
| | | | | | | | PR: ports/192254 Submitted by: fernando.apesteguia@gmail.com Notes: svn path=/head/; revision=363431
* - Update to 0.7.3Guido Falsi2014-07-242-3/+5
| | | | | | | | | | - Add LICENSE PR: 192065 Submitted by: fernando.apesteguia@gmail.com (maintainer) Notes: svn path=/head/; revision=362786
* graphics/converseen: update to 0.7.2.1William Grzybowski2014-07-093-4/+40
| | | | | | | | PR: 191752 Submitted by: maintainer Notes: svn path=/head/; revision=361321
* Update to 6.8.9-4.Koop Mast2014-06-281-1/+1
| | | | | | | | | | | | Document where the .la files are loaded from. Don't rebuild ghostscript as build dep for when building packages with PACKAGE_BUILDING, only for when the test suite is enabled. Actualy commit pkg-help, missed in the update to 6.8.9-3, woops. Bump libMagick++ users since that library version got bumped. Notes: svn path=/head/; revision=359672
* Update to 6.8.9-3 [1][3].Koop Mast2014-06-171-1/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Use USES=compiler:openmp for the OPENMP option[2] Ditch the use of perl for patching etc [4] and silence perl threaded check [6] -delay option spurious message should be fixed [5] JASPER option was replace by JPEG2000 for JP2k support. Put 16BIT_PIXEL and HDRI option separate option block. These options change the library name, so the user needs to take this into consideration. Use new LIB_DEPENDS syntax. Use @sample for config files. Sprinkle some USES=pkgconfig for some ports, since we don't pull it in anymore at run-time. PR: 185462 [1] PR: 187548 [2] PR: 182793 [3] PR: 181746 [4] PR: 176047 [5] PR: 190814 [6] Submitted by: c.petrik.sosa@gmail.com [1] Matthieu Volat <mazhe@alkumuna.eu> [2] free.bsd@webstyle.ch [3] andrnils@gmail.com [4] rfg@tristatelogic.com [5] Michelle Sullivan <michelle@sorbs.net> [6] Approved by: portmgr (blanket) (for NO_STAGED ports) Notes: svn path=/head/; revision=358176
* - Update to 0.7.2Guido Falsi2014-05-313-3/+11
| | | | | | | | PR: ports/190354 Submitted by: Fernando <fernando.apesteguia@gmail.com> (maintainer) Notes: svn path=/head/; revision=355957
* - Update to 0.7.1.1Alex Kozlov2014-05-202-3/+3
| | | | | | | | PR: ports/189974 Submitted by: Fernando <fernando.apesteguia@gmail.com> (maintainer) Notes: svn path=/head/; revision=354625
* - Update to 0.7.1Guido Falsi2014-05-122-6/+5
| | | | | | | | | | - While here, convert to USES=tar PR: ports/189446 Submitted by: Fernando <fernando.apesteguia@gmail.com> (maintainer) Notes: svn path=/head/; revision=353785
* - Update to 0.6.8Guido Falsi2014-03-242-3/+3
| | | | | | | | PR: ports/187352 Submitted by: Fernando <fernando.apesteguia@gmail.com> (maintainer) Notes: svn path=/head/; revision=348985