summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMax Kalika <max@gentoo.org>2003-10-29 19:48:32 +0000
committerMax Kalika <max@gentoo.org>2003-10-29 19:48:32 +0000
commit3452fc99f504d403bbc5fcffb30288db5e56867f (patch)
tree9cdc445270cc3a4aec4ad272dd814a00bcbe5569 /sys-libs
parentAdded to ~ppc (diff)
downloadhistorical-3452fc99f504d403bbc5fcffb30288db5e56867f.tar.gz
historical-3452fc99f504d403bbc5fcffb30288db5e56867f.tar.bz2
historical-3452fc99f504d403bbc5fcffb30288db5e56867f.zip
Put the kernel check back in pkg_setup(). Fixes bug 32044.
Diffstat (limited to 'sys-libs')
-rw-r--r--sys-libs/device-mapper/ChangeLog5
-rw-r--r--sys-libs/device-mapper/Manifest4
-rw-r--r--sys-libs/device-mapper/device-mapper-1.00.05.ebuild6
3 files changed, 9 insertions, 6 deletions
diff --git a/sys-libs/device-mapper/ChangeLog b/sys-libs/device-mapper/ChangeLog
index 279f42a2432e..269a58f6299d 100644
--- a/sys-libs/device-mapper/ChangeLog
+++ b/sys-libs/device-mapper/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for sys-libs/device-mapper
# Copyright 2000-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-libs/device-mapper/ChangeLog,v 1.3 2003/10/27 19:24:27 max Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-libs/device-mapper/ChangeLog,v 1.4 2003/10/29 19:48:31 max Exp $
+
+ 29 Oct 2003; Max Kalika <max@gentoo.org> device-mapper-1.00.05.ebuild:
+ Put the kernel check back in pkg_setup(). Fixes bug 32044.
27 Oct 2003; Max Kalika <max@gentoo.org> device-mapper-1.00.05.ebuild:
Fix kernel support check.
diff --git a/sys-libs/device-mapper/Manifest b/sys-libs/device-mapper/Manifest
index cd570cc567db..bd86fbbb4df6 100644
--- a/sys-libs/device-mapper/Manifest
+++ b/sys-libs/device-mapper/Manifest
@@ -1,4 +1,4 @@
-MD5 a1efab5d03c3c7c39aa1a03bc991dbe2 device-mapper-1.00.05.ebuild 1010
-MD5 0de88bc90eb0c63a4fbff1d6d85a36cf ChangeLog 1126
+MD5 774c3fb4802ab156a7d831d8b68e7a52 device-mapper-1.00.05.ebuild 1006
+MD5 848c07ef88410be0125a7dc105d7aa33 ChangeLog 1261
MD5 8ef457f9ac46b73b855b4a4e5ff9d7d3 metadata.xml 243
MD5 32893d4b8efc4a7891b77331810fc30b files/digest-device-mapper-1.00.05 70
diff --git a/sys-libs/device-mapper/device-mapper-1.00.05.ebuild b/sys-libs/device-mapper/device-mapper-1.00.05.ebuild
index 80d092492058..920cf9e87a65 100644
--- a/sys-libs/device-mapper/device-mapper-1.00.05.ebuild
+++ b/sys-libs/device-mapper/device-mapper-1.00.05.ebuild
@@ -1,6 +1,6 @@
# 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.3 2003/10/27 19:24:27 max Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-libs/device-mapper/device-mapper-1.00.05.ebuild,v 1.4 2003/10/29 19:48:31 max Exp $
DESCRIPTION="Device mapper ioctl library for use with LVM2 utilities."
HOMEPAGE="http://www.sistina.com/products_lvm.htm"
@@ -14,7 +14,7 @@ DEPEND="virtual/linux-sources"
S="${WORKDIR}/${PN}.${PV}"
-src_unpack() {
+pkg_setup() {
[ ! -e "/usr/src/linux/include/linux/dm-ioctl.h" ] && {
eerror
eerror "Your currently linked kernel (/usr/src/linux) hasn't"
@@ -23,7 +23,7 @@ src_unpack() {
die "kernel not patched for device mapper support"
}
- unpack ${A}
+ return 0
}
src_compile() {