blob: 26769dc80c06cdee872316e9972d029b451d4e9b (
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-fs/lvm-user/lvm-user-1.0.7-r1.ebuild,v 1.6 2004/06/30 17:12:05 vapier Exp $
inherit flag-o-matic eutils
S=${WORKDIR}/LVM/${PV}
DESCRIPTION="User-land utilities for LVM (Logical Volume Manager) software"
HOMEPAGE="http://www.sistina.com/products_lvm.htm"
SRC_URI="ftp://ftp.sistina.com/pub/LVM/1.0/lvm_${PV}.tar.gz"
LICENSE="GPL-2 | LGPL-2"
SLOT="0"
KEYWORDS="~x86 -ppc ~sparc alpha ~hppa ~amd64"
IUSE="static"
DEPEND=">=sys-apps/sed-4.0
virtual/linux-sources"
RDEPEND="${DEPEND}
!sys-fs/lvm2"
pkg_setup() {
check_KV
}
src_compile() {
local myconf
# bug 598 -- -pipe used by default
filter-flags "-fomit-frame-pointer -pipe"
if use static; then
myconf="--enable-static_link"
else
# bug 29694 -- make static vgscan and vgchange for initrds
epatch ${FILESDIR}/lvm-user-1.0.7-statics.diff
fi
./configure --prefix=/ \
--mandir=/usr/share/man \
--with-kernel_dir="/usr/src/linux" ${myconf} || die "configure failed"
# Fix flags
sed -i -e "54,56d" -e "73d" make.tmpl
make || die "Make failed"
}
src_install() {
einstall sbindir=${D}/sbin libdir=${D}/lib
if use static; then
# already static, make symlinks
dosym vgscan /sbin/vgscan.static
dosym vgchange /sbin/vgchange.static
else
# install vgscan.static and vgchange.static
into /
dosbin ${S}/tools/{vgscan,vgchange}.static
fi
# no need for a static library in /lib
dodir /usr/lib
mv ${D}/lib/*.a ${D}/usr/lib
dodoc ABSTRACT CONTRIBUTORS COPYING* INSTALL LVM-HOWTO TODO CHANGELOG FAQ KNOWN_BUGS README WHATSNEW
}
|