forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
sys-fs/btrfs-progs: Bump to version 4.15_rc1
Package-Manager: Portage-2.3.21, Repoman-2.3.6
- Loading branch information
Lars Wendler
committed
Jan 31, 2018
1 parent
151be73
commit 0108260
Showing
2 changed files
with
105 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,104 @@ | ||
# Copyright 1999-2018 Gentoo Foundation | ||
# Distributed under the terms of the GNU General Public License v2 | ||
|
||
EAPI=6 | ||
|
||
inherit bash-completion-r1 | ||
|
||
libbtrfs_soname=0 | ||
|
||
if [[ ${PV} != 9999 ]]; then | ||
MY_PV="v${PV/_/-}" | ||
[[ "${PV}" = *_rc* ]] || \ | ||
KEYWORDS="~amd64 ~arm ~arm64 ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86" | ||
SRC_URI="https://www.kernel.org/pub/linux/kernel/people/kdave/${PN}/${PN}-${MY_PV}.tar.xz" | ||
S="${WORKDIR}"/${PN}-${MY_PV} | ||
else | ||
WANT_LIBTOOL=none | ||
inherit autotools git-r3 | ||
EGIT_REPO_URI="https://github.com/kdave/btrfs-progs.git" | ||
EGIT_BRANCH="devel" | ||
fi | ||
|
||
DESCRIPTION="Btrfs filesystem utilities" | ||
HOMEPAGE="https://btrfs.wiki.kernel.org" | ||
|
||
LICENSE="GPL-2" | ||
SLOT="0/${libbtrfs_soname}" | ||
IUSE="+convert reiserfs static static-libs +zstd" | ||
|
||
RESTRICT=test # tries to mount repared filesystems | ||
|
||
RDEPEND=" | ||
dev-libs/lzo:2= | ||
sys-apps/util-linux:0=[static-libs(+)?] | ||
sys-libs/zlib:0= | ||
convert? ( | ||
sys-fs/e2fsprogs:0= | ||
sys-libs/e2fsprogs-libs:0= | ||
reiserfs? ( | ||
>=sys-fs/reiserfsprogs-3.6.27 | ||
) | ||
) | ||
zstd? ( app-arch/zstd:0= ) | ||
" | ||
DEPEND="${RDEPEND} | ||
convert? ( sys-apps/acl ) | ||
>=app-text/asciidoc-8.6.0 | ||
app-text/docbook-xml-dtd:4.5 | ||
app-text/xmlto | ||
static? ( | ||
dev-libs/lzo:2[static-libs(+)] | ||
sys-apps/util-linux:0[static-libs(+)] | ||
sys-libs/zlib:0[static-libs(+)] | ||
convert? ( | ||
sys-fs/e2fsprogs:0[static-libs(+)] | ||
sys-libs/e2fsprogs-libs:0[static-libs(+)] | ||
reiserfs? ( | ||
>=sys-fs/reiserfsprogs-3.6.27[static-libs(+)] | ||
) | ||
) | ||
zstd? ( app-arch/zstd:0[static-libs(+)] ) | ||
) | ||
" | ||
|
||
if [[ ${PV} == 9999 ]]; then | ||
DEPEND+=" sys-devel/gnuconfig" | ||
fi | ||
|
||
src_prepare() { | ||
default | ||
if [[ ${PV} == 9999 ]]; then | ||
AT_M4DIR=m4 eautoreconf | ||
mkdir config || die | ||
local automakedir="$(autotools_run_tool --at-output automake --print-libdir)" | ||
[[ -e ${automakedir} ]] || die "Could not locate automake directory" | ||
ln -s "${automakedir}"/install-sh config/install-sh || die | ||
ln -s "${EPREFIX}"/usr/share/gnuconfig/config.guess config/config.guess || die | ||
ln -s "${EPREFIX}"/usr/share/gnuconfig/config.sub config/config.sub || die | ||
fi | ||
} | ||
|
||
src_configure() { | ||
local myeconfargs=( | ||
--bindir="${EPREFIX}"/sbin | ||
$(use_enable convert) | ||
$(use_enable elibc_glibc backtrace) | ||
$(use_enable zstd) | ||
--with-convert=ext2$(usex reiserfs ',reiserfs' '') | ||
) | ||
econf "${myeconfargs[@]}" | ||
} | ||
|
||
src_compile() { | ||
emake V=1 all $(usev static) | ||
} | ||
|
||
src_install() { | ||
local makeargs=( | ||
$(usex static-libs '' 'libs_static=') | ||
$(usex static install-static '') | ||
) | ||
emake V=1 DESTDIR="${D}" install "${makeargs[@]}" | ||
newbashcomp btrfs-completion btrfs | ||
} |