summaryrefslogtreecommitdiff
path: root/graphics/lcms (follow)
Commit message (Collapse)AuthorAgeFilesLines
* - Update to 1.18.Stanislav Sedov2009-04-073-6/+11
| | | | | | | - Do not install .la and static library files. Notes: svn path=/head/; revision=231775
* - Update to 1.17.Stanislav Sedov2007-09-092-5/+5
| | | | Notes: svn path=/head/; revision=199192
* - Set --mandir and --infodir in CONFIGURE_ARGS if the configure scriptRong-En Fan2007-07-231-1/+0
| | | | | | | | | | | | | | | | | | | | | supports them. This is determined by running ``configure --help'' in do-configure target and set the shell variable _LATE_CONFIGURE_ARGS which is then passed to CONFIGURE_ARGS. - Remove --mandir and --infodir in ports' Makefile where applicable Few ports use REINPLACE_CMD to achieve the same effect, remove them too. - Correct some manual pages location from PREFIX/man to MANPREFIX/man - Define INFO_PATH where necessary - Document that .info files are installed in a subdirectory relative to PREFIX/INFO_PATH and slightly change add-plist-info to use INFO_PATH and subdirectory detection. PR: ports/111470 Approved by: portmgr Discussed with: stas (Mk/*), gerald (info related stuffs) Tested by: pointyhat exp run Notes: svn path=/head/; revision=196111
* - Fix man locationStanislav Sedov2007-01-201-1/+2
| | | | | | | Submitted by: db Notes: svn path=/head/; revision=182842
* - Update to 1.16Stanislav Sedov2006-12-294-46/+7
| | | | | | | | | | - Add missed manpage entries [1] PR: ports/107173 Submitted by: Radim Kolar SF.NET <hsn@sendmail.cz> [1] Notes: svn path=/head/; revision=180993
* - Fix typo in OPTIONS handlingStanislav Sedov2006-11-141-1/+1
| | | | | | | | PR: ports/105515 Submitted by: Eygene <rea-fbsd@codelabs.ru> Notes: svn path=/head/; revision=177261
* - Add KNOBS to build supplimentary utilitiesStanislav Sedov2006-10-082-3/+40
| | | | | | | | | | | - Change my email PR: ports/76116 (based on) Suggested by: Raphael Langerhorst <raphael-langerhorst@gmx.at> Approved by: sem (mentor) Notes: svn path=/head/; revision=174974
* - Update to 1.15Martin Wilke2006-08-103-10/+18
| | | | | | | | | | | | | | | | | | | | | - Pass maintainership to submitter Short changelog: - Black preservation on CMYK-> CMYK transforms - Ability to set adaptation state of observer on absolute colorimetric transforms. - A rather advanced feature. Actually it only allows No adaptation (d=0) and observer fully adapted (d=1) - lcms can now "fix" some broken 8-bit profiles that have gray axes misplaced. - icctrans can now read CGATS/IT8 files. - improved tifficc with tiff Lab8 support PR: ports/101603 Submitted by: Stanislav Sedov <ssedov(at)mbsd.msk.ru> Approved by: krion (mentor) Notes: svn path=/head/; revision=170309
* Remove USE_REINPLACE for categories starting with a GEdwin Groothuis2006-05-071-1/+0
| | | | Notes: svn path=/head/; revision=161663
* Conversion to a single libtool environment.Ade Lovett2006-02-232-1/+3
| | | | | | | Approved by: portmgr (kris) Notes: svn path=/head/; revision=156749
* - Add SHA256Pav Lucistnik2005-11-261-0/+1
| | | | Notes: svn path=/head/; revision=149530
* Mass-conversion to the USE_AUTOTOOLS New World Order. The code presentAde Lovett2005-11-151-1/+1
| | | | | | | | | | | | | | | | | | | | in bsd.autotools.mk essentially makes this a no-op given that all the old variables set a USE_AUTOTOOLS_COMPAT variable, which is parsed in exactly the same way as USE_AUTOTOOLS itself. Moreover, USE_AUTOTOOLS has already been extensively tested by the GNOME team -- all GNOME 2.12.x ports use it. Preliminary documentation can be found at: http://people.FreeBSD.org/~ade/autotools.txt which is in the process of being SGMLized before introduction into the Porters Handbook. Light blue touch-paper. Run. Notes: svn path=/head/; revision=148323
* - libdata/pkgconfig is now included in mtreePav Lucistnik2005-05-161-1/+0
| | | | | | | Approved by: marcus (portmgr hat) Notes: svn path=/head/; revision=135416
* Handle libtool version more properly to prevent leftovers.Kirill Ponomarev2005-01-311-1/+1
| | | | Notes: svn path=/head/; revision=127758
* Update to 1.14Volker Stolz2005-01-284-27/+4
| | | | | | | | PR: ports/76116 Submitted by: Raphael Langerhorst Notes: svn path=/head/; revision=127546
* The previous commit should have bumped PORTREVISION since it changedJoe Marcus Clarke2004-11-111-0/+1
| | | | | | | | | the runtime dependency list. Noticed by: GNOME Tinderbox Notes: svn path=/head/; revision=121425
* Remove the bogus dependency on -ltiff (--without-tiff was always in there).Mikhail Teterin2004-10-252-4/+9
| | | | | | | | | | Make the testcms link the new -lcms statically to avoid possible conflicts with the already installed library (probably of a different version). PR: ports/68610 Notes: svn path=/head/; revision=120177
* take care of $PREFIX/libdata/pkgconfigOliver Lehmann2004-08-141-0/+1
| | | | Notes: svn path=/head/; revision=116224
* Apply a big libtool patch to allow porters to use the libtool installed byJoe Marcus Clarke2004-07-091-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | the libtoolX ports instead of the one included with each port. Ports that set USE_LIBTOOL_VER=X will now use the ports version of libtool instead of the included version. To restore previous behavior, use the new macro, USE_INC_LIBTOOL_VER. Both macros accept the same argument: a libtool version. For example, to use the ports version of libtool-1.5, add the following to your Makefile: USE_LIBTOOL_VER= 15 To use the included version of libtool with extra hacks provided by libtool-1.5, add the following to your Makefile: USE_INC_LIBTOOL_VER= 15 With this change, ports that had to add additional libtool hacks to prevent .la files from being installed or to fix certain threading issues can now delete those hacks (after appropriate testing, of course). PR: 63944 Based on work by:eik and marcus Approved by: ade (autotools maintainer) Tested by: kris on pointyhat Bound to be hidden problems: You bet Notes: svn path=/head/; revision=113296
* Fix 64-bit platforms: the ALIGNLONG macro aligned on an 32-bit wordMarcel Moolenaar2004-06-262-0/+22
| | | | | | | | | | boundary, which on 64-bit platforms is not the proper alignment for longs. The patch replaces the hardcoding of 3 with sizeof(long)-1. Tested on: ia64 Notes: svn path=/head/; revision=112336
* Update to version 1.13Kirill Ponomarev2004-06-223-4/+5
| | | | Notes: svn path=/head/; revision=111984
* - Update to version 1.12Kirill Ponomarev2004-05-237-57/+51
| | | | | | | | PR: ports/67083 Submitted by: Ports Fury Notes: svn path=/head/; revision=109810
* Better way to resolve ldscripts issue.Alexander Nedotsukov2004-02-061-2/+1
| | | | | | | Pointed by: marcus Notes: svn path=/head/; revision=100112
* Quick workaround to unbroke build on -STABLE.Alexander Nedotsukov2004-02-061-0/+1
| | | | | | | | | ${LD} can't found libm.so in standard search path. Reported by: Mike Harding <mvh@ix.netcom.com> Notes: svn path=/head/; revision=100102
* Shared library make use of -lm symbols therefore must be linked against it.Alexander Nedotsukov2004-02-052-0/+2
| | | | | | | | | Otherwise we get unresolved references error at the time linking this library into objects w/o -lm dependency. This was the reason why color proof module in gimp-devel was not built. Notes: svn path=/head/; revision=100063
* SIZEify.Trevor Johnson2004-01-291-0/+1
| | | | Notes: svn path=/head/; revision=99360
* Drop maintainership; I have no interest in this port beyond wanting KDE toKris Kennaway2003-05-221-1/+1
| | | | | | | build on our supported architectures. Notes: svn path=/head/; revision=81730
* Transfer maintainership to kris. This port proved too difficult toMikhail Teterin2003-05-221-1/+1
| | | | | | | | maintain without access to machines of various architectures. Kris has such access, but would not share it and gets tired too quickly. Notes: svn path=/head/; revision=81715
* With my portmgr hat on, revert this port to 1.09 and bump PORTEPOCH.Kris Kennaway2003-05-212-2/+3
| | | | | | | | | The port fails to pass the internal self-tests on 64-bit platforms running very recent 5.1 systems, but it is required to build KDE and therefore critical for the release. Notes: svn path=/head/; revision=81644
* Upgrade 1.10 to 1.09Mikhail Teterin2003-05-072-2/+2
| | | | Notes: svn path=/head/; revision=80377
* Clear moonlight beckons.Ade Lovett2003-03-072-1/+1
| | | | | | | | | | Requiem mors pacem pkg-comment, And be calm ports tree. E Nomini Patri, E Fili, E Spiritu Sancti. Notes: svn path=/head/; revision=77045
* Use BYTE_ORDER, BIG_ and LITTLE_ENDIAN instead of theirMikhail Teterin2002-11-061-2/+2
| | | | | | | | | | | underscore-prefixed aliases, which are not available on -stable. There I was proud of myself for testing on i386, alpha, and panther, and still missing a -stable incompatibility :-\ Submitted by: Voodai, Lars Erik Gullerud, Ivajlo Nikolov (so far) Notes: svn path=/head/; revision=69577
* Fix build on Sparc64 by automating the endianness detection. (Thanks,Mikhail Teterin2002-11-061-0/+15
| | | | | | | once again, to the "test" target.) Notes: svn path=/head/; revision=69565
* Upgrade to 1.09. Prepend SourceForge's list of mirrors to MASTER_SITES.Mikhail Teterin2002-11-064-7/+12
| | | | | | | | | Install JPEG-related sample files in addition to the TIFF sample. All this samples can be built by the port, BTW, but would require lib-dependency on libtiff and libjpeg. Notes: svn path=/head/; revision=69562
* Fix build on currentKris Kennaway2002-06-161-1/+2
| | | | Notes: svn path=/head/; revision=61352
* Upgrade to 1.08. The tests report success on Alpha too (beast), evenMikhail Teterin2002-01-057-140/+18
| | | | | | | | | | | | | though there are plenty of messages about unalligned access... (Notably, the author incorporated almost all of our 32-bit related patches). PR: ports/33528 Submitted by: Lev A. Serebryakov Notes: svn path=/head/; revision=52608
* Uh, actually commit the patches described in my previous commit.Mikhail Teterin2001-09-053-0/+151
| | | | | | | The primary purpose is to fix the port on Alphas. Notes: svn path=/head/; revision=47456
* Teach it to try int32_t and friends on all Unixes, not just SGI's Irix.Mikhail Teterin2001-09-051-0/+1
| | | | | | | | | | | | A whole bunch of little 32-bit related hunks was needed, but now it passes its own bundled tests (which also needed a little patch for an unitialized variable) on Alpha. Bump PORTREVISION. Submitted by: Andrew Gallatin, Doug Rabson Tested on: beast Notes: svn path=/head/; revision=47455
* Ooops, this should've been part of my yesterday's commit...Mikhail Teterin2001-04-113-55/+14
| | | | | | | Thanks to: Jaroshenko at mailru dot com Notes: svn path=/head/; revision=41285
* Upgrade to 1.07. Use the official PORTDOCS instead of the pre-PORTDOCSMikhail Teterin2001-04-104-28/+23
| | | | | | | | | | | | | | | | homegrown DOCS variable. Do not install the test-executable, but run it after build. Change the mastersite and WWW. Thanks to: KATO Tsuguru who sent me the cleaning up and WWW changing patch, which made me look and notice, the new version is also available. I will submit the fix for ImageMagick -- lcms.h is now <lcms.h>, not <lcms/lcms.h>. Notes: svn path=/head/; revision=41251
* - Use USE_LIBTOOL;Maxim Sobolev2000-12-192-16/+11
| | | | | | | | - move variable definition from rules section of Makefile; - sort pkg-plist. Notes: svn path=/head/; revision=36126
* Add new port of LCMS 1.06, the Little Color Management System, aTrevor Johnson2000-11-037-0/+122
graphics library. Color management is the process of keeping "profiles" which describe the response of scanners, cameras, monitors, printers and such to light, and compensating for the different response curves as images are transferred from one device to another. PR: 22420 Submitted by: Mikhail Teterin <mi@aldan.algebra.com> Notes: svn path=/head/; revision=34760