Tue Mar 22 14:43:53 2016 UTC ()
Register missing dependency on curses

Found with an unprivileged bootstrap on NetBSD/amd64 (--prefer-pkgsrc yes)


(khorben)
diff -r1.228 -r1.229 pkgsrc/print/cups/Makefile

cvs diff -r1.228 -r1.229 pkgsrc/print/cups/Makefile (expand / switch to unified diff)

--- pkgsrc/print/cups/Makefile 2016/03/05 11:27:53 1.228
+++ pkgsrc/print/cups/Makefile 2016/03/22 14:43:53 1.229
@@ -1,14 +1,14 @@ @@ -1,14 +1,14 @@
1# $NetBSD: Makefile,v 1.228 2016/03/05 11:27:53 jperkin Exp $ 1# $NetBSD: Makefile,v 1.229 2016/03/22 14:43:53 khorben Exp $
2# 2#
3# The CUPS author is very good about taking back changes into the main 3# The CUPS author is very good about taking back changes into the main
4# CUPS distribution. The correct place to send patches or bug-fixes is: 4# CUPS distribution. The correct place to send patches or bug-fixes is:
5# cups-bugs@cups.org. 5# cups-bugs@cups.org.
6 6
7DISTNAME= cups-${DIST_VERS}-source 7DISTNAME= cups-${DIST_VERS}-source
8PKGNAME= cups-${DIST_VERS:S/-/./g} 8PKGNAME= cups-${DIST_VERS:S/-/./g}
9PKGREVISION= 1 9PKGREVISION= 1
10BASE_VERS= 2.1.3 10BASE_VERS= 2.1.3
11DIST_VERS= ${BASE_VERS} 11DIST_VERS= ${BASE_VERS}
12CATEGORIES= print 12CATEGORIES= print
13MASTER_SITES= http://www.cups.org/software/${BASE_VERS}/ 13MASTER_SITES= http://www.cups.org/software/${BASE_VERS}/
14EXTRACT_SUFX= .tar.bz2 14EXTRACT_SUFX= .tar.bz2
@@ -169,18 +169,19 @@ post-install: @@ -169,18 +169,19 @@ post-install:
169 done 169 done
170 ${CHMOD} g-w ${DESTDIR}${PREFIX}/libexec/cups/cgi-bin 170 ${CHMOD} g-w ${DESTDIR}${PREFIX}/libexec/cups/cgi-bin
171.if !empty(PKG_OPTIONS:Mpam) 171.if !empty(PKG_OPTIONS:Mpam)
172 ${INSTALL_DATA} ${WRKDIR}/cups.pam ${DESTDIR}${EGDIR} 172 ${INSTALL_DATA} ${WRKDIR}/cups.pam ${DESTDIR}${EGDIR}
173.endif 173.endif
174.if !empty(PKG_OPTIONS:Mdnssd) 174.if !empty(PKG_OPTIONS:Mdnssd)
175 ${LN} -sf ${DESTDIR}${PREFIX}/libexec/cups/backend/dnssd ${DESTDIR}${PREFIX}/libexec/cups/backend/mdns 175 ${LN} -sf ${DESTDIR}${PREFIX}/libexec/cups/backend/dnssd ${DESTDIR}${PREFIX}/libexec/cups/backend/mdns
176.endif 176.endif
177 177
178.include "../../converters/libiconv/buildlink3.mk" 178.include "../../converters/libiconv/buildlink3.mk"
179.include "../../devel/zlib/buildlink3.mk" 179.include "../../devel/zlib/buildlink3.mk"
180.include "../../graphics/png/buildlink3.mk" 180.include "../../graphics/png/buildlink3.mk"
181.include "../../graphics/tiff/buildlink3.mk" 181.include "../../graphics/tiff/buildlink3.mk"
 182.include "../../mk/curses.buildlink3.mk"
182.include "../../mk/jpeg.buildlink3.mk" 183.include "../../mk/jpeg.buildlink3.mk"
183.include "../../mk/pthread.buildlink3.mk" 184.include "../../mk/pthread.buildlink3.mk"
184.include "../../print/libpaper/buildlink3.mk" 185.include "../../print/libpaper/buildlink3.mk"
185.include "../../security/openssl/buildlink3.mk" 186.include "../../security/openssl/buildlink3.mk"
186.include "../../mk/bsd.pkg.mk" 187.include "../../mk/bsd.pkg.mk"