blob: a2a6f4de81541dd8286c9dc3e6b67e03a37b90ba (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-misc/fdutils/fdutils-5.4.20020222-r1.ebuild,v 1.16 2005/01/01 15:01:46 eradicator Exp $
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="tetex"
DEPEND=">=sys-fs/mtools-3
tetex? ( virtual/tetex )"
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 tetex
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
}
|