diff options
author | Mikle Kolyada <zlogene@gentoo.org> | 2019-02-15 22:23:58 +0300 |
---|---|---|
committer | Mikle Kolyada <zlogene@gentoo.org> | 2019-02-15 22:23:58 +0300 |
commit | b3aff0c8263d4a431122ec1e975347a19b272735 (patch) | |
tree | e75124d037e44bc25725f4db3d29d03b301c692c /sys-cluster/ploop | |
parent | sys-cluster/ploop: amd64 stable wrt bug #676788 (diff) | |
download | gentoo-b3aff0c8263d4a431122ec1e975347a19b272735.tar.gz gentoo-b3aff0c8263d4a431122ec1e975347a19b272735.tar.bz2 gentoo-b3aff0c8263d4a431122ec1e975347a19b272735.zip |
sys-cluster/ploop: Drop old
Signed-off-by: Mikle Kolyada <zlogene@gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11
Diffstat (limited to 'sys-cluster/ploop')
-rw-r--r-- | sys-cluster/ploop/Manifest | 1 | ||||
-rw-r--r-- | sys-cluster/ploop/ploop-1.13.2.ebuild | 58 |
2 files changed, 0 insertions, 59 deletions
diff --git a/sys-cluster/ploop/Manifest b/sys-cluster/ploop/Manifest index f1c194393c95..dee8217c2c4e 100644 --- a/sys-cluster/ploop/Manifest +++ b/sys-cluster/ploop/Manifest @@ -1,2 +1 @@ -DIST ploop-1.13.2.tar.bz2 122821 BLAKE2B f71174ae9eba00c00714faa760abb356bf4fa5ede48cdb2366ef685f703f58950d0e49d65634eaca05529289666c548c93e7d526929e3ae51814b0ccc8736cdf SHA512 85a3314dc1114b692cd98290412fd2ea78c516964c712487dd72f8347fd583172d8836f997d63ccade89ee39be031669074d9bc957926b97175e659ec505ddfb DIST ploop-1.14.1.tar.bz2 123962 BLAKE2B d4f4f102d2ec0714d79901bd3193f85514e232dc18ffcab254becb954cf794f3598fe7b0f65d0bbb85766bff5ded9d816900b40b81cb6046c31d8b6459c67618 SHA512 7a235865f071de6e2762923d6591c8c6ee00d0d05ec80c6a2a1332f5b6881ccf827f7ddc40dfe1d663b8abf492a188a23f7d28a43dd553d6e37c8091cb3bc484 diff --git a/sys-cluster/ploop/ploop-1.13.2.ebuild b/sys-cluster/ploop/ploop-1.13.2.ebuild deleted file mode 100644 index e0953461d6cf..000000000000 --- a/sys-cluster/ploop/ploop-1.13.2.ebuild +++ /dev/null @@ -1,58 +0,0 @@ -# Copyright 1999-2018 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -inherit eutils toolchain-funcs multilib systemd - -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() { - # 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 -} |