diff options
author | Lars Wendler <polynomial-c@gentoo.org> | 2013-02-22 15:08:37 +0000 |
---|---|---|
committer | Lars Wendler <polynomial-c@gentoo.org> | 2013-02-22 15:08:37 +0000 |
commit | 2b90a494b8981d22b5940b21f0e05de14aca2082 (patch) | |
tree | 9b30426c4efe6570d1ca73692b5edfad0f0bf525 /net-fs | |
parent | Security bump (bug #458390). Removed old (diff) | |
download | gentoo-2-2b90a494b8981d22b5940b21f0e05de14aca2082.tar.gz gentoo-2-2b90a494b8981d22b5940b21f0e05de14aca2082.tar.bz2 gentoo-2-2b90a494b8981d22b5940b21f0e05de14aca2082.zip |
Version bump. Removed old
(Portage version: 2.2.0_alpha163/cvs/Linux x86_64, signed Manifest commit with key 0x981CA6FC)
Diffstat (limited to 'net-fs')
-rw-r--r-- | net-fs/cifs-utils/ChangeLog | 8 | ||||
-rw-r--r-- | net-fs/cifs-utils/cifs-utils-5.9.ebuild (renamed from net-fs/cifs-utils/cifs-utils-5.5-r1.ebuild) | 40 |
2 files changed, 24 insertions, 24 deletions
diff --git a/net-fs/cifs-utils/ChangeLog b/net-fs/cifs-utils/ChangeLog index 13f9c5718711..307b2b0f1b23 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-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-fs/cifs-utils/ChangeLog,v 1.48 2013/02/22 09:04:02 zmedico Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-fs/cifs-utils/ChangeLog,v 1.49 2013/02/22 15:08:37 polynomial-c Exp $ + +*cifs-utils-5.9 (22 Feb 2013) + + 22 Feb 2013; Lars Wendler <polynomial-c@gentoo.org> + -cifs-utils-5.5-r1.ebuild, +cifs-utils-5.9.ebuild: + Non-maintainer commit: Version bump. Removed old. 22 Feb 2013; Zac Medico <zmedico@gentoo.org> cifs-utils-5.8-r1.ebuild: Fix for prefix and add ~arm-linux + ~x86-linux keywords. diff --git a/net-fs/cifs-utils/cifs-utils-5.5-r1.ebuild b/net-fs/cifs-utils/cifs-utils-5.9.ebuild index 9d9f443c2565..1bfa32bef905 100644 --- a/net-fs/cifs-utils/cifs-utils-5.5-r1.ebuild +++ b/net-fs/cifs-utils/cifs-utils-5.9.ebuild @@ -1,18 +1,18 @@ -# Copyright 1999-2012 Gentoo Foundation +# Copyright 1999-2013 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.5-r1.ebuild,v 1.5 2012/09/29 16:54:02 armin76 Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-fs/cifs-utils/cifs-utils-5.9.ebuild,v 1.1 2013/02/22 15:08:37 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 ~arm-linux ~x86-linux" IUSE="ads +caps caps-ng creds upcall" DEPEND="!net-fs/mount-cifs @@ -26,7 +26,11 @@ RDEPEND="${DEPEND}" REQUIRED_USE="^^ ( caps caps-ng )" +DOCS="doc/linux-cifs-client-guide.odt" + pkg_setup() { + linux-info_pkg_setup + confutils_use_conflict caps caps-ng if ! linux_config_exists || ! linux_chkconfig_present CIFS; then ewarn "You must enable CIFS support in your kernel config, " @@ -40,35 +44,25 @@ pkg_setup() { fi } -src_prepare() { - # bug #424487 - epatch "${FILESDIR}"/${P}-initialize_rc_var_properly.patch - - #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} \ + ROOTSBINDIR="${EPREFIX}"/sbin \ + 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} + --disable-cifsacl } src_install() { - emake install DESTDIR="${D}" || die "emake install failed" - dodoc doc/linux-cifs-client-guide.odt + default + + # remove empty directories + find "${ED}" -type d -print0 | xargs --null rmdir \ + --ignore-fail-on-non-empty &>/dev/null } pkg_postinst() { |