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