blob: 09cda0840a5e290cb814f203516dcdfeabf86deb (
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
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-fs/mtd-utils/mtd-utils-20060907.ebuild,v 1.1 2006/09/08 01:02:10 robbat2 Exp $
inherit toolchain-funcs flag-o-matic
DESCRIPTION="MTD userspace tools, based on GIT snapshot from upstream"
HOMEPAGE="http://sources.redhat.com/jffs2/"
SRC_URI="mirror://gentoo/${PN}-snapshot-${PV}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~arm ~mips ~ppc ~x86"
IUSE=""
S=${WORKDIR}/${PN}
DEPEND="sys-libs/zlib
sys-apps/acl
!sys-fs/mtd"
src_unpack() {
unpack ${A}
sed -i.orig \
-e 's!^MANDIR.*!MANDIR = /usr/share/man!g' \
-e 's!-include.*!!g' \
"${S}"/Makefile
}
src_compile() {
append-flags -I./include -Wall
emake DESTDIR="${D}" CFLAGS="${CFLAGS}" LDFLAGS="${LDFLAGS}" CC="$(tc-getCC)" || die
}
src_install() {
emake install DESTDIR="${D}" || die
dodoc *.txt
}
|