summaryrefslogtreecommitdiff
path: root/sys-fs
diff options
context:
space:
mode:
authorSeemant Kulleen <seemant@gentoo.org>2006-02-09 17:45:03 +0000
committerSeemant Kulleen <seemant@gentoo.org>2006-02-09 17:45:03 +0000
commit0daffe89f1dda0b28fc179e259bc84d8f46a72d1 (patch)
treec0b728e693424bf3efca119990d33c3fe13cf372 /sys-fs
parentStable on sparc wrt #89424 (diff)
downloadgentoo-2-0daffe89f1dda0b28fc179e259bc84d8f46a72d1.tar.gz
gentoo-2-0daffe89f1dda0b28fc179e259bc84d8f46a72d1.tar.bz2
gentoo-2-0daffe89f1dda0b28fc179e259bc84d8f46a72d1.zip
remove cruft version
(Portage version: 2.1_pre4-r1)
Diffstat (limited to 'sys-fs')
-rw-r--r--sys-fs/multipath-tools/files/digest-multipath-tools-0.4.61
-rw-r--r--sys-fs/multipath-tools/multipath-tools-0.4.6.ebuild57
2 files changed, 0 insertions, 58 deletions
diff --git a/sys-fs/multipath-tools/files/digest-multipath-tools-0.4.6 b/sys-fs/multipath-tools/files/digest-multipath-tools-0.4.6
deleted file mode 100644
index 51e2d1e76aae..000000000000
--- a/sys-fs/multipath-tools/files/digest-multipath-tools-0.4.6
+++ /dev/null
@@ -1 +0,0 @@
-MD5 545bd5ef2487189c2cef87f38c418d0d multipath-tools-0.4.6.tar.bz2 137515
diff --git a/sys-fs/multipath-tools/multipath-tools-0.4.6.ebuild b/sys-fs/multipath-tools/multipath-tools-0.4.6.ebuild
deleted file mode 100644
index 6930b15c4365..000000000000
--- a/sys-fs/multipath-tools/multipath-tools-0.4.6.ebuild
+++ /dev/null
@@ -1,57 +0,0 @@
-# Copyright 1999-2005 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-fs/multipath-tools/multipath-tools-0.4.6.ebuild,v 1.1 2005/12/06 19:45:17 dsd Exp $
-
-inherit toolchain-funcs
-
-DESCRIPTION="Device mapper target autoconfig."
-HOMEPAGE="http://christophe.varoqui.free.fr/wiki/wakka.php?wiki=Home"
-SRC_URI="http://christophe.varoqui.free.fr/${PN}/${P}.tar.bz2"
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~x86 ~amd64"
-
-IUSE=""
-
-RDEPEND=">=sys-fs/device-mapper-1.00.19
- sys-fs/udev
- sys-fs/sysfsutils"
-
-DEPEND="${RDEPEND}"
-
-src_unpack() {
- unpack ${A}; cd ${S}
- sed -i -e 's:^bindir.*:bindir = /usr/sbin:' \
- ${S}/multipathd/Makefile
- sed -i -e 's:rules.d/.*:rules.d/40-multipath.rules:' \
- ${S}/multipath/Makefile
-}
-
-src_compile() {
- emake -j1 \
- CC=$(tc-getCC) || die "emake failed"
-}
-
-src_install() {
- dodir /sbin /usr/share/man/man8
- make DESTDIR=${D} install || die "install failed"
-
- insinto /etc
- newins ${S}/multipath.conf.annotated multipath.conf
- fperms 644 /etc/udev/rules.d/40-multipath.rules
- newinitd ${FILESDIR}/rc-multipathd multipathd
-
- # The dev.d script was previously wrong and is now removed (the udev rules
- # file does the job instead), but it won't be removed from live systems due
- # to cfgprotect.
- # This should help out a little...
- if [[ -e "${ROOT}"/etc/dev.d/block/multipath.dev ]] ; then
- mkdir -p "${D}"/etc/dev.d/block
- echo "# Please delete this file. It is obsoleted by /etc/udev/rules.d/40-multipath.rules" \
- > "${D}"/etc/dev.d/block/multipath.dev
- fi
-
- dodoc AUTHOR COPYING ChangeLog FAQ README TODO
- docinto dmadm; dodoc README
- docinto kpartx; dodoc ChangeLog README
-}