| 1 |
# Copyright 1999-2008 Gentoo Foundation |
| 2 |
# Distributed under the terms of the GNU General Public License v2 |
| 3 |
# $Header: /var/cvsroot/gentoo-x86/sys-fs/device-mapper/device-mapper-1.02.26.ebuild,v 1.4 2008/06/21 19:23:38 corsair Exp $ |
| 4 |
|
| 5 |
inherit eutils multilib toolchain-funcs |
| 6 |
|
| 7 |
DESCRIPTION="Device mapper ioctl library for use with LVM2 utilities" |
| 8 |
HOMEPAGE="http://sources.redhat.com/dm/" |
| 9 |
SRC_URI="ftp://sources.redhat.com/pub/dm/${PN}.${PV}.tgz |
| 10 |
ftp://sources.redhat.com/pub/dm/old/${PN}.${PV}.tgz" |
| 11 |
|
| 12 |
LICENSE="GPL-2" |
| 13 |
SLOT="0" |
| 14 |
KEYWORDS="~alpha ~amd64 ~arm hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh sparc ~x86" |
| 15 |
IUSE="selinux" |
| 16 |
|
| 17 |
DEPEND="selinux? ( sys-libs/libselinux )" |
| 18 |
RDEPEND="!<sys-fs/udev-115-r1 |
| 19 |
${DEPEND}" |
| 20 |
|
| 21 |
S="${WORKDIR}/${PN}.${PV}" |
| 22 |
|
| 23 |
src_unpack() { |
| 24 |
unpack ${A} |
| 25 |
EPATCH_OPTS="-p1 -d${S}" epatch "${FILESDIR}"/device-mapper-1.02.26-export-format.diff |
| 26 |
} |
| 27 |
|
| 28 |
src_compile() { |
| 29 |
econf \ |
| 30 |
--sbindir=/sbin \ |
| 31 |
--enable-dmeventd \ |
| 32 |
$(use_enable selinux) \ |
| 33 |
CLDFLAGS="${LDFLAGS}" || die "econf failed" |
| 34 |
emake || die "compile problem" |
| 35 |
} |
| 36 |
|
| 37 |
src_install() { |
| 38 |
emake install DESTDIR="${D}" || die |
| 39 |
|
| 40 |
# move shared libs to / |
| 41 |
mv "${D}"/usr/$(get_libdir) "${D}"/ || die "move libdir" |
| 42 |
dolib.a lib/ioctl/libdevmapper.a || die "dolib.a" |
| 43 |
gen_usr_ldscript libdevmapper.so |
| 44 |
|
| 45 |
insinto /etc |
| 46 |
doins "${FILESDIR}"/dmtab |
| 47 |
insinto /lib/rcscripts/addons |
| 48 |
doins "${FILESDIR}"/dm-start.sh |
| 49 |
|
| 50 |
newinitd "${FILESDIR}"/device-mapper.rc-1.02.22-r3 device-mapper || die |
| 51 |
newconfd "${FILESDIR}"/device-mapper.conf-1.02.22-r3 device-mapper || die |
| 52 |
|
| 53 |
newinitd "${FILESDIR}"/1.02.22-dmeventd.initd dmeventd || die |
| 54 |
dolib.a dmeventd/libdevmapper-event.a || die |
| 55 |
gen_usr_ldscript libdevmapper-event.so |
| 56 |
|
| 57 |
insinto /etc/udev/rules.d/ |
| 58 |
newins "${FILESDIR}"/64-device-mapper.rules-1.02.22-r5 64-device-mapper.rules |
| 59 |
|
| 60 |
dodoc INSTALL INTRO README VERSION WHATS_NEW |
| 61 |
} |
| 62 |
|
| 63 |
pkg_preinst() { |
| 64 |
local l="${ROOT}"/$(get_libdir)/libdevmapper.so.1.01 |
| 65 |
[[ -e ${l} ]] && cp "${l}" "${D}"/$(get_libdir)/ |
| 66 |
} |
| 67 |
|
| 68 |
pkg_postinst() { |
| 69 |
preserve_old_lib_notify /$(get_libdir)/libdevmapper.so.1.01 |
| 70 |
|
| 71 |
elog "device-mapper volumes are no longer automatically created for" |
| 72 |
elog "baselayout-2 users. If you are using baselayout-2, be sure to" |
| 73 |
elog "run: # rc-update add device-mapper boot" |
| 74 |
} |