aboutsummaryrefslogtreecommitdiff
path: root/print/cups-bjnp
Commit message (Collapse)AuthorAgeFilesLines
* Remove WWW entries moved into port MakefilesStefan Eßer2022-09-071-2/+0
| | | | | | | | | | Commit b7f05445c00f has added WWW entries to port Makefiles based on WWW: lines in pkg-descr files. This commit removes the WWW: lines of moved-over URLs from these pkg-descr files. Approved by: portmgr (tcberner)
* Add WWW entries to port MakefilesStefan Eßer2022-09-071-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | It has been common practice to have one or more URLs at the end of the ports' pkg-descr files, one per line and prefixed with "WWW:". These URLs should point at a project website or other relevant resources. Access to these URLs required processing of the pkg-descr files, and they have often become stale over time. If more than one such URL was present in a pkg-descr file, only the first one was tarnsfered into the port INDEX, but for many ports only the last line did contain the port specific URL to further information. There have been several proposals to make a project URL available as a macro in the ports' Makefiles, over time. This commit implements such a proposal and moves one of the WWW: entries of each pkg-descr file into the respective port's Makefile. A heuristic attempts to identify the most relevant URL in case there is more than one WWW: entry in some pkg-descr file. URLs that are not moved into the Makefile are prefixed with "See also:" instead of "WWW:" in the pkg-descr files in order to preserve them. There are 1256 ports that had no WWW: entries in pkg-descr files. These ports will not be touched in this commit. The portlint port has been adjusted to expect a WWW entry in each port Makefile, and to flag any remaining "WWW:" lines in pkg-descr files as deprecated. Approved by: portmgr (tcberner)
* print/cups-bjnp: Drop maintainershipDanilo Egea Gondolfo2021-05-191-1/+1
|
* 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
|
* print/cups-bjnp: fix build on GCC architecturesPiotr Kubaj2020-08-301-2/+2
| | | | | | | | | Use C11 compiler: bjnp-io.h:106: error: redefinition of typedef 'printer_t' bjnp.h:132: error: previous declaration of 'printer_t' was here Notes: svn path=/head/; revision=547055
* - Update to 2.0.3Danilo Egea Gondolfo2020-08-093-76/+4
| | | | | | | - Remove gettimeofday patch (upstream moved away from ftime) Notes: svn path=/head/; revision=544567
* - Update to 2.0.2Danilo Egea Gondolfo2019-09-092-4/+4
| | | | Notes: svn path=/head/; revision=511709
* - Update to 2.0.1Danilo Egea Gondolfo2018-02-275-13/+17
| | | | | | | | | - Add LICENSE - Use PLIST_FILES intead of pkg-plist file - Re-gen the patches to make portlint happy Notes: svn path=/head/; revision=463166
* Remove ${PORTSDIR}/ from dependencies, categories m, n, o, and p.Mathieu Arnold2016-04-011-1/+1
| | | | | | | | With hat: portmgr Sponsored by: Absolight Notes: svn path=/head/; revision=412348
* - Update security/gnutls to 3.4.10.Tijl Coosemans2016-03-271-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | - Rename the LIBDANE option DANE because that's the name of the protocol supported by libgnutls-dane and gnutls-cli. Also clarify the option description. - Add an IDN option. - libgnutls-openssl has been removed in 3.4. Some ports used this library in their LIB_DEPENDS but no port actually required it. - Some old API functions have been removed. Ports that used these have been updated or patched to use the new API. - Add a patch to print/cups to prevent overlinking of libgnutls.so. - Bump PORTREVISION on dependent ports. net-im/jabber: This port used the old API to give users fine grained control over which crypto algorithms were used via a configuration file. It's not immediately obvious how to port this to the new API so the port always uses the defaults now. www/hydra: Mark BROKEN. This uses more removed calls than the other ports, is said to be alpha quality and not fully functional and has been abandoned 10 years ago. PR: 207768 Exp-run by: antoine Approved by: portmgr (antoine) Notes: svn path=/head/; revision=411990
* Combine print/cups-base, print/cups-client and print/cups-image intoTijl Coosemans2016-03-111-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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
* Cleanup plistAntoine Brodin2014-11-131-2/+0
| | | | Notes: svn path=/head/; revision=372510
* - Update from 1.2.2 to 2.0Danilo Egea Gondolfo2014-09-074-58/+58
| | | | | | | - Update the pkg-descr Notes: svn path=/head/; revision=367544
* - Ignore the beta versionDanilo Egea Gondolfo2014-08-081-0/+2
| | | | Notes: svn path=/head/; revision=364358
* - Update from 1.2.1 to 1.2.2Danilo Egea Gondolfo2014-08-073-6/+5
| | | | | | | | - Update pkg-descr - Take maintainership Notes: svn path=/head/; revision=364240
* 1: remove NO_STAGEVanilla I. Shu2014-06-101-2/+1
| | | | | | | 2: convert to new format of LIB_DEPENDS. Notes: svn path=/head/; revision=357246
* Back to poolCarlo Strub2014-06-031-1/+1
| | | | | | | | | PR: 190333 Submitted by: shurd@sasktel.net (maintainer) Approved by: portmgr (implicit) Notes: svn path=/head/; revision=356408
* Add NO_STAGE all over the place in preparation for the staging support (cat: ↵Baptiste Daroussin2013-09-201-1/+1
| | | | | | | print) Notes: svn path=/head/; revision=327765
* Update port to latest version.Diane Bruce2013-08-275-19/+87
| | | | | | | | PR: ports/174129 Submitted by: shurd@sasktel.net (Maintainer) Notes: svn path=/head/; revision=325426
* - update png to 1.5.10Dirk Meyer2012-06-011-1/+1
| | | | Notes: svn path=/head/; revision=297915
* - Builds on 9.x nowMichael Scheidell2011-12-151-8/+3
| | | | | | | | PR: ports/163106 Approved by: gabor (mentor) Notes: svn path=/head/; revision=287435
* Mark as broken on latest -9: fails to compile.Mark Linimon2011-11-111-1/+7
| | | | | | | | Hat: portmgr Feature safe: yes Notes: svn path=/head/; revision=285515
* - Fix buildPav Lucistnik2011-10-141-0/+10
| | | | | | | Submitted by: Stephen Hurd <shurd@sasktel.net> (maintainer) Notes: svn path=/head/; revision=283521
* - Add LDFLAGS to CONFIGURE_ENV and MAKE_ENV (as it was done with LDFLAGS)Dmitry Marakasov2011-09-231-1/+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
* - Kick MD5 SupportMartin Wilke2011-07-031-1/+0
| | | | Notes: svn path=/head/; revision=276961
* - 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
* - bump all port that indirectly depends on libjpeg and have not yet been ↵Dirk Meyer2009-07-311-0/+1
| | | | | | | | | bumped or updated Requested by: edwin Notes: svn path=/head/; revision=238701
* - Update to 0.5.3Dmitry Marakasov2009-05-194-35/+4
| | | | | | | | PR: 134702 Sumitted by: Stephen Hurd <shurd@sasktel.net> (maintainer) Notes: svn path=/head/; revision=234219
* CUPS backend for the canon proprietary USB over IP network printingPav Lucistnik2009-05-156-0/+64
protocol, BJNP. This backend is based on reverse engineering using TCP/IP. It can be used with CUPS 1.2 and 1.3. This backend allows Cups to connect over the network to a Canon printers WWW: http://cups-bjnp.sourceforge.net/ PR: ports/134075 Submitted by: Stephen Hurd <shurd@sasktel.net> Notes: svn path=/head/; revision=233929