Hi,
On Wed, Sep 19, 2007 at 01:45:43PM -0400, Mike Erdely wrote:
[...]
> > Port available at http://bigio.snb.it/openbsd/foo2zjs.tgz
> > Giovanni
>
> Tested on i386 and macppc. Works with my HP CLJ 2600n.
> LOCALBASE in pkg/MESSAGE needs to be replaced with PREFIX.
>
> With that change, ok to commit?
Commenting here, after some short discussions on icb...
IMHO, since the port already run-depends on cups, there's no reason
not to install the PPDs right into the cups directory
(${PREFIX}/share/cups/model). From the foo2zjs Makefile it doesn't
look like the PPDs are of any use except for cups. So, the install-ppd:
target of the Makefile could probably be just changed to something
like this:
PPD=${PREFIX}/share/cups/model
install-ppd:
#
# Install PPD files for CUPS
#
mkdir -p $(PPD)
cd PPD; \
for ppd in *.ppd; do \
gzip < $$ppd > $(PPD)/$$ppd.gz; \
done
However, neiter merdely@ nor me were sure about this, and further
looking at the PLIST, I notice that the PPDs are installed into two
directories (share/foo2zjs/PPD and share/foo2jzs/model). Could you
(Giovanni) check wether this port works with the PPDs only installed
into share/cups/model?
Ciao,
Kili