Tue Mar 22 22:51:13 2016 UTC ()
Register missing dependency on curses

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


(khorben)
diff -r1.11 -r1.12 pkgsrc/print/cups15/Makefile

cvs diff -r1.11 -r1.12 pkgsrc/print/cups15/Attic/Makefile (expand / switch to unified diff)

--- pkgsrc/print/cups15/Attic/Makefile 2016/03/05 11:27:53 1.11
+++ pkgsrc/print/cups15/Attic/Makefile 2016/03/22 22:51:13 1.12
@@ -1,14 +1,14 @@ @@ -1,14 +1,14 @@
1# $NetBSD: Makefile,v 1.11 2016/03/05 11:27:53 jperkin Exp $ 1# $NetBSD: Makefile,v 1.12 2016/03/22 22:51:13 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}
9BASE_VERS= 1.5.4 9BASE_VERS= 1.5.4
10DIST_VERS= ${BASE_VERS} 10DIST_VERS= ${BASE_VERS}
11PKGREVISION= 15 11PKGREVISION= 15
12 12
13# Fix for https://www.cups.org/str.php?L4609 13# Fix for https://www.cups.org/str.php?L4609
14PATCH_SITES= http://www.cups.org/strfiles.php/3482/ 14PATCH_SITES= http://www.cups.org/strfiles.php/3482/
@@ -182,18 +182,19 @@ post-install: @@ -182,18 +182,19 @@ post-install:
182 ${DESTDIR}${EGDIR}/$${file}; \ 182 ${DESTDIR}${EGDIR}/$${file}; \
183 done 183 done
184.if !empty(PKG_OPTIONS:Mpam) 184.if !empty(PKG_OPTIONS:Mpam)
185 ${INSTALL_DATA} ${WRKDIR}/cups.pam ${DESTDIR}${EGDIR} 185 ${INSTALL_DATA} ${WRKDIR}/cups.pam ${DESTDIR}${EGDIR}
186.endif 186.endif
187.if !empty(PKG_OPTIONS:Mdnssd) 187.if !empty(PKG_OPTIONS:Mdnssd)
188 ${LN} -fs ${DESTDIR}${PREFIX}/libexec/cups/backend/dnssd ${DESTDIR}${PREFIX}/libexec/cups/backend/mdns 188 ${LN} -fs ${DESTDIR}${PREFIX}/libexec/cups/backend/dnssd ${DESTDIR}${PREFIX}/libexec/cups/backend/mdns
189.endif 189.endif
190 190
191.include "../../converters/libiconv/buildlink3.mk" 191.include "../../converters/libiconv/buildlink3.mk"
192.include "../../devel/zlib/buildlink3.mk" 192.include "../../devel/zlib/buildlink3.mk"
193.include "../../graphics/png/buildlink3.mk" 193.include "../../graphics/png/buildlink3.mk"
194.include "../../graphics/tiff/buildlink3.mk" 194.include "../../graphics/tiff/buildlink3.mk"
 195.include "../../mk/curses.buildlink3.mk"
195.include "../../mk/jpeg.buildlink3.mk" 196.include "../../mk/jpeg.buildlink3.mk"
196.include "../../mk/pthread.buildlink3.mk" 197.include "../../mk/pthread.buildlink3.mk"
197.include "../../print/libpaper/buildlink3.mk" 198.include "../../print/libpaper/buildlink3.mk"
198.include "../../security/openssl/buildlink3.mk" 199.include "../../security/openssl/buildlink3.mk"
199.include "../../mk/bsd.pkg.mk" 200.include "../../mk/bsd.pkg.mk"