blob: 49f698615b80d9a0b8c6cbbaa91c473fb776b209 (
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-fs/mtd-utils/mtd-utils-9999.ebuild,v 1.4 2008/06/23 00:54:37 zmedico Exp $
ECVS_USER="anoncvs"
ECVS_PASS="anoncvs"
EGIT_REPO_URI="git://git.infradead.org/mtd-utils.git"
inherit toolchain-funcs flag-o-matic git
DESCRIPTION="MTD userspace tools"
HOMEPAGE="http://git.infradead.org/?p=mtd-utils.git;a=summary"
SRC_URI=""
LICENSE="GPL-2"
SLOT="0"
KEYWORDS=""
IUSE="xattr"
RDEPEND="!sys-fs/mtd
dev-libs/lzo
sys-libs/zlib"
# ACL is only required for the <sys/acl.h> header file to build mkfs.jffs2
# And ACL brings in Attr as well.
DEPEND="xattr? ( sys-apps/acl )
${DEPEND}"
src_unpack() {
git_src_unpack
sed -i \
-e 's!^MANDIR.*!MANDIR = /usr/share/man!g' \
-e 's!-include.*!!g' \
-e '/make -C/s,make,$(MAKE),g' \
"${S}"/Makefile
}
src_compile() {
local myflags="-j1"
use xattr || myflags+=" WITHOUT_XATTR=1"
emake DESTDIR="${D}" \
OPTFLAGS="${CFLAGS}" \
LDFLAGS="${LDFLAGS}" \
CC="$(tc-getCC)" \
${myflags} || die
}
src_install() {
emake install DESTDIR="${D}" || die
rm -rf "${D}"/usr/include || die
dodoc *.txt
# TODO: check ubi-utils for docs+scripts
}
|