diff options
author | Jakov Smolić <jsmolic@gentoo.org> | 2021-12-10 17:19:29 +0100 |
---|---|---|
committer | Jakov Smolić <jsmolic@gentoo.org> | 2021-12-10 17:19:29 +0100 |
commit | 7d21f5002d107378f28804b4cecea584601a037d (patch) | |
tree | e74aa9a317df613974213cd34ce6ec96c07a3db8 /sys-cluster/ploop | |
parent | dev-python/cfn-lint: Stabilize 0.56.1 x86, #828757 (diff) | |
download | gentoo-7d21f5002d107378f28804b4cecea584601a037d.tar.gz gentoo-7d21f5002d107378f28804b4cecea584601a037d.tar.bz2 gentoo-7d21f5002d107378f28804b4cecea584601a037d.zip |
sys-cluster/ploop: drop 1.14.1
Signed-off-by: Jakov Smolić <jsmolic@gentoo.org>
Diffstat (limited to 'sys-cluster/ploop')
-rw-r--r-- | sys-cluster/ploop/ploop-1.14.1.ebuild | 64 |
1 files changed, 0 insertions, 64 deletions
diff --git a/sys-cluster/ploop/ploop-1.14.1.ebuild b/sys-cluster/ploop/ploop-1.14.1.ebuild deleted file mode 100644 index 3e65c0a61516..000000000000 --- a/sys-cluster/ploop/ploop-1.14.1.ebuild +++ /dev/null @@ -1,64 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -inherit eutils toolchain-funcs multilib systemd tmpfiles - -DESCRIPTION="openvz tool and a library to control ploop block devices" -HOMEPAGE="https://wiki.openvz.org/Download/ploop" -SRC_URI="https://download.openvz.org/utils/ploop/${PV}/src/${P}.tar.bz2" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="amd64 x86" -IUSE="debug static-libs" - -DEPEND=" - dev-libs/libxml2 - virtual/pkgconfig - " - -RDEPEND="dev-libs/libxml2 - !<sys-cluster/vzctl-4.8 - sys-block/parted - sys-fs/e2fsprogs - sys-process/lsof - sys-apps/findutils - " - -DOCS=( tools/README ) - -src_prepare() { - epatch "${FILESDIR}/disable_create_run_dir.patch" - - # Respect CFLAGS and CC, do not add debug by default - sed -i \ - -e 's|CFLAGS =|CFLAGS +=|' \ - -e '/CFLAGS/s/-g -O0 //' \ - -e '/CFLAGS/s/-O2//' \ - -e 's|CC=|CC?=|' \ - -e 's/-Werror//' \ - -e '/DEBUG=yes/d' \ - -e '/LOCKDIR/s/var/run/' \ - Makefile.inc || die 'sed on Makefile.inc failed' - # Avoid striping of binaries - sed -e '/INSTALL/{s: -s::}' -i tools/Makefile || die 'sed on tools/Makefile failed' - - # respect AR and RANLIB, bug #452092 - tc-export AR RANLIB - sed -i -e 's/ranlib/$(RANLIB)/' lib/Makefile || die 'sed on lib/Makefile failed' -} - -src_compile() { - emake CC="$(tc-getCC)" V=1 $(usex debug 'DEBUG' '' '=yes' '') -} - -src_install() { - default - ldconfig -n "${D}/usr/$(get_libdir)/" || die -} - -pkg_postinst() { - tmpfiles_process ploop.conf -} |