blob: 9b60918cbd973602209888eee708966a98c86387 (
plain)
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
45
46
47
48
49
50
51
52
53
54
55
56
|
# $NetBSD: Makefile,v 1.12 2002/03/21 03:48:15 fredb Exp $
DISTNAME= cupsomatic
PKGNAME= ${DISTNAME}-2.2
PKGREVISION= 1
CATEGORIES= print
EXTRACT_SUFX= # empty
# Not sure why ${MASTER_SITE_LOCAL:=${PKGNAME}} doesn't work, but the
# following does the correct substitution.
#
.for subdir in ${PKGNAME}
MASTER_SITES= ${MASTER_SITE_LOCAL:=${subdir}/}
.endfor
# The definitive location of the distfile is at www.linuxprinting.org,
# but this file has no revision number.
#
#MASTER_SITES+= http://www.linuxprinting.org/
MAINTAINER= jlam@netbsd.org
HOMEPAGE= http://www.linuxprinting.org/cups-doc.html
COMMENT= Foomatic CUPS printer filter
CONFLICTS+= cupsomatic-200012??
DIST_SUBDIR= ${PKGNAME_NOREV}
DEPENDS+= cups>=1.1.14nb1:../../print/cups
DEPENDS+= foomatic-gswrapper>=1.2:../../print/foomatic-gswrapper
DEPENDS+= ghostscript{,-nox11}-[6-9]*:../../print/ghostscript
DEPENDS+= mpage-[0-9]*:../../print/mpage
USE_PERL5= yes
WRKSRC= ${WRKDIR}
EXTRACT_CMD= ${CP} ${DOWNLOADED_DISTFILE} ${WRKSRC}/${DISTNAME}
FILTERDIR= ${PREFIX}/libexec/cups/filter
do-build:
cd ${WRKSRC}; \
for file in cupsomatic; do \
${SED} -e "s|/usr/bin/perl|${PERL5}|g" \
-e "s|/usr/local|${LOCALBASE}|g" \
-e "s|/etc/foomatic|${PKG_SYSCONFDIR}/foomatic|g" \
$${file} > $${file}.fixed; \
${MV} $${file}.fixed $${file}; \
done
do-install:
cd ${WRKSRC}; \
for file in cupsomatic; do \
${INSTALL_SCRIPT} ${WRKSRC}/$${file} ${FILTERDIR}; \
done
.include "../../mk/bsd.pkg.mk"
|