diff options
author | Ian Stakenvicius <axs@gentoo.org> | 2020-04-04 22:55:11 -0400 |
---|---|---|
committer | Ian Stakenvicius <axs@gentoo.org> | 2020-04-04 22:55:55 -0400 |
commit | 07a74ec765ebc25d68f44c5aa8e91ae0f866c7ad (patch) | |
tree | bc4823cf31039d2daf3f0a07cddafec595004bb7 /sys-fs/dmraid | |
parent | media-libs/flac: switch to CPU_FLAGS_PPC (diff) | |
download | gentoo-07a74ec765ebc25d68f44c5aa8e91ae0f866c7ad.tar.gz gentoo-07a74ec765ebc25d68f44c5aa8e91ae0f866c7ad.tar.bz2 gentoo-07a74ec765ebc25d68f44c5aa8e91ae0f866c7ad.zip |
sys-fs/dmraid: ensure _PATH_MOUNTED is defined, bump to EAPI7
glibc's /usr/include/paths.h defines _PATH_MOUNTED as /etc/mtab
but if musl doesn't have that define it would explain this
failure. This patch ensures its defined in the code.
Also bumped ebuild to EAPI7
Closes: https://bugs.gentoo.org/716156
Package-Manager: Portage-2.3.89, Repoman-2.3.20
Signed-off-by: Ian Stakenvicius <axs@gentoo.org>
Diffstat (limited to 'sys-fs/dmraid')
-rw-r--r-- | sys-fs/dmraid/dmraid-1.0.0_rc16-r5.ebuild | 102 | ||||
-rw-r--r-- | sys-fs/dmraid/files/dmraid-1.0.0_rc16-fix-missing-PATH-MOUNTED.patch | 14 |
2 files changed, 116 insertions, 0 deletions
diff --git a/sys-fs/dmraid/dmraid-1.0.0_rc16-r5.ebuild b/sys-fs/dmraid/dmraid-1.0.0_rc16-r5.ebuild new file mode 100644 index 000000000000..a4b58735f59a --- /dev/null +++ b/sys-fs/dmraid/dmraid-1.0.0_rc16-r5.ebuild @@ -0,0 +1,102 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit autotools linux-info flag-o-matic + +MY_PV=${PV/_/.}-3 + +DESCRIPTION="Device-mapper RAID tool and library" +HOMEPAGE="https://people.redhat.com/~heinzm/sw/dmraid/" +SRC_URI="https://people.redhat.com/~heinzm/sw/dmraid/src/${PN}-${MY_PV}.tar.bz2" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86" +IUSE="intel_led led mini static" + +RDEPEND=">=sys-fs/lvm2-2.02.45" +DEPEND="${RDEPEND} + static? ( sys-fs/lvm2[static-libs] ) +" +BDEPEND="virtual/pkgconfig + app-arch/tar" + +S="${WORKDIR}/${PN}/${MY_PV}/${PN}" + +pkg_setup() { + if kernel_is lt 2 6 ; then + ewarn "You are using a kernel < 2.6" + ewarn "DMraid uses recently introduced Device-Mapper features." + ewarn "These might be unavailable in the kernel you are running now." + fi +} + +src_prepare() { + eapply -p2 "${FILESDIR}"/${P}-undo-p-rename.patch \ + "${FILESDIR}"/${P}-return-all-sets.patch + eapply -p0 "${FILESDIR}"/${P}-static-build-fixes.patch + eapply -p3 "${FILESDIR}"/${P}-parallel-make.patch + eapply "${FILESDIR}"/${P}-fix-missing-PATH-MOUNTED.patch + + # pkg_check_modules is not in aclocal.m4 by default, and eautoreconf doesnt add it + einfo "Appending pkg.m4 from system to aclocal.m4" + cat "${BROOT}"/usr/share/aclocal/pkg.m4 >>"${S}"/aclocal.m4 || die "Could not append pkg.m4" + eapply_user + eautoreconf + + einfo "Creating prepatched source archive for use with Genkernel" + # archive the patched source for use with genkernel + cd "${WORKDIR}" || die + mkdir -p "tmp/${PN}" || die + cp -a "${PN}/${MY_PV}/${PN}" "tmp/${PN}" || die + mv "tmp/${PN}/${PN}" "tmp/${PN}/${MY_PV}" || die + cd tmp || die + tar -jcf ${PN}-${MY_PV}-prepatched.tar.bz2 ${PN} || die + mv ${PN}-${MY_PV}-prepatched.tar.bz2 .. || die +} + +src_configure() { + # disable klibc and dietlibc, bug #653392 + econf --with-usrlibdir='${prefix}'/$(get_libdir) \ + --disable-klibc \ + --disable-dietlibc \ + $(use_enable static static_link) \ + $(use_enable mini) \ + $(use_enable led) \ + $(use_enable intel_led) +} + +src_install() { + emake DESTDIR="${D}" install + dodoc CHANGELOG README TODO KNOWN_BUGS doc/* + insinto /usr/share/${PN} + doins "${WORKDIR}"/${PN}-${MY_PV}-prepatched.tar.bz2 +} + +pkg_postinst() { + if [[ -z ${REPLACING_VERSIONS} ]]; then + elog "For booting Gentoo from Device-Mapper RAID you can use a Genkernel initramfs." + elog + elog "Genkernel will generate the kernel and the initramfs with a statically " + elog "linked dmraid binary (its own version which may not be the same as this version):" + elog "\t emerge -av sys-kernel/genkernel" + elog "\t genkernel --dmraid all" + fi + # skip this message if this revision has already been emerged + if [[ " ${REPLACING_VERSIONS} " != *\ ${PVR}\ * ]]; then + elog + elog "A pre-patched distfile of this version of DMRAID has been installed at" + elog "/usr/share/${PN}/${PN}-${MY_PV}-prepatched.tar.bz2 , to support using it within a" + elog "Genkernel initramfs." + elog + fi + if [[ -z ${REPLACING_VERSIONS} ]]; then + elog "If you would rather use this version of DMRAID with Genkernel, update the following" + elog "in /etc/genkernel.conf:" + elog "\t DMRAID_VER=\"${MY_PV}\"" + elog "\t DMRAID_SRCTAR=\"/usr/share/${PN}/${PN}-${MY_PV}-prepatched.tar.bz2\"" + elog + fi +} diff --git a/sys-fs/dmraid/files/dmraid-1.0.0_rc16-fix-missing-PATH-MOUNTED.patch b/sys-fs/dmraid/files/dmraid-1.0.0_rc16-fix-missing-PATH-MOUNTED.patch new file mode 100644 index 000000000000..3d773b5e15ed --- /dev/null +++ b/sys-fs/dmraid/files/dmraid-1.0.0_rc16-fix-missing-PATH-MOUNTED.patch @@ -0,0 +1,14 @@ +--- a/lib/device/scan.c 2010-10-27 07:31:47.000000000 -0400 ++++ b/lib/device/scan.c 2020-04-04 22:13:26.905977068 -0400 +@@ -32,6 +32,11 @@ + #define _PATH_MOUNTS "/proc/mounts" + #endif + ++/* Find mtab */ ++#ifndef _PATH_MOUNTED ++#define _PATH_MOUNTED "/etc/mtab" ++#endif ++ + static char * + find_sysfs_mp(struct lib_context *lc) + { |