mirror of
https://github.com/gentoo-mirror/guru.git
synced 2025-04-19 15:59:00 -04:00
Closes: https://bugs.gentoo.org/944282 Signed-off-by: Alexander Golubev <fatzer2@gmail.com>
61 lines
1.2 KiB
Bash
61 lines
1.2 KiB
Bash
# Copyright 1999-2024 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
inherit autotools linux-info
|
|
|
|
DESCRIPTION="Shared-disk cluster file system"
|
|
HOMEPAGE="https://pagure.io/gfs2-utils"
|
|
SRC_URI="https://pagure.io/gfs2-utils/archive/${PV}/${P}.tar.gz"
|
|
|
|
LICENSE="GPL-2 LGPL-2.1"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~x86"
|
|
|
|
IUSE="nls test"
|
|
RESTRICT="!test? ( test )"
|
|
|
|
BDEPEND="dev-build/automake
|
|
dev-build/automake
|
|
dev-build/libtool
|
|
dev-build/make
|
|
"
|
|
RDEPEND="sys-libs/zlib
|
|
app-arch/bzip2
|
|
sys-libs/ncurses
|
|
sys-apps/util-linux
|
|
"
|
|
|
|
DEPEND="${RDEPEND}
|
|
sys-devel/gettext
|
|
sys-devel/bison
|
|
sys-devel/flex
|
|
test? ( dev-libs/check )
|
|
sys-kernel/linux-headers
|
|
"
|
|
|
|
src_prepare() {
|
|
eapply "${FILESDIR}"/reproducible.patch
|
|
eapply "${FILESDIR}"/gfs2_withdraw_helper.patch
|
|
eapply "${FILESDIR}"/python3.patch
|
|
|
|
sed -e '/^CFLAGS=/s!\s*\$\(GDB_FLAGS\|OPT_CFLAGS\)!!g' \
|
|
-e '/^CPPFLAGS=/s!\s*\$OPT_CPPFLAGS!!' \
|
|
-i configure.ac || die
|
|
|
|
default
|
|
|
|
eautoreconf
|
|
}
|
|
|
|
src_configure() {
|
|
local econf_args
|
|
econf_args=(
|
|
bzip2_LIBS="-L/$(get_libdir) -lbz2"
|
|
bzip2_CFLAGS="-I${prefix}/include"
|
|
)
|
|
ECONF_SOURCE="${S}" econf "${econf_args[@]}"
|
|
|
|
}
|