blob: 5264eb1622db27bcdb36396306c24b888882c58f (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-apps/mdadm/mdadm-1.7.0.ebuild,v 1.2 2004/09/03 21:03:24 pvdabeel Exp $
DESCRIPTION="A useful tool for running RAID systems - it can be used as a replacement for the raidtools, or as a supplement."
HOMEPAGE="http://cgi.cse.unsw.edu.au/~neilb/mdadm"
SRC_URI="mirror://kernel/utils/raid/mdadm/${P}.tgz
http://neilb.web.cse.unsw.edu.au/source/mdadm/${P}.tgz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86 ppc ~alpha ~amd64"
IUSE="static"
RDEPEND="virtual/libc"
DEPEND="${RDEPEND}
>=sys-apps/sed-4"
src_unpack() {
unpack ${A}
cd ${S}
if use static ; then
sed -i \
-e "44s:^# ::" \
-e "45s:^# ::" \
Makefile || die "sed Makefile failed"
fi
}
src_compile() {
emake CXFLAGS="${CFLAGS}" || die "emake failed"
}
src_install() {
make DESTDIR="${D}" install || die "make install failed"
dodoc INSTALL TODO "ANNOUNCE-${PV}"
insinto /etc
newins mdadm.conf-example mdadm.conf
}
|