blob: d6afa074a2220e4501275a2ff5b7b639b3f50553 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
DESCRIPTION="FuseIso is a FUSE module to mount ISO filesystem images (.iso
files, .bin files, .nrg files..)."
HOMEPAGE="http://fuse.sourceforge.net/wiki/index.php/FuseIso"
SRC_URI="http://ubiz.ru/dm/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86"
IUSE=""
DEPEND=" >=sys-fs/fuse-2.3
>=dev-libs/glib-2.4.2
"
src_install() {
emake DESTDIR=${D} install || die "emake install failed"
dodoc AUTHORS COPYING INSTALL NEWS README TODO ChangeLog
}
|