# Copyright 1999-2010 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: $ EAPI="2" inherit eutils MY_PN="${PN/-fuse/}" MY_P="${MY_PN}-${PV}" DESCRIPTION="CryptoFS Fuse" HOMEPAGE="http://reboot78.re.funpic.de/${MY_PN}/" SRC_URI="http://reboot78.re.funpic.de/${MY_PN}/${MY_P}.tar.bz2 http://alba.cyberleo.net/portage/mirror/${MY_PN}/${MY_P}.tar.bz2" LICENSE="GPL" SLOT="0" KEYWORDS="~x86 ~amd64" IUSE="-pinentry" DEPEND=">=dev-libs/glib-2.6 >=dev-libs/libgcrypt-1.1.44 >=sys-fs/fuse-2.8.0 pinentry? ( app-crypt/pinentry )" RDEPEND="${DEPEND}" S="${WORKDIR}/${MY_P}" src_configure() { econf $(use_with pinentry) || die "configure failed" } src_install() { emake DESTDIR="${D}" install dodoc AUTHORS NEWS README cryptofs.conf }