You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/sys-fs/rar2fs/rar2fs-1.17.2.ebuild

33 lines
763 B

# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-fs/rar2fs/rar2fs-1.17.2.ebuild,v 1.1 2013/07/29 17:13:53 ssuominen Exp $
EAPI=5
inherit autotools eutils
DESCRIPTION="A FUSE based filesystem that can mount one or multiple RAR archive(s)"
HOMEPAGE="http://code.google.com/p/rar2fs/"
SRC_URI="http://rar2fs.googlecode.com/files/${P}.tar.gz"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="debug"
RDEPEND=">=app-arch/unrar-5:=
sys-fs/fuse"
DEPEND="${RDEPEND}"
DOCS="AUTHORS ChangeLog"
src_configure() {
export USER_CFLAGS="${CFLAGS}"
local mydebug
use debug && mydebug="--enable-debug=4"
econf \
--with-unrar=/usr/include/libunrar \
${mydebug}
}