summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'app-misc/fdutils/fdutils-5.4.20020222-r1.ebuild')
-rw-r--r--app-misc/fdutils/fdutils-5.4.20020222-r1.ebuild48
1 files changed, 0 insertions, 48 deletions
diff --git a/app-misc/fdutils/fdutils-5.4.20020222-r1.ebuild b/app-misc/fdutils/fdutils-5.4.20020222-r1.ebuild
deleted file mode 100644
index b231f46dc634..000000000000
--- a/app-misc/fdutils/fdutils-5.4.20020222-r1.ebuild
+++ /dev/null
@@ -1,48 +0,0 @@
-# Copyright 1999-2008 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-inherit eutils
-
-S=${WORKDIR}/${PN}-5.4
-DESCRIPTION="utilities for configuring and debugging the Linux floppy driver"
-HOMEPAGE="http://fdutils.linux.lu/"
-SRC_URI="http://fdutils.linux.lu/${PN}-5.4.tar.gz
- http://fdutils.linux.lu/${PN}-5.4-20020222.diff.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="x86"
-IUSE="doc"
-
-DEPEND=">=sys-fs/mtools-3
- doc? ( virtual/texi2dvi )"
-
-src_unpack() {
- unpack ${A}
- epatch "${WORKDIR}/${PN}-5.4-20020222.diff"
-
- # the man 4 fd manpage is better in the man-pages package, so stop it
- # from installing
- epatch "${FILESDIR}/${PN}-no-fd.4-manpage.diff"
-}
-
-src_compile() {
- econf --enable-fdmount-floppy-only || die
-
- if use doc
- then
- make || die
- else
- make compile || die
- fi
-}
-
-src_install() {
- dodir /usr/bin /usr/share/man/man1
-
- einstall || die
-
- insinto /etc
- doins src/mediaprm
- dodoc Changelog
-}