mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-13 07:34:50 +00:00
- disable libusb support if deselected.
- support USB2 in base for FreeBSD 8-STABLE - clenup option CUPS_OVERWRITE_BASE PR: 141246 Submitted by: Matt Dawson
This commit is contained in:
parent
45bc9d6886
commit
13fef8a3cd
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=245387
@ -173,8 +173,13 @@ CONFIGURE_ARGS+= --disable-dbus
|
||||
RUN_DEPENDS+= xdg-open:${PORTSDIR}/devel/xdg-utils
|
||||
.endif
|
||||
|
||||
.if !defined(CUPS_CLIENT) && !defined(CUPS_IMAGE) && defined(WITH_LIBUSB)
|
||||
.if !defined(CUPS_CLIENT) && !defined(CUPS_IMAGE) && defined(WITH_LIBUSB) && ${OSVERSION}>800062
|
||||
CPPFLAGS+= -I/usr/include
|
||||
LDFLAGS+= -L/usr/lib
|
||||
.elif !defined(CUPS_CLIENT) && !defined(CUPS_IMAGE) && defined(WITH_LIBUSB) && ${OSVERSION}<800063
|
||||
LIB_DEPENDS+= usb:${PORTSDIR}/devel/libusb
|
||||
.else
|
||||
CONFIGURE_ARGS+= --disable-libusb
|
||||
.endif
|
||||
|
||||
.if defined(CUPS_CLIENT)
|
||||
|
@ -24,4 +24,8 @@ To enable printing under Gimp and MS-Windows clients do the following:
|
||||
1) Uncomment application/octet-stream line in mime.types
|
||||
2) Uncomment application/octet-stream line in mime.convs
|
||||
3) Restart cupsd
|
||||
|
||||
If you are using libusb, it is important that no device driver, e.g.
|
||||
ulpt(4) is attached to the device you wish to use. In this case please
|
||||
ensure the cups user and group has read/write access to /dev/ugen*
|
||||
======================================================================
|
||||
|
@ -20,6 +20,11 @@
|
||||
%%OVERWRITE%%@exec if test -e /usr/bin/lpr; then chmod -h 0 /usr/bin/lpr; fi
|
||||
%%OVERWRITE%%@exec if test -e /usr/bin/lprm; then chmod -h 0 /usr/bin/lprm; fi
|
||||
%%OVERWRITE%%@exec if test -e /usr/sbin/lpc; then chmod -h 0 /usr/sbin/lpc; fi
|
||||
%%OVERWRITE%%@unexec if test -e /usr/bin/lp; then chmod -h 0555 /usr/bin/lp; fi
|
||||
%%OVERWRITE%%@unexec if test -e /usr/bin/lpq; then chmod -h 06555 /usr/bin/lpq; fi
|
||||
%%OVERWRITE%%@unexec if test -e /usr/bin/lpr; then chmod -h 06555 /usr/bin/lpr; fi
|
||||
%%OVERWRITE%%@unexec if test -e /usr/bin/lprm; then chmod -h 06555 /usr/bin/lprm; fi
|
||||
%%OVERWRITE%%@unexec if test -e /usr/sbin/lpc; then chmod -h 02555 /usr/sbin/lpc; fi
|
||||
@unexec if cmp -s %D/etc/cups/cupsd.conf.N %D/etc/cups/cupsd.conf; then rm -f %D/etc/cups/cupsd.conf; fi
|
||||
etc/cups/cupsd.conf.N
|
||||
@exec if test ! -f %D/etc/cups/cupsd.conf; then cp -p %D/etc/cups/cupsd.conf.N %D/etc/cups/cupsd.conf; fi
|
||||
|
Loading…
Reference in New Issue
Block a user