From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 4445059CA9 for ; Wed, 30 Mar 2016 14:07:26 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 241DB21C008; Wed, 30 Mar 2016 14:07:23 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id C4A2F21C008 for ; Wed, 30 Mar 2016 14:07:22 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 72C183408EE for ; Wed, 30 Mar 2016 14:07:21 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4634E85A for ; Wed, 30 Mar 2016 14:07:13 +0000 (UTC) From: "Lars Wendler" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Lars Wendler" Message-ID: <1459346441.955e092df75b63c6de9b3295808b44aeaa22e954.polynomial-c@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-fs/samba/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-fs/samba/samba-4.2.9.ebuild net-fs/samba/samba-4.3.6.ebuild net-fs/samba/samba-4.4.0.ebuild X-VCS-Directories: net-fs/samba/ X-VCS-Committer: polynomial-c X-VCS-Committer-Name: Lars Wendler X-VCS-Revision: 955e092df75b63c6de9b3295808b44aeaa22e954 X-VCS-Branch: master Date: Wed, 30 Mar 2016 14:07:13 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 75299e8f-22d0-4cc9-a380-bc1bca2575d9 X-Archives-Hash: 1dc054c81b82e679a493755f617a57ff commit: 955e092df75b63c6de9b3295808b44aeaa22e954 Author: Lars Wendler gentoo org> AuthorDate: Wed Mar 30 14:00:41 2016 +0000 Commit: Lars Wendler gentoo org> CommitDate: Wed Mar 30 14:00:41 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=955e092d net-fs/samba: Fixed smb backend detection by cups (bug #552310) Package-Manager: portage-2.2.28 Signed-off-by: Lars Wendler gentoo.org> net-fs/samba/samba-4.2.9.ebuild | 5 +++++ net-fs/samba/samba-4.3.6.ebuild | 5 +++++ net-fs/samba/samba-4.4.0.ebuild | 5 +++++ 3 files changed, 15 insertions(+) diff --git a/net-fs/samba/samba-4.2.9.ebuild b/net-fs/samba/samba-4.2.9.ebuild index 7be1319..c1965dd 100644 --- a/net-fs/samba/samba-4.2.9.ebuild +++ b/net-fs/samba/samba-4.2.9.ebuild @@ -215,6 +215,11 @@ multilib_src_install() { doins examples/LDAP/samba.schema fi + # create symlink for cups (bug #552310) + if use cups ; then + dosym /usr/bin/smbspool /usr/libexec/cups/backend/smb + fi + # install example config file insinto /etc/samba doins examples/smb.conf.default diff --git a/net-fs/samba/samba-4.3.6.ebuild b/net-fs/samba/samba-4.3.6.ebuild index c0c77cc..c7b267c 100644 --- a/net-fs/samba/samba-4.3.6.ebuild +++ b/net-fs/samba/samba-4.3.6.ebuild @@ -207,6 +207,11 @@ multilib_src_install() { doins examples/LDAP/samba.schema fi + # create symlink for cups (bug #552310) + if use cups ; then + dosym /usr/bin/smbspool /usr/libexec/cups/backend/smb + fi + # install example config file insinto /etc/samba doins examples/smb.conf.default diff --git a/net-fs/samba/samba-4.4.0.ebuild b/net-fs/samba/samba-4.4.0.ebuild index 6235136..94cfac8 100644 --- a/net-fs/samba/samba-4.4.0.ebuild +++ b/net-fs/samba/samba-4.4.0.ebuild @@ -190,6 +190,11 @@ multilib_src_install() { doins examples/LDAP/samba.schema fi + # create symlink for cups (bug #552310) + if use cups ; then + dosym /usr/bin/smbspool /usr/libexec/cups/backend/smb + fi + # install example config file insinto /etc/samba doins examples/smb.conf.default