diff options
author | Lars Wendler <polynomial-c@gentoo.org> | 2012-11-25 12:24:43 +0000 |
---|---|---|
committer | Lars Wendler <polynomial-c@gentoo.org> | 2012-11-25 12:24:43 +0000 |
commit | c3d9766663c5da499064da13f018d8aeb5efbd3c (patch) | |
tree | 92ff58306ad000f858cf20a38c82bfedf74919b5 | |
parent | Fix about:memory use for jemalloc-3 (diff) | |
download | gentoo-2-c3d9766663c5da499064da13f018d8aeb5efbd3c.tar.gz gentoo-2-c3d9766663c5da499064da13f018d8aeb5efbd3c.tar.bz2 gentoo-2-c3d9766663c5da499064da13f018d8aeb5efbd3c.zip |
Version bump. Removed old.
(Portage version: 2.2.0_alpha142/cvs/Linux x86_64, signed Manifest commit with key 0x981CA6FC)
-rw-r--r-- | net-fs/cifs-utils/ChangeLog | 8 | ||||
-rw-r--r-- | net-fs/cifs-utils/cifs-utils-5.8.ebuild (renamed from net-fs/cifs-utils/cifs-utils-5.4.ebuild) | 30 |
2 files changed, 15 insertions, 23 deletions
diff --git a/net-fs/cifs-utils/ChangeLog b/net-fs/cifs-utils/ChangeLog index c44db385d1b1..c11f5742591a 100644 --- a/net-fs/cifs-utils/ChangeLog +++ b/net-fs/cifs-utils/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for net-fs/cifs-utils # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-fs/cifs-utils/ChangeLog,v 1.36 2012/09/29 16:54:02 armin76 Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-fs/cifs-utils/ChangeLog,v 1.37 2012/11/25 12:24:43 polynomial-c Exp $ + +*cifs-utils-5.8 (25 Nov 2012) + + 25 Nov 2012; Lars Wendler <polynomial-c@gentoo.org> -cifs-utils-5.4.ebuild, + +cifs-utils-5.8.ebuild: + non-maintainer commit: Version bump. Removed old. 29 Sep 2012; Raúl Porcel <armin76@gentoo.org> cifs-utils-5.5-r1.ebuild: alpha/ia64/s390/sh/sparc stable wrt #433325 diff --git a/net-fs/cifs-utils/cifs-utils-5.4.ebuild b/net-fs/cifs-utils/cifs-utils-5.8.ebuild index d516b5f26e17..1f9f22e8e039 100644 --- a/net-fs/cifs-utils/cifs-utils-5.4.ebuild +++ b/net-fs/cifs-utils/cifs-utils-5.8.ebuild @@ -1,18 +1,18 @@ # Copyright 1999-2012 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.4.ebuild,v 1.10 2012/08/07 17:10:19 armin76 Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-fs/cifs-utils/cifs-utils-5.8.ebuild,v 1.1 2012/11/25 12:24:43 polynomial-c Exp $ EAPI=4 inherit eutils confutils linux-info DESCRIPTION="Tools for Managing Linux CIFS Client Filesystems" -HOMEPAGE="http://www.samba.org/linux-cifs/cifs-utils/" +HOMEPAGE="http://wiki.samba.org/index.php/LinuxCIFS_utils" SRC_URI="ftp://ftp.samba.org/pub/linux-cifs/${PN}/${P}.tar.bz2" LICENSE="GPL-3" SLOT="0" -KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 s390 sh sparc x86" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86" IUSE="ads +caps caps-ng creds upcall" DEPEND="!net-fs/mount-cifs @@ -26,6 +26,8 @@ RDEPEND="${DEPEND}" REQUIRED_USE="^^ ( caps caps-ng )" +DOCS="doc/linux-cifs-client-guide.odt" + pkg_setup() { confutils_use_conflict caps caps-ng if ! linux_config_exists || ! linux_chkconfig_present CIFS; then @@ -40,32 +42,16 @@ pkg_setup() { fi } -src_prepare() { - #Getting rid of -Werror - sed -e "s/-Werror//" -i Makefile.in || die "sed failed" -} - src_configure() { - local myconf='' - if use "caps-ng"; then - myconf="${myconf} --with-libcap-ng=yes " - else - myconf="${myconf} --with-libcap-ng=no " - fi - myconf="${myconf} \ + econf \ $(use_enable ads cifsupcall) \ $(use_with caps libcap) \ $(use_with caps-ng libcap-ng) \ $(use_enable creds cifscreds) \ $(use_enable upcall cifsupcall) \ + --with-libcap-ng=$(use caps-ng && echo 'yes' || echo 'no') \ --disable-cifsidmap \ - --disable-cifsacl" - econf ${myconf} -} - -src_install() { - emake install DESTDIR="${D}" || die "emake install failed" - dodoc doc/linux-cifs-client-guide.odt + --disable-cifsacl } pkg_postinst() { |