# Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/sys-fs/dosfstools/dosfstools-2.9.ebuild,v 1.7 2004/08/21 00:52:17 seemant Exp $ inherit eutils flag-o-matic DESCRIPTION="DOS filesystem tools - provides mkdosfs, mkfs.msdos, mkfs.vfat" HOMEPAGE="ftp://ftp.uni-erlangen.de/pub/Linux/LOCAL/dosfstools/" SRC_URI="ftp://ftp.uni-erlangen.de/pub/Linux/LOCAL/dosfstools/${P}.src.tar.gz" LICENSE="GPL-2" SLOT="0" KEYWORDS="~x86 ~ppc ~sparc ~alpha ~hppa ~amd64" IUSE="" DEPEND="virtual/libc" src_unpack() { unpack ${A} ; cd ${S} epatch ${FILESDIR}/errno.patch sed -i "s:PREFIX\ \=:PREFIX\ \=\ \/usr:" Makefile sed -i "s:\/usr\/man:\/share\/man:" Makefile # Bug: 34785 hardened-gcc transparently adds -fPIC so we must filter # that away because this package cant cope. (Nov 30 2003 -solar) # has_version 'sys-devel/hardened-gcc' && \ # sed -i -e "s:^DEBUGFLAGS.*:DEBUGFLAGS=-yet_exec:g" Makefile } src_compile() { filter-flags -fPIC # this package does *not* play well with optimisations # please dont change to: make OPTFLAGS="${CFLAGS}" make || die } src_install() { make PREFIX=${D}/usr install || die dodoc CHANGES TODO newdoc dosfsck/README README.dosfsck newdoc dosfsck/CHANGES CHANGES.dosfsck newdoc dosfsck/COPYING COPYING.dosfsck newdoc mkdosfs/README README.mkdosfs newdoc mkdosfs/ChangeLog ChangeLog.mkdosfs }