comparison print/cups/cups.sh @ 902:a133976e0783

vanilla: remove all origins, closes #2203
author David Demelier <markand@malikania.fr>
date Mon, 26 Aug 2019 12:14:53 +0200
parents fdac78a6d06e
children ddab65a5b3f5
comparison
equal deleted inserted replaced
901:e2de15b7d2b1 902:a133976e0783
47 else 47 else
48 with_acl="--disable-acl" 48 with_acl="--disable-acl"
49 fi 49 fi
50 50
51 if [ "$DBUS" = "yes" ]; then 51 if [ "$DBUS" = "yes" ]; then
52 PKGDEPENDS="network/dbus $PKGDEPENDS" 52 PKGDEPENDS="dbus $PKGDEPENDS"
53 with_dbus="--enable-dbus" 53 with_dbus="--enable-dbus"
54 else 54 else
55 with_dbus="--disable-bus" 55 with_dbus="--disable-bus"
56 fi 56 fi
57 57
58 if [ "$PAM" = "yes" ]; then 58 if [ "$PAM" = "yes" ]; then
59 PKGDEPENDS="security/linux-pam $PKGDEPENDS" 59 PKGDEPENDS="linux-pam $PKGDEPENDS"
60 with_pam="--enable-pam" 60 with_pam="--enable-pam"
61 else 61 else
62 with_pam="--disable-pam" 62 with_pam="--disable-pam"
63 fi 63 fi
64 64