aboutsummaryrefslogtreecommitdiff
path: root/print/cups-filters/pkg-plist
Commit message (Collapse)AuthorAgeFilesLines
* print/cups-filters: Update to 1.28.10Tijl Coosemans2021-09-181-1/+0
| | | | | | | Enable POPPLER option by default to support some Brother printers. (Poppler was already a dependency through the PSHYBRID option.) PR: 258540
* Update to 1.28.1.Tijl Coosemans2020-09-071-2/+5
| | | | Notes: svn path=/head/; revision=547889
* Update to 1.27.5.Tijl Coosemans2020-06-061-1/+1
| | | | | | | | | | Use @sample for cups-browsed.conf. [1] PR: 246074 [1] Submitted by: Felix Palmen <felix@palmen-it.de> [1] Notes: svn path=/head/; revision=538106
* Update to 1.26.1.Tijl Coosemans2020-01-101-2/+3
| | | | Notes: svn path=/head/; revision=522572
* Update to 1.25.6.Tijl Coosemans2019-09-251-0/+1
| | | | | | | Remove libiconv fix from post-patch. Fixed upstream. Notes: svn path=/head/; revision=512789
* - Update to 1.25.0.Tijl Coosemans2019-06-081-0/+1
| | | | | | | - Make portlint happy. Notes: svn path=/head/; revision=503720
* - Update to 1.21.3.Tijl Coosemans2018-10-101-16/+26
| | | | | | | | - Reorganise options to enable configurations that don't depend on Ghostscript or Poppler. Notes: svn path=/head/; revision=481734
* - Update to 1.13.5Martin Wilke2017-05-061-1/+1
| | | | | | | | PR: 219016 Submitted by: maintainer Notes: svn path=/head/; revision=440223
* Add a MUPDF option under PDFTOPS_RENDERER. When activated, mupdf will be usedMatthew Rezny2017-04-101-2/+2
| | | | | | | | | | | | | instead of Ghostscript/Poppler. When inactive, mupdf is not a dependency. PR: 217848 Submitted by: raivo.hool@gmail.com Reviewed by: mat Approved by: swills (mentor), cyberbotx@cyberbotx.com (maintainer) Differential Revision: https://reviews.freebsd.org/D10325 Notes: svn path=/head/; revision=438171
* print/cups-filters: update 1.11.4 -> 1.13.4Bartek Rutkowski2017-03-221-1/+5
| | | | | | | | | | | | | | | * Add LICENSE * Add dependency to mupdf * Update distinfo * Update pkg-plist * Add patches to filter/gstoraster.c and filter/mupdftoraster.c due to execvpe() not existing under FreeBSD PR: 217848 Submitted by: Naram Qashat <cyberbotx@cyberbotx.com> (maintainer) Notes: svn path=/head/; revision=436699
* Update to version 1.11.4Pawel Pekala2016-09-301-0/+3
| | | | | | | | PR: 212871 Submitted by: Naram Qashat (maintainer) Notes: svn path=/head/; revision=423018
* - Update to version 1.10.0Pawel Pekala2016-08-031-3/+3
| | | | | | | | | | - Update required dependencies PR: 211534 Submitted by: Naram Qashat (maintainer) Notes: svn path=/head/; revision=419541
* - Update cups-filters to 1.8.3.Tijl Coosemans2016-03-291-32/+33
| | | | | | | | | | | | | | | | | | - Move D-Bus dependency under a COLORD option. - Make libijs dependency optional. - Add BRAILLE option and add missing dependencies to it. There's no port of liblouisutdml yet but it isn't strictly required. - Move jpeg, png and tiff dependencies under an IMAGEFILTERS option. - Add an option group for cups-browsed, move AVAHI under it and add LDAP. - Add an option group to select the default PDF-to-PostScript renderer. - Add --disable-silent-rules to CONFIGURE_ARGS to make build logs more verbose. PR: 208345 Approved by: Naram Qashat <cyberbotx@cyberbotx.com> (maintainer) Notes: svn path=/head/; revision=412114
* Combine print/cups-base, print/cups-client and print/cups-image intoTijl Coosemans2016-03-111-5/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | print/cups and update it to 2.1.3. Also remove print/cups-pstoraster, improve print/cups-filters, print/foomatic-* and update print/hplip to 3.16.2. Long description: First some background. When you hand a file to cups it sets up a chain of filter programs that converts the file to something a printer understands. Each filter has a cost associated with it and cups tries to find the cheapest chain. Costs used to be configured in such a way that files were first converted to PostScript. This could then be manipulated further (e.g. putting multiple pages on one sheet) before finally being sent to a PostScript printer or another filter like pstoraster which produces a raster format understood by non-PostScript printer drivers. Nowadays most filters have been moved from cups to cups-filters and they have been configured to use PDF as an intermediate format instead of PostScript. Merging of cups-base, cups-client and cups-image into print/cups: - cups-image provides a library to work with the cups raster format. It is only used to implement filters and printer drivers and these only exist in the context of a cups server so there's no need to separate this from cups-base. - cups-client provides a library that allows applications to print via cups. It is possible to use the library to access a remote cups server without running a local cups server, but such a setup is discouraged and the configuration file to set this up has been marked deprecated. It is better to run a local cups server and let that talk to the remote cups server because then you have the benefits of local job queuing in case the remote server is down or busy. Given this and the fact that without filters cups-base is now smaller than it used to be it makes sense to merge the ports. The patch also adds options IPPTOOL, DOCS and NLS which when disabled make the new cups package smaller than the current cups-client package. Merging the ports also prevents problems with options like ZEROCONF being configured differently in both ports. - print/cups was a metaport that depended on cups-base and some filters. There isn't really a need for such a metaport so cups-base can be renamed to cups. The filters can be depended on by printer drivers such as hplip if they need them. Additional changes to the new print/cups: - Clean up the patches. They seem to have been regenerated with post-patch changes included. - Add a patch to prevent intermediate conversion to PDF when a PostScript file is sent to a PostScript printer when cups-filters is installed. - Fix the PAM configuration file. - Add a patch to let the server search /usr/local/share/ppd like on Linux so other ports don't have to add links to it. - Remove ulpt(4) helper scripts. The port uses libusb with ugen(4). - Remove support for mDNSResponder. cups-filters only supports Avahi. - Combine ICONS and XDG_OPEN options into an X11 option to support WITHOUT_X11. - Optionally depend on colord for ICC profile support. - Various smaller changes. Changes to print/cups-filters: - Let the cups_browsed rc.d script depend on cupsd and avahi_daemon instead of LOGIN. - Development of foomatic-filters has been moved to cups-filters so let this port install foomatic related files and add foomatic-filters to CONFLICTS. - Fix location of liblouis tables. - Add patch to fix ICC support. Changes to print/cups-pstoraster: This port is essentially an old version of Ghostscript plus a cups filter. It's no longer developed. This commit removes it and changes existing dependencies to print/cups-filters which depends on print/ghostscript* and includes a gstoraster filter that can handle both PostScript and PDF. Changes to print/foomatic-db*: Remove old MASTER_SITES and dependencies and eliminate PKGNAMEPREFIX. Changes to print/foomatic-filters: Install beh backend with its original name again and add cups-filters to CONFLICTS. Changes to print/hplip: - Stop installing hpijs/foomatic-rip support. This is no longer supported upstream. - Stop installing hpcups PPDs. These are now automatically generated. The bundled PPDs are generated for an older version of cups. - Rename the QT option to X11 to support WITHOUT_X11. - Simplify the patches now that ports are installed in a staging area. - Add a patch to set SO_REUSEPORT (next to SO_REUSEADDR) on the mDNS socket like avahi-daemon does. This fixes Zeroconf support for HP network printers. PR: 207746 Exp-run by: antoine Approved by: portmgr (antoine) Notes: svn path=/head/; revision=410825
* print/cups-filters: 1.5.0 -> 1.8.2Kurt Jaeger2016-02-131-0/+28
| | | | | | | | | | | Changes: http://bzr.linuxfoundation.org/loggerhead/openprinting/cups-filters/changes PR: 206720 Submitted by: Naram Qashat <cyberbotx@cyberbotx.com> (maintainer) Notes: svn path=/head/; revision=408827
* print/cups-filters: update to 1.0.76Jan Beich2015-09-241-0/+1
| | | | | | | | | | | - Drop MAKE_JOBS_UNSAFE after testing with -j32 on Core2 Quad Changes: /usr/local/share/doc/cups-filters/NEWS PR: 202686 Submitted by: Naram Qashat cyberbotx@cyberbotx.com (maintainer) Notes: svn path=/head/; revision=397705
* - Update to 1.0.69Dmitry Marakasov2015-06-151-1/+1
| | | | | | | | PR: 200798 Submitted by: cyberbotx@cyberbotx.com (maintainer) Notes: svn path=/head/; revision=389691
* - Update to 1.0.68Dmitry Marakasov2015-05-181-0/+1
| | | | | | | | PR: 199971 Submitted by: cyberbotx@cyberbotx.com (maintainer) Notes: svn path=/head/; revision=386703
* print/cups-filters: update 1.0.58 -> 1.0.61Bartek Rutkowski2014-10-171-18/+0
| | | | | | | | | | | - Fixes in pkg-plist PR: 194172 Submitted by: Naram Qashat <cyberbotx@cyberbotx.com> Approved by: mentors (implicit) Notes: svn path=/head/; revision=371051
* Update to version 1.0.58Pawel Pekala2014-09-201-0/+1
| | | | | | | | PR: ports/193780 Submitted by: maintainer Notes: svn path=/head/; revision=368686
* print/cups-filters: update to 1.0.55William Grzybowski2014-08-091-0/+6
| | | | | | | | PR: 192498 Submitted by: maintainer Notes: svn path=/head/; revision=364436
* - Update from 1.0.53 to 1.0.54Danilo Egea Gondolfo2014-06-071-2/+3
| | | | | | | | | | - Add libtool to USES PR: ports/190758 Submitted by: Naram Qashat <cyberbotx@cyberbotx.com> (maintainer) Notes: svn path=/head/; revision=356937
* print/cups-filters: update to 1.0.52 and hand over to the new maintainerBoris Samorodov2014-04-101-6/+6
| | | | | | | | | | | . update to version 1.0.52; . transfer the port to the submitter. PR: ports/188371 Submitted by: Naram Qashat <cyberbotx@cyberbotx.com> Notes: svn path=/head/; revision=350839
* print/cups-filters: update to version 1.0.50.Boris Samorodov2014-04-051-0/+6
| | | | | | | | | | | | | | This should fix a reported regression (I managed to reproduce it with HP laser printers) when a job is printed but remains in a job query. Reported by: Dr. Peter Voigt <pvoigt@uos.de> Tested by: Dr. Peter Voigt <pvoigt@uos.de> Discussed at: freebsd-ports@ MFH: 2014Q2 Notes: svn path=/head/; revision=350243
* Add cups-filters, it contains backends, filters and otherBaptiste Daroussin2014-03-301-0/+94
software that was once part of the core CUPS distribution but is no longer maintained by Apple Inc PR: ports/186824 Submitted by: bsam Notes: svn path=/head/; revision=349681