blob: 5e64856b6e4c9aba34f62f8ebb63a4d20e85d770 (
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
|
# Copyright 1999-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-libs/device-mapper/device-mapper-1.00.07.ebuild,v 1.5 2004/01/22 14:54:21 pyrania Exp $
DESCRIPTION="Device mapper ioctl library for use with LVM2 utilities."
HOMEPAGE="http://www.sistina.com/products_lvm.htm"
SRC_URI="ftp://ftp.sistina.com/pub/LVM2/${PN}/${PN}.${PV}.tgz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86 amd64 sparc"
DEPEND="virtual/linux-sources"
S="${WORKDIR}/${PN}.${PV}"
pkg_setup() {
[ ! -e "/usr/src/linux/include/linux/dm-ioctl.h" ] && {
eerror
eerror "Your currently linked kernel (/usr/src/linux) hasn't"
eerror "been patched for device mapper support."
eerror
die "kernel not patched for device mapper support"
}
return 0
}
src_compile() {
econf
# Parallel build doesn't work.
emake -j1 || die "compile problem"
}
src_install() {
einstall sbindir="${D}/sbin" libdir="${D}/lib"
dodoc COPYING* INSTALL INTRO README VERSION
}
|