View | Details | Raw Unified | Return to bug 190086
Collapse All | Expand All

(-)Makefile (+1 lines)
Lines 24-29 Link Here
24
SHEBANG_FILES=	filter/textonly
24
SHEBANG_FILES=	filter/textonly
25
USE_GNOME=	glib20
25
USE_GNOME=	glib20
26
USE_GHOSTSCRIPT=	yes
26
USE_GHOSTSCRIPT=	yes
27
USE_RC_SUBR=	cups_browsed
27
GNU_CONFIGURE=	yes
28
GNU_CONFIGURE=	yes
28
CUPS_SOCKET=	/var/run/cups.sock
29
CUPS_SOCKET=	/var/run/cups.sock
29
CONFIGURE_ARGS=	--with-cups-domainsocket=${CUPS_SOCKET}
30
CONFIGURE_ARGS=	--with-cups-domainsocket=${CUPS_SOCKET}
(-)files/cups_browsed.in (+29 lines)
Line 0 Link Here
1
#!/bin/sh
2
3
# $FreeBSD$
4
#
5
# PROVIDE: cups_browsed
6
# REQUIRE: LOGIN
7
# KEYWORD: shutdown
8
#
9
# Add the following to /etc/rc.conf[.local] to enable this service
10
#
11
# cups_browsed_enable (bool):	Set to NO by default.
12
#				Set it to YES to enable cups_browsed.
13
#
14
15
. /etc/rc.subr
16
17
name=cups_browsed
18
rcvar=cups_browsed_enable
19
20
load_rc_config ${name}
21
22
 : ${cups_browsed_enable:=NO}
23
24
command=/usr/sbin/daemon
25
pidfile=/var/run/cups-browsed.pid
26
command_args="-p ${pidfile} %%PREFIX%%/sbin/cups-browsed"
27
procname="%%PREFIX%%/sbin/cups-browsed"
28
29
run_rc_command "$1"

Return to bug 190086