blob: 3780b91e87349be5651a54e0836dbfcdb37707dc (
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
34
|
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-fs/ext4magic/ext4magic-0.3.1-r1.ebuild,v 1.1 2013/01/05 21:58:06 pinkbyte Exp $
EAPI=5
inherit eutils
DESCRIPTION="Linux admin tool, can help to recover deleted or overwritten files on ext3 and ext4 filesystems"
HOMEPAGE="http://developer.berlios.de/projects/ext4magic/"
SRC_URI="mirror://berlios/${PN}/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="debug expert-mode file-attr"
RDEPEND="app-arch/bzip2
>=sys-apps/file-5.04
sys-apps/util-linux
>=sys-fs/e2fsprogs-1.41.9
sys-libs/zlib"
DEPEND="${RDEPEND}"
DOCS="AUTHORS ChangeLog NEWS README TODO"
src_configure() {
# build-system incorrectly recognizes '--disable-feature' options as enabled!
econf \
$(usex debug '--enable-debug' '') \
$(usex debug '--enable-debug-magic' '') \
$(usex expert-mode '--enable-expert-mode' '') \
$(usex file-attr '--enable-file-attr' '')
}
|