package: move lpr into its own package

Reviewed by: imp
Pull Request: https://github.com/freebsd/freebsd-src/pull/1171
This commit is contained in:
Lexi Winter 2024-04-19 16:53:30 -06:00 committed by Warner Losh
parent 42acb16bb8
commit dbd0366f34
17 changed files with 26 additions and 3 deletions

View File

@ -257,7 +257,9 @@ CONSOLEPACKAGE= console-tools
.endif
.if ${MK_LPR} != "no"
CONFS+= lpd
CONFGROUPS+= LP
LP+= lpd
LPPACKAGE= lp
.endif
.if ${MK_KERBEROS} != "no"

View File

@ -100,6 +100,8 @@ kerberos-lib_COMMENT= Kerberos Libraries
kerberos-lib_DESC= Kerberos Libraries
kernel_COMMENT= FreeBSD Kernel
kernel_DESC= FreeBSD Kernel
lp_COMMENT= Printer subsystem
lp_DESC= Printer subsystem
manuals_COMMENT= Manual Pages
manuals_DESC= Manual Pages
mlx-tools_COMMENT= Mellanox Utilities

View File

@ -1,6 +1,7 @@
.PATH: ${.CURDIR:H}/common_source
PACKAGE=lp
PROG= chkprintcap
MAN= chkprintcap.8
SRCS= chkprintcap.c skimprintcap.c

View File

@ -1,6 +1,7 @@
SUBDIR= koi2alt koi2855
PACKAGE=lp
FILES= bjc-240.sh.sample
.include "Makefile.inc"

View File

@ -1,4 +1,5 @@
PACKAGE=lp
PROG= koi2855
MAN=

View File

@ -1,4 +1,5 @@
PACKAGE=lp
PROG= koi2alt
MAN=

View File

@ -1,6 +1,7 @@
BINDIR= ${LIBEXECDIR}/lpr
PACKAGE=lp
PROG= lpf
MAN=

View File

@ -1,6 +1,7 @@
BINDIR= /usr/bin
PACKAGE=lp
SCRIPTS=lp.sh
MAN= lp.1

View File

@ -1,6 +1,7 @@
.PATH: ${.CURDIR:H}/common_source
PACKAGE=lp
PROG= lpc
MAN= lpc.8
SRCS= lpc.c cmds.c cmdtab.c movejobs.c

View File

@ -1,4 +1,5 @@
PACKAGE=lp
CONFS= hosts.lpd printcap
PROG= lpd
MAN= lpd.8

View File

@ -1,6 +1,7 @@
BINDIR= /usr/bin
PACKAGE=lp
PROG= lpq
BINOWN= root
BINGRP= daemon

View File

@ -3,6 +3,7 @@
BINDIR= /usr/bin
PACKAGE=lp
PROG= lpr
MAN= lpr.1 printcap.5
BINOWN= root

View File

@ -3,6 +3,7 @@
BINDIR= /usr/bin
PACKAGE=lp
PROG= lprm
BINOWN= root
BINGRP= daemon

View File

@ -1,4 +1,5 @@
PACKAGE=lp
PROG= lptest
CFLAGS+= -I${.CURDIR:H}/common_source

View File

@ -1,6 +1,7 @@
.PATH: ${.CURDIR:H}/common_source
PACKAGE=lp
PROG= pac
MAN= pac.8

View File

@ -15,7 +15,10 @@ FTPDIR= /etc/newsyslog.conf.d
.endif
.if ${MK_LPR} != "no"
CONFS+= lpr.conf
CONFGROUPS+= LP
LP+= lpr.conf
LPPACKAGE= lp
LPDIR= /etc/newsyslog.conf.d
.endif
.if ${MK_OFED} != "no"

View File

@ -31,7 +31,10 @@ FTPPACKAGE= ftpd
.endif
.if ${MK_LPR} != "no"
SYSLOGD_D+= lpr.conf
CONFGROUPS+= LP
LP+= lpr.conf
LPDIR= /etc/syslog.d
LPPACKAGE= lp
.endif
.if ${MK_PPP} != "no"