diff options
author | jlam <jlam@pkgsrc.org> | 2001-12-18 20:22:59 +0000 |
---|---|---|
committer | jlam <jlam@pkgsrc.org> | 2001-12-18 20:22:59 +0000 |
commit | 9efcd64075c222100ceb74e2479d5f24a4c213a9 (patch) | |
tree | 4398d1c69eccb0c7b3d197ff556f4f1145defdb1 /mk/bsd.pkg.obsolete.mk | |
parent | 0d69b6d0f6865112be8b6ae375bea30e661e33ca (diff) | |
download | pkgsrc-9efcd64075c222100ceb74e2479d5f24a4c213a9.tar.gz |
Since print/cups conflicts with another popular print package,
print/lprng, we make a new variable USE_CUPS that is used by packages to
determine whether depend on print/cups and to compile in support for CUPS.
USE_CUPS may be either "YES" or undefined. Deprecate SAMBA_WITH_CUPS as
its purpose is superseded by USE_CUPS. Convert net/samba and net/samba20
to use USE_CUPS and make x11/kdelibs2 respect USE_CUPS.
Diffstat (limited to 'mk/bsd.pkg.obsolete.mk')
-rw-r--r-- | mk/bsd.pkg.obsolete.mk | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/mk/bsd.pkg.obsolete.mk b/mk/bsd.pkg.obsolete.mk index b77dd2a23a7..6fd8d71fc16 100644 --- a/mk/bsd.pkg.obsolete.mk +++ b/mk/bsd.pkg.obsolete.mk @@ -1,4 +1,4 @@ -# $NetBSD: bsd.pkg.obsolete.mk,v 1.4 2001/11/28 14:01:16 jlam Exp $ +# $NetBSD: bsd.pkg.obsolete.mk,v 1.5 2001/12/18 20:22:59 jlam Exp $ # # This file holds make(1) logic to allow obsolete or deprecated variables # still to be used. These may eventually disappear over time as the contents @@ -24,3 +24,7 @@ PKG_SYSCONFDIR.php?= ${PHP_CONFDIR} .if defined(VTUN_SYSCONFDIR) PKG_SYSCONFDIR.vtun?= ${VTUN_SYSCONFDIR} .endif + +.if defined(SAMBA_WITH_CUPS) +USE_CUPS= YES +.endif |