mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-22 00:35:15 +00:00
fe182bd54e
public distfiles", however it never had nor needed distfiles to begin with. - Stagify CUPS smb backend allows *nix users to print to Windows-attached printers via smbspool program, which comes with Samba. WWW: http://www.cups.org/articles.php?L294 Pointyhat to: bapt
27 lines
649 B
Makefile
27 lines
649 B
Makefile
# Created by: Andrew Pantyukhin <infofarmer@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= cups-smb-backend
|
|
PORTVERSION= 1.0
|
|
PORTREVISION= 6
|
|
CATEGORIES= print
|
|
MASTER_SITES= # empty
|
|
DISTFILES= # empty
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= CUPS backend for printing to Windows servers
|
|
|
|
RUN_DEPENDS= smbspool:${PORTSDIR}/net/${SAMBA_PORT} \
|
|
${LOCALBASE}/sbin/cupsd:${PORTSDIR}/print/cups-base
|
|
|
|
NO_BUILD= yes
|
|
PLIST_FILES= libexec/cups/backend/smb
|
|
SAMBA_PORT?= samba36
|
|
SUB_FILES= pkg-message
|
|
|
|
do-install:
|
|
${MKDIR} ${STAGEDIR}${PREFIX}/libexec/cups/backend
|
|
${LN} -fs ${PREFIX}/bin/smbspool ${STAGEDIR}${PREFIX}/libexec/cups/backend/smb
|
|
|
|
.include <bsd.port.mk>
|