Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 43162
Collapse All | Expand All

(-)/usr/portage/sys-libs/device-mapper/ChangeLog (+6 lines)
Lines 2-7 Link Here
2
# Copyright 2000-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2
2
# Copyright 2000-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2
3
# $Header: /home/cvsroot/gentoo-x86/sys-libs/device-mapper/ChangeLog,v 1.9 2004/01/22 14:54:21 pyrania Exp $
3
# $Header: /home/cvsroot/gentoo-x86/sys-libs/device-mapper/ChangeLog,v 1.9 2004/01/22 14:54:21 pyrania Exp $
4
4
5
  27 Feb 2004; Justin Whitney <ripple@ripple.be>
6
  device-mapper-1.00.07-r1.ebuild:
7
  Bumped to 1.00.07-r1.  Make dmsetup lock its pages
8
  for use with dm-crypt and unencrypted swapspace.
9
10
5
  22 Jan 2004; Markus Nigbur <pyrania@gentoo.org>
11
  22 Jan 2004; Markus Nigbur <pyrania@gentoo.org>
6
  device-mapper-1.00.07.ebuild:
12
  device-mapper-1.00.07.ebuild:
7
  Marked stable on sparc.
13
  Marked stable on sparc.
(-)/usr/portage/sys-libs/device-mapper/Manifest (-2 / +4 lines)
Lines 1-6 Link Here
1
MD5 774c3fb4802ab156a7d831d8b68e7a52 device-mapper-1.00.05.ebuild 1006
1
MD5 774c3fb4802ab156a7d831d8b68e7a52 device-mapper-1.00.05.ebuild 1006
2
MD5 6b4850132b07f98ef2002e6b39fb6d98 device-mapper-1.00.07.ebuild 1023
2
MD5 dc3a73d226399c941514fe088f0e6277 device-mapper-1.00.07-r1.ebuild 1065
3
MD5 5fc80031f309ee769e8d79b10661c293 ChangeLog 1851
3
MD5 8ef48631b3211c6dd8365078c85f5b16 ChangeLog 2041
4
MD5 8ef457f9ac46b73b855b4a4e5ff9d7d3 metadata.xml 243
4
MD5 8ef457f9ac46b73b855b4a4e5ff9d7d3 metadata.xml 243
5
MD5 32893d4b8efc4a7891b77331810fc30b files/digest-device-mapper-1.00.05 70
5
MD5 32893d4b8efc4a7891b77331810fc30b files/digest-device-mapper-1.00.05 70
6
MD5 b6ee13a8f0d0d9a8600559f997c8ba9d files/digest-device-mapper-1.00.07 70
6
MD5 b6ee13a8f0d0d9a8600559f997c8ba9d files/digest-device-mapper-1.00.07 70
7
MD5 b6ee13a8f0d0d9a8600559f997c8ba9d files/digest-device-mapper-1.00.07-r1 70
8
MD5 5ac7328b43d8da734b056cb7b2fd9d80 files/dmsetup-dmcrypt.patch 623
(-)/usr/portage/sys-libs/device-mapper/device-mapper-1.00.07-r1.ebuild (+40 lines)
Line 0 Link Here
1
# Copyright 1999-2004 Gentoo Technologies, Inc.
2
# Distributed under the terms of the GNU General Public License v2
3
# $Header: /home/cvsroot/gentoo-x86/sys-libs/device-mapper/device-mapper-1.00.07.ebuild,v 1.5 2004/01/22 14:54:21 pyrania Exp $
4
5
DESCRIPTION="Device mapper ioctl library for use with LVM2 utilities."
6
HOMEPAGE="http://www.sistina.com/products_lvm.htm"
7
SRC_URI="ftp://ftp.sistina.com/pub/LVM2/${PN}/${PN}.${PV}.tgz"
8
9
LICENSE="GPL-2"
10
SLOT="0"
11
KEYWORDS="x86 amd64 sparc"
12
13
DEPEND="virtual/linux-sources"
14
15
S="${WORKDIR}/${PN}.${PV}"
16
17
pkg_setup() {
18
	[ ! -e "/usr/src/linux/include/linux/dm-ioctl.h" ] && {
19
		eerror
20
		eerror "Your currently linked kernel (/usr/src/linux) hasn't"
21
		eerror "been patched for device mapper support."
22
		eerror
23
		die "kernel not patched for device mapper support"
24
	}
25
26
	return 0
27
}
28
29
src_compile() {
30
	epatch ${FILESDIR}/dmsetup-dmcrypt.patch
31
	econf
32
33
	# Parallel build doesn't work.
34
	emake -j1 || die "compile problem"
35
}
36
37
src_install() {
38
	einstall sbindir="${D}/sbin" libdir="${D}/lib"
39
	dodoc COPYING* INSTALL INTRO README VERSION
40
}
(-)/usr/portage/sys-libs/device-mapper/device-mapper-1.00.07.ebuild (-39 lines)
Lines 1-39 Link Here
1
# Copyright 1999-2004 Gentoo Technologies, Inc.
2
# Distributed under the terms of the GNU General Public License v2
3
# $Header: /home/cvsroot/gentoo-x86/sys-libs/device-mapper/device-mapper-1.00.07.ebuild,v 1.5 2004/01/22 14:54:21 pyrania Exp $
4
5
DESCRIPTION="Device mapper ioctl library for use with LVM2 utilities."
6
HOMEPAGE="http://www.sistina.com/products_lvm.htm"
7
SRC_URI="ftp://ftp.sistina.com/pub/LVM2/${PN}/${PN}.${PV}.tgz"
8
9
LICENSE="GPL-2"
10
SLOT="0"
11
KEYWORDS="x86 amd64 sparc"
12
13
DEPEND="virtual/linux-sources"
14
15
S="${WORKDIR}/${PN}.${PV}"
16
17
pkg_setup() {
18
	[ ! -e "/usr/src/linux/include/linux/dm-ioctl.h" ] && {
19
		eerror
20
		eerror "Your currently linked kernel (/usr/src/linux) hasn't"
21
		eerror "been patched for device mapper support."
22
		eerror
23
		die "kernel not patched for device mapper support"
24
	}
25
26
	return 0
27
}
28
29
src_compile() {
30
	econf
31
32
	# Parallel build doesn't work.
33
	emake -j1 || die "compile problem"
34
}
35
36
src_install() {
37
	einstall sbindir="${D}/sbin" libdir="${D}/lib"
38
	dodoc COPYING* INSTALL INTRO README VERSION
39
}
(-)/usr/portage/sys-libs/device-mapper/files/digest-device-mapper-1.00.07-r1 (+1 lines)
Line 0 Link Here
1
MD5 44920cd973a6abc79109af9bff9d8af6 device-mapper.1.00.07.tgz 498954

Return to bug 43162