diff options
author | Michał Górny <mgorny@gentoo.org> | 2022-12-01 17:12:33 +0100 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2022-12-01 19:38:23 +0000 |
commit | 2dcc92ce6b5c947ea31350c635dcdce43fee527b (patch) | |
tree | 477f551d1e75c747314a9dcb46c8e5657ac5cb1f /app-alternatives/bzip2/bzip2-1.ebuild | |
parent | app-arch/gzip: Support app-alternatives/gzip (diff) | |
download | gentoo-2dcc92ce6b5c947ea31350c635dcdce43fee527b.tar.gz gentoo-2dcc92ce6b5c947ea31350c635dcdce43fee527b.tar.bz2 gentoo-2dcc92ce6b5c947ea31350c635dcdce43fee527b.zip |
app-alternatives/bzip2: Simplify by chaining manpage references
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Closes: https://github.com/gentoo/gentoo/pull/28494
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'app-alternatives/bzip2/bzip2-1.ebuild')
-rw-r--r-- | app-alternatives/bzip2/bzip2-1.ebuild | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/app-alternatives/bzip2/bzip2-1.ebuild b/app-alternatives/bzip2/bzip2-1.ebuild new file mode 100644 index 000000000000..6e61b5e2135d --- /dev/null +++ b/app-alternatives/bzip2/bzip2-1.ebuild @@ -0,0 +1,48 @@ +# Copyright 2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DESCRIPTION="bzip2 symlink" +HOMEPAGE="https://wiki.gentoo.org/wiki/Project:Base/Alternatives" +SRC_URI="" +S=${WORKDIR} + +LICENSE="CC0-1.0" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86" +IUSE="lbzip2 pbzip2 +reference split-usr" +REQUIRED_USE="^^ ( lbzip2 pbzip2 reference )" + +RDEPEND=" + lbzip2? ( app-arch/lbzip2[-symlink(-)] ) + pbzip2? ( app-arch/pbzip2[-symlink(-)] ) + reference? ( >=app-arch/bzip2-1.0.8-r4 ) + !<app-arch/bzip2-1.0.8-r4 + !app-arch/lbzip2[symlink(-)] + !app-arch/pbzip2[symlink(-)] +" + +src_install() { + local usr_prefix= + use split-usr && usr_prefix=../usr/bin/ + + if use lbzip2; then + dosym "${usr_prefix}lbzip2" /bin/bzip2 + newman - bzip2.1 <<<".so lbzip2.1" + elif use pbzip2; then + dosym "${usr_prefix}pbzip2" /bin/bzip2 + newman - bzip2.1 <<<".so pbzip2.1" + elif use reference; then + dosym bzip2-reference /bin/bzip2 + newman - bzip2.1 <<<".so bzip2-reference.1" + else + die "Invalid USE flag combination (broken REQUIRED_USE?)" + fi + + dosym bzip2 /bin/bunzip2 + dosym bzip2 /bin/bzcat + + newman - bunzip2.1 <<<".so bzip2.1" + newman - bzcat.1 <<<".so bzip2.1" +} |