# Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: $ inherit eutils DESCRIPTION="Fuse filesystem providing a read-only view on a directory filtered with regular expressions." SRC_URI="http://ebixio.com/rofs-filtered/${P}.tar.bz2" HOMEPAGE="http://www.ebixio.com/rofs-filtered/" LICENSE="GPL-2" DEPEND=">=sys-fs/fuse-2.5" RESTRICT="mirror" KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd" SLOT="0" IUSE="" src_compile() { econf || die "econf failed" emake || die "emake failed" } src_install() { emake DESTDIR="${D}" install || die "emake install failed" dodoc README ChangeLog }