summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSam James <sam@gentoo.org>2022-12-27 11:58:40 +0000
committerSam James <sam@gentoo.org>2022-12-27 11:58:40 +0000
commitaf81e169a9752436ccb0b16f1ea6ea6a864f0e82 (patch)
tree29ccfd6b2255dda730220a975d5cfc842c2b430c /app-arch/pbzip2
parentapp-arch/lbzip2: drop masked USE=symlink (diff)
downloadgentoo-af81e169a9752436ccb0b16f1ea6ea6a864f0e82.tar.gz
gentoo-af81e169a9752436ccb0b16f1ea6ea6a864f0e82.tar.bz2
gentoo-af81e169a9752436ccb0b16f1ea6ea6a864f0e82.zip
app-arch/pbzip2: drop masked USE=symlink
Use app-alternative/bzip2 instead (see news item). Bug: https://bugs.gentoo.org/868651 Bug: https://bugs.gentoo.org/868318 Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'app-arch/pbzip2')
-rw-r--r--app-arch/pbzip2/metadata.xml3
-rw-r--r--app-arch/pbzip2/pbzip2-1.1.13.ebuild13
2 files changed, 2 insertions, 14 deletions
diff --git a/app-arch/pbzip2/metadata.xml b/app-arch/pbzip2/metadata.xml
index 9b7026440d3b..58c362b73a80 100644
--- a/app-arch/pbzip2/metadata.xml
+++ b/app-arch/pbzip2/metadata.xml
@@ -2,9 +2,6 @@
<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<!-- maintainer-needed -->
- <use>
- <flag name="symlink">Install symlinks which override <pkg>app-arch/bzip2</pkg> implementation</flag>
- </use>
<upstream>
<remote-id type="launchpad">pbzip2</remote-id>
</upstream>
diff --git a/app-arch/pbzip2/pbzip2-1.1.13.ebuild b/app-arch/pbzip2/pbzip2-1.1.13.ebuild
index 2ad43bb37633..554e95c56fb8 100644
--- a/app-arch/pbzip2/pbzip2-1.1.13.ebuild
+++ b/app-arch/pbzip2/pbzip2-1.1.13.ebuild
@@ -12,12 +12,10 @@ SRC_URI="https://launchpad.net/pbzip2/${PV:0:3}/${PV}/+download/${P}.tar.gz"
LICENSE="BZIP2"
SLOT="0"
KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos"
-IUSE="static symlink"
+IUSE="static"
LIB_DEPEND="app-arch/bzip2[static-libs(+)]"
-RDEPEND="
- !static? ( ${LIB_DEPEND//\[static-libs(+)]} )
- symlink? ( !app-arch/lbzip2[symlink] )"
+RDEPEND="!static? ( ${LIB_DEPEND//\[static-libs(+)]} )"
DEPEND="${RDEPEND}
static? ( ${LIB_DEPEND} )"
@@ -39,11 +37,4 @@ src_configure() {
src_install() {
emake DESTDIR="${ED}" install
dodoc AUTHORS ChangeLog README
-
- if use symlink ; then
- local s
- for s in bzip2 bunzip2 bzcat ; do
- dosym pbzip2 /usr/bin/${s}
- done
- fi
}