# Copyright 1999-2003 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.05.ebuild,v 1.1 2003/09/02 20:45:55 max 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" DEPEND="virtual/linux-sources" S="${WORKDIR}/${PN}.${PV}" src_unpack() { [ ! -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" } unpack ${A} } src_compile() { econf # parallel build doesn't work make || die "compile problem" } src_install() { einstall sbindir="${D}/sbin" libdir="${D}/lib" dodoc COPYING* INSTALL INTRO README VERSION }