diff options
author | Jeremy Olexa <darkside@gentoo.org> | 2011-05-12 15:38:22 +0000 |
---|---|---|
committer | Jeremy Olexa <darkside@gentoo.org> | 2011-05-12 15:38:22 +0000 |
commit | 610c388b57e01184c8d2859f1aaf9259237510cf (patch) | |
tree | b4f7b4370bf7eae3dbc0047374ec95a9515c0119 /net-fs | |
parent | 1.5.19 is seriously broken, bump to 21: "specifically, files written in a poi... (diff) | |
download | gentoo-2-610c388b57e01184c8d2859f1aaf9259237510cf.tar.gz gentoo-2-610c388b57e01184c8d2859f1aaf9259237510cf.tar.bz2 gentoo-2-610c388b57e01184c8d2859f1aaf9259237510cf.zip |
QA: remove version with non-fetchable patchball
(Portage version: 2.1.9.46/cvs/Linux i686)
Diffstat (limited to 'net-fs')
-rw-r--r-- | net-fs/autofs/ChangeLog | 5 | ||||
-rw-r--r-- | net-fs/autofs/autofs-4.1.4.ebuild | 90 |
2 files changed, 4 insertions, 91 deletions
diff --git a/net-fs/autofs/ChangeLog b/net-fs/autofs/ChangeLog index 9b1cb44afb67..d4c81cc6cb54 100644 --- a/net-fs/autofs/ChangeLog +++ b/net-fs/autofs/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for net-fs/autofs # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-fs/autofs/ChangeLog,v 1.104 2011/04/30 18:20:50 pva Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-fs/autofs/ChangeLog,v 1.105 2011/05/12 15:38:22 darkside Exp $ + + 12 May 2011; Jeremy Olexa <darkside@gentoo.org> -autofs-4.1.4.ebuild: + QA: remove version with non-fetchable patchball *autofs-5.0.5-r3 (30 Apr 2011) diff --git a/net-fs/autofs/autofs-4.1.4.ebuild b/net-fs/autofs/autofs-4.1.4.ebuild deleted file mode 100644 index 3914953a4051..000000000000 --- a/net-fs/autofs/autofs-4.1.4.ebuild +++ /dev/null @@ -1,90 +0,0 @@ -# Copyright 1999-2011 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-fs/autofs/autofs-4.1.4.ebuild,v 1.2 2011/04/11 14:54:51 mr_bones_ Exp $ - -EAPI="4" - -inherit eutils multilib autotools - -PATCH_VER="1" -DESCRIPTION="Kernel based automounter" -HOMEPAGE="http://www.linux-consulting.com/Amd_AutoFS/autofs.html" -SRC_URI="mirror://kernel/linux/daemons/${PN}/v4/${P}.tar.bz2 - mirror://gentoo/${P}-patches-${PATCH_VER}.tar.lzma" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86" -IUSE="hesiod ldap" - -DEPEND="hesiod? ( net-dns/hesiod ) - ldap? ( >=net-nds/openldap-2.0 )" -RDEPEND="${DEPEND}" - -UPSTREAM_FILESDIR="gentoo/${CATEGORY}/${PN}/files" - -src_prepare() { - EPATCH_SUFFIX="patch" \ - epatch "${WORKDIR}"/patches - - # Accumulated fixes for bugs - # #154797: Respect CC and CFLAGS - # #253412: Respect LDFLAGS - # #247969: Link order for --as-needed - epatch "${FILESDIR}"/${P}-respect-user-flags-and-fix-asneeded.patch - - # Reflect init script implementation - epatch "${FILESDIR}"/${P}-fix-man-pages.patch - - # Use Gentoo specific maps, init script and config file - for i in home master misc; do - if [ -e samples/auto.${i} ]; then - mv samples/auto.${i}{,.bak} || die "Failed to backup auto.${i}" - fi - ln -s "${S}/${UPSTREAM_FILESDIR}"/auto.${i} samples/auto.${i} || \ - die "Failed to symlink auto.${i}" - done - - # Clean-up maps and disable everything. - epatch "${FILESDIR}"/${P}-clean-up-maps.patch - - # Fix installation path of ldap samples and maps - epatch "${FILESDIR}"/${P}-fix-install-ldap-samples-and-maps.patch - - epatch "${FILESDIR}"/${P}-init.patch #Fix init script deps - - # Do not include <nfs/nfs.h>, rather <linux/nfs.h>, - # as the former is a lame header for the latter (bug #157968) - sed 's@nfs/nfs.h@linux/nfs.h@' -i lib/rpc_subs.c || die - - eautoreconf -} - -src_configure() { - econf \ - $(use_with ldap openldap) \ - $(use_with hesiod) -} - -src_install() { - emake DESTDIR="${D}" install - - dodoc README* CHANGELOG CREDITS COPYRIGHT - - newinitd ${UPSTREAM_FILESDIR}/${PN}.init ${PN} - newconfd ${UPSTREAM_FILESDIR}/${PN}.conf ${PN} -} - -pkg_postinst() { - elog "If you plan on using autofs for automounting remote NFS mounts," - elog "please check that both portmap (or rpcbind) and rpc.statd/lockd" - elog "are running." - elog - elog "Also the normal autofs status has been renamed stats" - elog "as there is already a predefined Gentoo status" - if use ldap; then - elog - elog "Sample files for ldap have been installed into" - elog "${PREFIX}/usr/share/share/doc/${P}/samples." - fi -} |