diff options
author | Mike Frysinger <vapier@gentoo.org> | 2011-04-08 00:13:19 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2011-04-08 00:13:19 +0000 |
commit | 8b780f3c7b1a25c390b8b807d1bd2541ddaa9e7b (patch) | |
tree | 2c3215f6891d0b8eae9ed934df9009eb9be0d2c6 /sys-fs/mdadm/mdadm-3.2.1.ebuild | |
parent | Add patch to fix building with GCC 4.6 (bug #362501). (diff) | |
download | gentoo-2-8b780f3c7b1a25c390b8b807d1bd2541ddaa9e7b.tar.gz gentoo-2-8b780f3c7b1a25c390b8b807d1bd2541ddaa9e7b.tar.bz2 gentoo-2-8b780f3c7b1a25c390b8b807d1bd2541ddaa9e7b.zip |
Version bump.
(Portage version: 2.2.0_alpha28/cvs/Linux x86_64)
Diffstat (limited to 'sys-fs/mdadm/mdadm-3.2.1.ebuild')
-rw-r--r-- | sys-fs/mdadm/mdadm-3.2.1.ebuild | 81 |
1 files changed, 81 insertions, 0 deletions
diff --git a/sys-fs/mdadm/mdadm-3.2.1.ebuild b/sys-fs/mdadm/mdadm-3.2.1.ebuild new file mode 100644 index 000000000000..d452ab8c30b6 --- /dev/null +++ b/sys-fs/mdadm/mdadm-3.2.1.ebuild @@ -0,0 +1,81 @@ +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-fs/mdadm/mdadm-3.2.1.ebuild,v 1.1 2011/04/08 00:13:19 vapier Exp $ + +inherit eutils flag-o-matic toolchain-funcs + +DESCRIPTION="A useful tool for running RAID systems - it can be used as a replacement for the raidtools" +HOMEPAGE="http://neil.brown.name/blog/mdadm" +SRC_URI="mirror://kernel/linux/utils/raid/mdadm/${P}.tar.bz2" + +LICENSE="GPL-2" +SLOT="0" +# until it's safe ! +#KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86" +IUSE="static" + +DEPEND="" +RDEPEND=">=sys-apps/util-linux-2.16" + +# The tests edit values in /proc and run tests on software raid devices. +# Thus, they shouldn't be run on systems with active software RAID devices. +RESTRICT="test" + +src_unpack() { + unpack ${A} + cd "${S}" + epatch "${FILESDIR}"/${PN}-3.0-dont-make-man.patch + epatch "${FILESDIR}"/${PN}-3.2.1-syslog-updates.patch + epatch "${FILESDIR}"/${PN}-3.2.1-mdassemble.patch #211426 + epatch "${FILESDIR}"/${PN}-3.1.5-cflags.patch #336175 + use static && append-ldflags -static +} + +mdadm_emake() { + emake \ + CC="$(tc-getCC)" \ + CWFLAGS="-Wall" \ + CXFLAGS="${CFLAGS}" \ + "$@" \ + || die +} + +src_compile() { + mdadm_emake all mdassemble +} + +src_test() { + mdadm_emake test + + sh ./test || die +} + +src_install() { + emake DESTDIR="${D}" install || die + into / + dosbin mdassemble || die + dodoc ChangeLog INSTALL TODO README* ANNOUNCE-${PV} + + exeinto /$(get_libdir)/rcscripts/addons + newexe "${FILESDIR}"/raid-start.sh-3.0 raid-start.sh || die + newexe "${FILESDIR}"/raid-stop.sh raid-stop.sh || die + + insinto /etc + newins mdadm.conf-example mdadm.conf + newinitd "${FILESDIR}"/mdadm.rc mdadm || die + newconfd "${FILESDIR}"/mdadm.confd mdadm || die + newinitd "${FILESDIR}"/mdraid.rc-3.1.1 mdraid || die + newconfd "${FILESDIR}"/mdraid.confd mdraid || die + + # do not rely on /lib -> /libXX link + sed -i \ + -e "s:/lib/rcscripts/:/$(get_libdir)/rcscripts/:" \ + "${D}"/etc/init.d/* +} + +pkg_postinst() { + elog "If using baselayout-2 and not relying on kernel auto-detect" + elog "of your RAID devices, you need to add 'mdraid' to your 'boot'" + elog "runlevel. Run the following command:" + elog "rc-update add mdraid boot" +} |