# Copyright 1999-2008 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: $ DESCRIPTION="FUSE file system to navigate, extract, create and modify ZIP archives based in libzip implemented in C++." HOMEPAGE="http://code.google.com/p/${PN}/" SRC_URI="http://${PN}.googlecode.com/files/${P}.tar.gz" LICENSE="LGPL-2, LGPL-3" SLOT="0" KEYWORDS="~x86" IUSE="" DEPEND=" dev-libs/libzip sys-fs/fuse " RDEPEND="${DEPEND}" src_unpack() { unpack "${A}" cd "${S}" # Fix strip than installing fuse-zip sed -i -e 's:install -m 755 -s:install -m 755:' Makefile || die "sed failed" } src_compile() { cd "${S}" emake || die } src_install() { emake INSTALLPREFIX="${D}"/usr install || die prepalldocs }