blob: 71d2141dd4d25088a781630ea4cdf14a06da7c6c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
# ex:ts=8 -*-mode: makefile-*-
#
# New ports collection makefile for: cups-samba
# Date created: 2004-02-10
# Whom: John Merryweather Cooper <coop9211@uidaho.edu>
#
# $FreeBSD$
#
PORTNAME= cups-samba
PORTVERSION= 6.0
PORTREVISION= 2
CATEGORIES= print net
MASTER_SITES= ${MASTER_SITE_EASYSW}
MASTER_SITE_SUBDIR=cups/windows
DISTNAME= cups-windows-${PORTVERSION}-source
MAINTAINER= tomasv@megalogika.lt
COMMENT= The Common UNIX Printing System: MS Windows client drivers
RUN_DEPENDS= smbspool:${PORTSDIR}/net/samba3 \
${LOCALBASE}/sbin/cupsd:${PORTSDIR}/print/cups-base
NO_BUILD= yes
NO_WRKSUBDIR= yes
DATADIR= ${PREFIX}/share/cups
DRIVER_FILES= cups6.inf cups6.ini cupsps6.dll cupsui6.dll
SUB_FILES= pkg-message
pre-install:
${MKDIR} ${DATADIR}/drivers
do-install:
cd ${WRKSRC} && \
for DRVFILE in ${DRIVER_FILES}; do \
${INSTALL_DATA} ${WRKSRC}/cups-windows-${PORTVERSION}/i386/$${DRVFILE} ${DATADIR}/drivers; \
done
post-install:
@${CAT} ${PKGMESSAGE}
.include <bsd.port.mk>
|