# 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.5.ebuild,v 1.1 2005/06/26 00:24:34 dragonheart Exp $ inherit eutils DESCRIPTION="utilities for configuring and debugging the Linux floppy driver" HOMEPAGE="http://fdutils.linux.lu/" SRC_URI="http://fdutils.linux.lu/${P}.tar.gz" LICENSE="GPL-2" SLOT="0" KEYWORDS="~x86" IUSE="tetex" DEPEND=">=sys-fs/mtools-3 tetex? ( virtual/tetex )" src_unpack() { unpack ${A} cd ${S} # 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 dodoc Changelog einstall }