summaryrefslogtreecommitdiff
path: root/sys-fs
diff options
context:
space:
mode:
authorAndreas K. Hüttel <dilfridge@gentoo.org>2024-10-30 22:21:25 +0100
committerAndreas K. Hüttel <dilfridge@gentoo.org>2024-10-30 22:21:25 +0100
commitd141ca1ef656e8204e40fb49ba80feb5cf49dc33 (patch)
treeb1f2067b47abb1cf0d962e75c33e6621f9e9695a /sys-fs
parentsys-block/fio: drop 3.27-r4, 3.30-r1 (diff)
downloadgentoo-d141ca1ef656e8204e40fb49ba80feb5cf49dc33.tar.gz
gentoo-d141ca1ef656e8204e40fb49ba80feb5cf49dc33.tar.bz2
gentoo-d141ca1ef656e8204e40fb49ba80feb5cf49dc33.zip
sys-fs/progsreiserfs: drop 0.3.1_rc8
Bug: https://bugs.gentoo.org/898616 Signed-off-by: Andreas K. Hüttel <dilfridge@gentoo.org>
Diffstat (limited to 'sys-fs')
-rw-r--r--sys-fs/progsreiserfs/progsreiserfs-0.3.1_rc8.ebuild66
1 files changed, 0 insertions, 66 deletions
diff --git a/sys-fs/progsreiserfs/progsreiserfs-0.3.1_rc8.ebuild b/sys-fs/progsreiserfs/progsreiserfs-0.3.1_rc8.ebuild
deleted file mode 100644
index 491a39d0e011..000000000000
--- a/sys-fs/progsreiserfs/progsreiserfs-0.3.1_rc8.ebuild
+++ /dev/null
@@ -1,66 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit flag-o-matic libtool
-
-MY_P=${PN}-${PV/_/-}
-
-DESCRIPTION="Library for accessing and manipulating reiserfs partitions"
-HOMEPAGE="http://reiserfs.linux.kiev.ua/"
-SRC_URI="http://reiserfs.linux.kiev.ua/snapshots/${MY_P}.tar.gz"
-S="${WORKDIR}"/${MY_P}
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~mips ppc ~ppc64 ~riscv ~sparc x86"
-IUSE="debug examples nls static-libs"
-
-DEPEND="
- sys-apps/util-linux
- nls? (
- sys-devel/gettext
- virtual/libintl
- )
-"
-
-PATCHES=(
- "${FILESDIR}"/${P}-autotools.patch
-)
-
-src_prepare() {
- default
-
- elibtoolize
-}
-
-src_configure() {
- filter-lfs-flags
-
- econf \
- $(use_enable static-libs static) \
- --disable-Werror \
- $(use_enable nls) \
- $(use_enable debug)
-}
-
-src_install() {
- default
-
- if use examples; then
- docinto examples
- dodoc demos/*.c
- fi
-
- find "${ED}" -name '*.la' -delete || die
-
- rm -r "${ED}"/usr/{sbin,share/man} || die
-}
-
-pkg_postinst() {
- ewarn "progsreiserfs has been proven dangerous in the past, generating bad"
- ewarn "partitions and destroying data on resize/cpfs operations."
- ewarn "Because of this, we do NOT provide their binaries, but only their"
- ewarn "libraries instead, as these are needed for other applications."
-}