diff options
author | Mike Frysinger <vapier@gentoo.org> | 2006-04-21 00:59:53 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2006-04-21 00:59:53 +0000 |
commit | 7f75a0cecfee0f463f556228bdde58a65564976f (patch) | |
tree | e8c369d99c036d9e60493dcf92498cfa6a447f65 /sys-fs/device-mapper/device-mapper-1.02.05.ebuild | |
parent | add =net-analyzer/cnet-2.0.10 for testing (diff) | |
download | gentoo-2-7f75a0cecfee0f463f556228bdde58a65564976f.tar.gz gentoo-2-7f75a0cecfee0f463f556228bdde58a65564976f.tar.bz2 gentoo-2-7f75a0cecfee0f463f556228bdde58a65564976f.zip |
Version bump #130598 by Conrad Kostecki.
(Portage version: 2.1_pre9-r1)
Diffstat (limited to 'sys-fs/device-mapper/device-mapper-1.02.05.ebuild')
-rw-r--r-- | sys-fs/device-mapper/device-mapper-1.02.05.ebuild | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/sys-fs/device-mapper/device-mapper-1.02.05.ebuild b/sys-fs/device-mapper/device-mapper-1.02.05.ebuild new file mode 100644 index 000000000000..28cf44d1fe13 --- /dev/null +++ b/sys-fs/device-mapper/device-mapper-1.02.05.ebuild @@ -0,0 +1,48 @@ +# Copyright 1999-2006 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-fs/device-mapper/device-mapper-1.02.05.ebuild,v 1.1 2006/04/21 00:59:53 vapier Exp $ + +inherit eutils multilib + +DESCRIPTION="Device mapper ioctl library for use with LVM2 utilities" +HOMEPAGE="http://sources.redhat.com/dm/" +SRC_URI="ftp://sources.redhat.com/pub/dm/${PN}.${PV}.tgz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86" +IUSE="selinux" + +DEPEND="selinux? ( sys-libs/libselinux )" + +S=${WORKDIR}/${PN}.${PV} + +src_compile() { + econf --sbindir=/sbin $(use_enable selinux) || die "econf failed" + emake || die "compile problem" +} + +src_install() { + make install DESTDIR="${D}" || die + + # move shared libs to / + mv "${D}"/usr/$(get_libdir) "${D}"/ || die "move libdir" + dolib.a lib/ioctl/libdevmapper.a || die "dolib.a" + gen_usr_ldscript libdevmapper.so + + insinto /etc + doins "${FILESDIR}"/dmtab + insinto /lib/rcscripts/addons + doins "${FILESDIR}"/dm-start.sh + + dodoc INSTALL INTRO README VERSION WHATS_NEW +} + +pkg_preinst() { + local l=${ROOT}/$(get_libdir)/libdevmapper.so.1.01 + [[ -e ${l} ]] && cp "${l}" "${D}"/$(get_libdir)/ +} + +pkg_postinst() { + preserve_old_lib_notify /$(get_libdir)/libdevmapper.so.1.01 +} |