blob: a4e88ab136e5e9e9f9200ecb9510c1160a4a3a49 (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-fs/lvm2/lvm2-2.00.25.ebuild,v 1.3 2005/02/22 22:31:46 rocket Exp $
DESCRIPTION="User-land utilities for LVM2 (device-mapper) software."
HOMEPAGE="http://sources.redhat.com/lvm2/"
SRC_URI="ftp://sources.redhat.com/pub/lvm2/${PN/lvm/LVM}.${PV}.tgz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86 ~ppc ~sparc ~amd64 ~ppc64 ~alpha hppa"
IUSE="readline static"
DEPEND=">=sys-libs/device-mapper-1.00.17"
RDEPEND="${DEPEND}
!sys-fs/lvm-user"
S="${WORKDIR}/${PN/lvm/LVM}.${PV}"
src_compile() {
econf $(use_enable readline) $(use_enable static static_link)
emake || die "compile problem"
}
src_install() {
einstall sbindir="${D}/sbin" staticdir="${D}/sbin" confdir="${D}/etc/lvm"
use static && mv -f "${D}/sbin/lvm.static" "${D}/sbin/lvm"
dodoc COPYING* INSTALL README VERSION WHATS_NEW doc/*.{conf,c,txt}
}
|