diff options
author | Victor Ostorga <vostorga@gentoo.org> | 2011-06-02 16:52:01 +0000 |
---|---|---|
committer | Victor Ostorga <vostorga@gentoo.org> | 2011-06-02 16:52:01 +0000 |
commit | 2c55f30603be775a56f8b3543e71776115f350d7 (patch) | |
tree | e46580237a152b78eaab6f461ffa32d1b203d63d /net-fs | |
parent | Add 1.6 release that finaly supports GHNS. (diff) | |
download | gentoo-2-2c55f30603be775a56f8b3543e71776115f350d7.tar.gz gentoo-2-2c55f30603be775a56f8b3543e71776115f350d7.tar.bz2 gentoo-2-2c55f30603be775a56f8b3543e71776115f350d7.zip |
Using use_with in the caps-ng use flag case, thanks to leio for the heads up
(Portage version: 2.1.9.42/cvs/Linux i686)
Diffstat (limited to 'net-fs')
-rw-r--r-- | net-fs/cifs-utils/ChangeLog | 5 | ||||
-rw-r--r-- | net-fs/cifs-utils/cifs-utils-5.0.ebuild | 9 |
2 files changed, 7 insertions, 7 deletions
diff --git a/net-fs/cifs-utils/ChangeLog b/net-fs/cifs-utils/ChangeLog index c1d92974eabd..77c806471b62 100644 --- a/net-fs/cifs-utils/ChangeLog +++ b/net-fs/cifs-utils/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for net-fs/cifs-utils # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-fs/cifs-utils/ChangeLog,v 1.8 2011/06/02 15:54:15 vostorga Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-fs/cifs-utils/ChangeLog,v 1.9 2011/06/02 16:52:01 vostorga Exp $ + + 02 Jun 2011; Víctor Ostorga <vostorga@gentoo.org> cifs-utils-5.0.ebuild: + Using use_with in the caps-ng use flag case, thanks to leio for the heads up *cifs-utils-5.0 (02 Jun 2011) diff --git a/net-fs/cifs-utils/cifs-utils-5.0.ebuild b/net-fs/cifs-utils/cifs-utils-5.0.ebuild index d3a7ec2ff850..534ad13bec3e 100644 --- a/net-fs/cifs-utils/cifs-utils-5.0.ebuild +++ b/net-fs/cifs-utils/cifs-utils-5.0.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2011 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-fs/cifs-utils/cifs-utils-5.0.ebuild,v 1.1 2011/06/02 15:54:15 vostorga Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-fs/cifs-utils/cifs-utils-5.0.ebuild,v 1.2 2011/06/02 16:52:01 vostorga Exp $ EAPI=2 @@ -38,14 +38,11 @@ pkg_setup() { } src_configure() { - local myconf= - use caps && myconf="${myconf} --with-libcap-ng=no" - use caps-ng && myconf="${myconf} --with-libcap-ng=yes" econf \ $(use_enable ads cifsupcall) \ $(use_with caps libcap) \ - $(use_enable creds cifscreds) \ - ${myconf} + $(use_with caps-ng libcap-ng) \ + $(use_enable creds cifscreds) } src_install() { |