aboutsummaryrefslogtreecommitdiff
path: root/graphics/lcms2
Commit message (Collapse)AuthorAgeFilesLines
* Update to 2.9Sunpoet Po-Chuan Hsieh2017-12-112-4/+4
| | | | | | | Changes: https://github.com/mm2/Little-CMS/blob/master/ChangeLog Notes: svn path=/head/; revision=455940
* - Fix PLISTSunpoet Po-Chuan Hsieh2016-11-191-1/+1
| | | | Notes: svn path=/head/; revision=426521
* - Update to 2.8Sunpoet Po-Chuan Hsieh2016-11-193-120/+4
| | | | | | | Changes: https://github.com/mm2/Little-CMS/blob/master/ChangeLog Notes: svn path=/head/; revision=426402
* Let USES=localbase add -L${LOCALBASE}/lib to LIBS instead of LDFLAGS.Tijl Coosemans2016-09-301-1/+1
| | | | | | | | | | | | | | | | | | | | | | USES=localbase:ldflags can be used to set LDFLAGS. Normally LDFLAGS appears too early on the command line causing some ports to link with their own libraries in LOCALBASE (if installed) instead of WRKSRC. Also make use of _USES_POST so -L${LOCALBASE}/lib is added as late as possible after anything a port Makefile might set. Use _USES_POST instead of .include in libedit.mk and libarchive.mk so things like 'USES=libedit localbase:ldflags' work correctly. Fix some issues with LIBS in some ports. Switch ports that don't support LIBS to localbase:ldflags. PR: 212987 Exp-run by: antoine Approved by: portmgr (antoine) Notes: svn path=/head/; revision=423014
* - Add upstream and my LOCAL to MASTER_SITESSunpoet Po-Chuan Hsieh2016-05-231-1/+3
| | | | Notes: svn path=/head/; revision=415651
* 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
* - Fix build on armv6Sunpoet Po-Chuan Hsieh2015-11-292-1/+117
| | | | | | | | | | | - Bump PORTREVISION for package change PR: 201226 Submitted by: Mikael Urankar <mikael.urankar@gmail.com> Tested by: mmoll Notes: svn path=/head/; revision=402582
* - Add LICENSE_FILESunpoet Po-Chuan Hsieh2015-10-151-7/+6
| | | | | | | | - Use USES=localbase - Convert to new options target helper Notes: svn path=/head/; revision=399366
* - Convert to new test frameworkSunpoet Po-Chuan Hsieh2015-10-011-3/+1
| | | | Notes: svn path=/head/; revision=398297
* - Remove :keepla from USES=libtoolSunpoet Po-Chuan Hsieh2015-08-232-2/+2
| | | | Notes: svn path=/head/; revision=395121
* Convert to USES=jpegAntoine Brodin2015-06-221-1/+1
| | | | Notes: svn path=/head/; revision=390310
* - Update to 2.7Sunpoet Po-Chuan Hsieh2015-03-193-7/+5
| | | | | | | | | - Cleanup MASTER_SITES Changes: https://github.com/mm2/Little-CMS/blob/master/ChangeLog Notes: svn path=/head/; revision=381615
* - Use INSTALL_TARGET=install-strip instead of STRIP_CMDSunpoet Po-Chuan Hsieh2015-01-181-1/+1
| | | | Notes: svn path=/head/; revision=377371
* Revert r356926 and r356927. Not all ports that depend on lcms* have beenTijl Coosemans2014-06-092-2/+3
| | | | | | | | converted to USES=libtool yet, so their .la files may still refer to the lcms* .la files. Notes: svn path=/head/; revision=357111
* - Use USES=libtoolSunpoet Po-Chuan Hsieh2014-06-072-3/+2
| | | | | | | - Bump PORTREVISION for package change Notes: svn path=/head/; revision=356927
* When linking a library libA with a library libB using libtool, if libB.laTijl Coosemans2014-04-231-1/+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
* - Update to 2.6Sunpoet Po-Chuan Hsieh2014-04-063-37/+11
| | | | | | | | | | | | | | | | - Enable JPEGICC and TIFFICC by default - Use USES=libtool instead of USE_GNOME=lthack - Use PORTDOCS - Install static library - Strip shared library - Use MAKE_CMD - Remove unnecessary PLIST_SUB - Simplify Makefile Changes: https://github.com/mm2/Little-CMS/blob/master/ChangeLog Notes: svn path=/head/; revision=350298
* - Use USES=pathfixSunpoet Po-Chuan Hsieh2013-12-251-1/+2
| | | | Notes: svn path=/head/; revision=337449
* - Convert to new LIB_DEPENDS formatSunpoet Po-Chuan Hsieh2013-11-212-19/+16
| | | | | | | | - Convert to new options helper - Support STAGEDIR Notes: svn path=/head/; revision=334539
* 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
* - Use !${PORT_OPTIONS:Mfoo} instead of empty(PORT_OPTIONS:Mfoo)Sunpoet Po-Chuan Hsieh2013-08-251-2/+2
| | | | Notes: svn path=/head/; revision=325358
* - Update to 2.5Sunpoet Po-Chuan Hsieh2013-07-102-3/+3
| | | | | | | Changes: https://github.com/mm2/Little-CMS/blob/master/ChangeLog Notes: svn path=/head/; revision=322609
* - Fix typo in MAN1Sunpoet Po-Chuan Hsieh2012-10-081-2/+2
| | | | | | | | PR: ports/172465 Submitted by: Oliver Heesakkers <dev2@heesakkers.info> Notes: svn path=/head/; revision=305537
* - Update to 2.4Sunpoet Po-Chuan Hsieh2012-10-072-48/+37
| | | | | | | | | | | | - Convert to new options framework - Fix CONFIGURE_ARGS - Cleanup Makefile - Cosmetic change Changes: https://github.com/mm2/Little-CMS/blob/master/ChangeLog Notes: svn path=/head/; revision=305489
* - Update to 2.3Sunpoet Po-Chuan Hsieh2011-12-173-21/+25
| | | | | | | | | | | | - Use bsd.port.options.mk - Pet portlint - Cosmetic change Changes: https://github.com/mm2/Little-CMS/blob/master/ChangeLog http://littlecms2.blogspot.com/2011/12/littlecms-23-released.html Notes: svn path=/head/; revision=287546
* - Take maintainershipSunpoet Po-Chuan Hsieh2011-11-141-1/+1
| | | | | | | Feature safe: yes Notes: svn path=/head/; revision=285733
* - Remove WITH_FBSD10_FIX, is no longer neededMartin Wilke2011-11-091-1/+0
| | | | Notes: svn path=/head/; revision=285379
* Back out some parts of the previous commit. While "technicalist excellence"Alexey Dokuchaev2011-11-042-2/+8
| | | | | | | | | | might be something cool, eternal values such as obviousness and readability should not be sacrificed in its sake. Discussed with: pav Notes: svn path=/head/; revision=285028
* - Convert old school PLIST_SUB's to PLIST_FILES tuning and offload pkg-pistAlexey Dokuchaev2011-11-042-14/+6
| | | | | | | | | - Assign MAN1 variable dynamically, based on selection of utilities - Register `test' target quite natural dependency on `build' one, and hook it to `regression-test' so tests will be run when building on tinderbox Notes: svn path=/head/; revision=285020
* - Canonicalize Makefile headerAlexey Dokuchaev2011-11-041-23/+20
| | | | | | | | | | | | - Rephrase COMMENT line, define LICENSE (MIT) - Prefer lowercase (foo) to uppercase (FOO) variables in ``.for .. .endfor'' loops, as it indicates better that variable supposed to be "local" - Cleanup Makefile (drop no-op REINPLACE_CMD's, CFLAGS augmentation, etc.) - Use more standard MANPREFIX instead of MAN1PREFIX which also does not seem to be documented anywhere Notes: svn path=/head/; revision=285014
* - Improve port description (reformat and make it more complete)Alexey Dokuchaev2011-11-041-8/+13
| | | | | | | | | | - Stop telling lies about LGPL; while Little CMS did use LGPL until revision 1.12, it switched to the MIT license after that as it is more suitable for commercial applications - Remove Author tag since WWW page is comprehensive enough Notes: svn path=/head/; revision=285013
* - Fix build on FreeBSD 10Beat Gaetzi2011-10-271-1/+1
| | | | | | | - Remove contiguous blank line Notes: svn path=/head/; revision=284432
* - Return my ports back to the pool. I was unable to make any fixes toStanislav Sedov2011-10-241-1/+1
| | | | | | | | | | | my ports in the past 3 weeks while ports were broken on any 10.x machines, which means I'm unable to maintain them. So let people know that there's no available support for them until things are back to normal (which also means that anyone with spare time will be able to fix them without getting approval). Notes: svn path=/head/; revision=284225
* - 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
* - Update to 2.2. This is a bugfix release; it also adds support forStanislav Sedov2011-09-183-6/+6
| | | | | | | | | dictionary metatag. Submitted by: kwm@ Notes: svn path=/head/; revision=281932
* 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
* - Add port for graphics/lcms2, a second version of Little CMS.Stanislav Sedov2010-12-054-0/+115
This is a separate port, because lcms2 is not API compatible with lcms1. WWW: http://www.littlecms.com/ Notes: svn path=/head/; revision=265704