summaryrefslogtreecommitdiffstats
path: root/base/device-mapper
diff options
context:
space:
mode:
authorThierry N <thierryn1 at hispeed dot ch>2009-09-15 22:51:43 +0200
committerThierry N <thierryn1 at hispeed dot ch>2009-09-15 22:51:43 +0200
commit33333541b19bd9257f8c39847455a1d94f36978d (patch)
treef9343b00f8ee5ead8aecbe0c9d2d043bda205bbb /base/device-mapper
parentbe685caff95ca14d8ee24f423b4423b8570d3922 (diff)
downloadnutyx-extra-33333541b19bd9257f8c39847455a1d94f36978d.tar.gz
nutyx-extra-33333541b19bd9257f8c39847455a1d94f36978d.tar.bz2
nutyx-extra-33333541b19bd9257f8c39847455a1d94f36978d.tar.xz
nutyx-extra-33333541b19bd9257f8c39847455a1d94f36978d.zip
Ajout device-mapper#1.02.28-1
Diffstat (limited to 'base/device-mapper')
-rw-r--r--base/device-mapper/.footprint17
-rw-r--r--base/device-mapper/.md5sum1
-rw-r--r--base/device-mapper/Pkgfile25
3 files changed, 43 insertions, 0 deletions
diff --git a/base/device-mapper/.footprint b/base/device-mapper/.footprint
new file mode 100644
index 000000000..232432feb
--- /dev/null
+++ b/base/device-mapper/.footprint
@@ -0,0 +1,17 @@
+drwxr-xr-x root/root lib/
+lrwxrwxrwx root/root lib/libdevmapper.a -> libdevmapper.a.1.02
+-rwxr-xr-x root/root lib/libdevmapper.a.1.02
+lrwxrwxrwx root/root lib/libdevmapper.so -> libdevmapper.so.1.02
+-rwxr-xr-x root/root lib/libdevmapper.so.1.02
+drwxr-xr-x root/root sbin/
+-rwxr-xr-x root/root sbin/dmsetup
+-rwxr-xr-x root/root sbin/dmsetup.static
+drwxr-xr-x root/root usr/
+drwxr-xr-x root/root usr/include/
+-rw-r--r-- root/root usr/include/libdevmapper.h
+drwxr-xr-x root/root usr/lib/
+drwxr-xr-x root/root usr/lib/pkgconfig/
+-rw-r--r-- root/root usr/lib/pkgconfig/devmapper.pc
+drwxr-xr-x root/root usr/man/
+drwxr-xr-x root/root usr/man/man8/
+-rw-r--r-- root/root usr/man/man8/dmsetup.8.gz
diff --git a/base/device-mapper/.md5sum b/base/device-mapper/.md5sum
new file mode 100644
index 000000000..ba597e8a0
--- /dev/null
+++ b/base/device-mapper/.md5sum
@@ -0,0 +1 @@
+c9ae0776994a419f9e1ba842164bb626 device-mapper.1.02.28.tgz
diff --git a/base/device-mapper/Pkgfile b/base/device-mapper/Pkgfile
new file mode 100644
index 000000000..f86c03105
--- /dev/null
+++ b/base/device-mapper/Pkgfile
@@ -0,0 +1,25 @@
+# Description: Logical volume management for Linux
+# URL: http://sources.redhat.com/dm/
+# Packager: Mark Rosenstand, mark at borkware dot net
+# Maintainer: Nathan Pardoe, npardoe at ticklestix dot co dot uk
+
+name=device-mapper
+version=1.02.28
+release=1
+source=(ftp://sources.redhat.com/pub/dm/device-mapper.$version.tgz)
+
+build() {
+ cd device-mapper.$version
+ ./configure \
+ --prefix=/usr \
+ --libdir=/lib \
+ --mandir=/usr/man \
+ --sbindir=/sbin \
+ --enable-pkgconfig \
+ --disable-nls \
+ --with-optimisation="$CFLAGS" \
+ --enable-static_link # Required for dmraid
+ make
+ make DESTDIR=$PKG install
+ find $PKG -type f -exec chmod u+w {} \;
+}