summaryrefslogtreecommitdiff
blob: df6449a376298904f8d22ac715dedb3e27aff0f4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $

inherit eutils

DESCRIPTION="FUSE module to mount ISO9660 images"
SRC_URI="http://ubiz.ru/dm/${P}.tar.bz2"
HOMEPAGE="http://apps.sourceforge.net/mediawiki/fuse/index.php?title=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_unpack () {
	unpack ${A}

	# applying patch from Red Hat bug 440436
	# https://bugzilla.redhat.com/show_bug.cgi?id=440436
	EPATCH_OPTS="-d ${S}"
	EPATCH_SINGLE_MSG="Applying bug fix to access content in large ISO files"
	epatch "${FILESDIR}/${P}-largerthan4gb.patch"
}

src_install () {
	emake DESTDIR="${D}" install || die "emake install failed"
	dodoc README NEWS ChangeLog AUTHORS
}