notbugAs an Amazon Associate I earn from qualifying purchases.
Want a good read? Try FreeBSD Mastery: Jails (IT Mastery Book 15)
Want a good monitor light? See my photosAll times are UTC
Ukraine
This referral link gives you 10% off a Fastmail.com account and gives me a discount on my Fastmail account.

Get notified when packages are built

A new feature has been added. FreshPorts already tracks package built by the FreeBSD project. This information is displayed on each port page. You can now get an email when FreshPorts notices a new package is available for something on one of your watch lists. However, you must opt into that. Click on Report Subscriptions on the right, and New Package Notification box, and click on Update.

Finally, under Watch Lists, click on ABI Package Subscriptions to select your ABI (e.g. FreeBSD:14:amd64) & package set (latest/quarterly) combination for a given watch list. This is what FreshPorts will look for.

non port: print/xpp/Makefile

Number of commits found: 33

Thursday, 25 Jun 2020
21:09 cy search for other commits by this committer
print/xpp has been unsupported by the CUPS team since 2005. There have
been no new releases since then. It now fails to build with the latest
CUPS, so it's time to let xpp go to the ports repo in the sky.
Original commitRevision:540407 
Tuesday, 8 Nov 2016
20:52 cy search for other commits by this committer
Replace cupsTempFile() with tmpnam(). cupsTempFile() no longer exists.

PR:		214332
Original commitRevision:425761 
Friday, 1 Apr 2016
14:16 mat search for other commits by this committer
Remove ${PORTSDIR}/ from dependencies, categories m, n, o, and p.

With hat:	portmgr
Sponsored by:	Absolight
Original commitRevision:412348 
Friday, 11 Mar 2016
11:53 tijl search for other commits by this committer
Combine print/cups-base, print/cups-client and print/cups-image into
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)
Original commitRevision:410825 
Monday, 30 Nov 2015
22:33 marino search for other commits by this committer
print/xpp is not jobs safe

This port has failed on me multiple times in a multijob bulk run.  This
last time, xppmain.cxx tries to use mainwindow.h before it is available.
Original commitRevision:402707 
Saturday, 20 Dec 2014
19:33 bapt search for other commits by this committer
cleanup plist
Original commitRevision:375108 
Wednesday, 10 Sep 2014
20:50 gerald search for other commits by this committer
Update the default version of GCC in the Ports Collection from GCC 4.7.4
to GCC 4.8.3.

Part II, Bump PORTREVISIONs.

PR:		192025
Tested by:	antoine (-exp runs)
Approved by:	portmgr (implicit)
Original commitRevision:367888 
Thursday, 3 Apr 2014
19:03 antoine search for other commits by this committer
- Fix build with new cups
- Stage support

Reported by:	pkg-fallout
With hat:	portmgr
MFH:		2014Q2
Original commitRevision:350041 
Friday, 20 Sep 2013
22:44 bapt search for other commits by this committer
Add NO_STAGE all over the place in preparation for the staging support (cat:
print)
Original commitRevision:327765 
Friday, 1 Jun 2012
05:26 dinoex search for other commits by this committer
- update png to 1.5.10
Original commit
Sunday, 4 Dec 2011
06:25 cy search for other commits by this committer
Fix build with fltk-1.3.0.

Feature safe:   yes
Original commit
Tuesday, 29 Nov 2011
21:15 cy search for other commits by this committer
Fix build errors due to cups 1.5.0.

Assume maintainership of this orphan.

Feature safe:   yes
Original commit
Tuesday, 1 Nov 2011
22:51 dougb search for other commits by this committer
Add EXPIRATION_DATE=    2011-11-30 to recently BROKEN ports that do not
already have one.
Original commit
Sunday, 9 Oct 2011
14:07 pav search for other commits by this committer
- Mark BROKEN after cups update: does not compile
  xpp.h:99: error: ISO C++ forbids declaration of 'ppd_file_t' with no type

Reported by:    pointyhat
Original commit
Wednesday, 29 Dec 2010
20:04 pgollucci search for other commits by this committer
- DISTNAME= ${PORTNAME}-${PORTVERSION} is the default and not needed.

PR:             ports/153292
Submitted by:   myself (pgollucci)
Tested by:      -exp run by pav
Approved by:    portmgr (pav)
Original commit
Sunday, 28 Mar 2010
06:47 dinoex search for other commits by this committer
- update to 1.4.1
Reviewed by:    exp8 run on pointyhat
Supported by:   miwi
Original commit
Tuesday, 23 Mar 2010
21:14 gahr search for other commits by this committer
- Chase x11-toolkits/fltk update
Original commit
Monday, 15 Mar 2010
14:07 gahr search for other commits by this committer
- Fix dependency line (cupsd is in ${LOCALBASE}/sbin)
Original commit
Friday, 5 Feb 2010
11:46 dinoex search for other commits by this committer
- update to jpeg-8
Original commit
Saturday, 22 Aug 2009
00:35 amdmi3 search for other commits by this committer
- Switch SourceForge ports to the new File Release System: categories starting
with P,R,S
Original commit
Friday, 31 Jul 2009
13:57 dinoex search for other commits by this committer
- bump all port that indirectly depends on libjpeg and have not yet been bumped
or updated
Requested by:   edwin
Original commit
Sunday, 17 May 2009
04:44 dinoex search for other commits by this committer
- use cups-client
Original commit
Friday, 6 Jun 2008
13:58 edwin search for other commits by this committer
Bump portrevision due to upgrade of devel/gettext.

The affected ports are the ones with gettext as a run-dependency
according to ports/INDEX-7 (5007 of them) and the ones with USE_GETTEXT
in Makefile (29 of them).

PR:             ports/124340
Submitted by:   edwin@
Approved by:    portmgr (pav)
Original commit
Saturday, 16 Feb 2008
22:30 linimon search for other commits by this committer
njl has handed in his commit bit.

Hat:            portmgr
Original commit
Saturday, 19 May 2007
20:32 flz search for other commits by this committer
- Welcome X.org 7.2 \o/.
- Set X11BASE to ${LOCALBASE} for recent ${OSVERSION}.
- Bump PORTREVISION for ports intalling files in ${X11BASE}.
Original commit
Sunday, 8 Apr 2007
00:22 njl search for other commits by this committer
Install the README as a doc also, similar to the 1.1 version of this port.
Original commit
00:11 njl search for other commits by this committer
Fix build on g++41 by removing unnecessary qualifier.
Original commit
Thursday, 29 Mar 2007
08:57 miwi search for other commits by this committer
XPP is a graphical utility for managing printers and submitting print jobs.
It interfaces with CUPS on the backend and allows the user to configure
double sided printing, active tray, color adjustment, etc.  It supports the
command line flags of lpr as well.

You will first need to configure a printer via CUPS to use XPP.

WWW: http://cups.sourceforge.net/xpp/

PR:             ports/110780
Submitted by:   Nate Lawson <njl at freebsd.org>
Original commit
Friday, 8 Aug 2003
04:00 kris search for other commits by this committer
As announced on May 6, remove the broken print/xpp port.
Original commit
Wednesday, 7 May 2003
00:08 kris search for other commits by this committer
BROKEN: Does not compile
Original commit
Friday, 21 Feb 2003
13:23 knu search for other commits by this committer
De-pkg-comment.
Original commit
Saturday, 23 Nov 2002
00:37 edwin search for other commits by this committer
Maintainer update to version 1.1

PR:             ports/45382
Submitted by:   Daniel J. O'Connor <darius@dons.net.au>
Original commit
Wednesday, 3 Oct 2001
15:39 petef search for other commits by this committer
Add xpp-1.0, a GUI print front-end for CUPS    
Original commit

Number of commits found: 33