diff options
author | Aaron Bauman <bman@gentoo.org> | 2017-07-15 19:40:48 -0400 |
---|---|---|
committer | Aaron Bauman <bman@gentoo.org> | 2017-07-15 20:46:43 -0400 |
commit | 769dc13e9c6032697ffb26fc90be36e79b9b90f4 (patch) | |
tree | 0bd257095bf91ec66b542709bb70ad1bdf9a2825 /app-arch/dump/dump-0.4.44-r1.ebuild | |
parent | net-misc/dropbear: drop vulnerable wrt bug #605560 (diff) | |
download | gentoo-769dc13e9c6032697ffb26fc90be36e79b9b90f4.tar.gz gentoo-769dc13e9c6032697ffb26fc90be36e79b9b90f4.tar.bz2 gentoo-769dc13e9c6032697ffb26fc90be36e79b9b90f4.zip |
app-arch/dump: remove old wrt sec bug #515274
Closes: https://github.com/gentoo/gentoo/pull/5113
Diffstat (limited to 'app-arch/dump/dump-0.4.44-r1.ebuild')
-rw-r--r-- | app-arch/dump/dump-0.4.44-r1.ebuild | 63 |
1 files changed, 0 insertions, 63 deletions
diff --git a/app-arch/dump/dump-0.4.44-r1.ebuild b/app-arch/dump/dump-0.4.44-r1.ebuild deleted file mode 100644 index 384b6611774a..000000000000 --- a/app-arch/dump/dump-0.4.44-r1.ebuild +++ /dev/null @@ -1,63 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI="4" -inherit eutils autotools - -MY_P=${P/4./4b} -S=${WORKDIR}/${MY_P} -DESCRIPTION="Dump/restore ext2fs backup utilities" -HOMEPAGE="http://dump.sourceforge.net/" -SRC_URI="mirror://sourceforge/dump/${MY_P}.tar.gz" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="alpha amd64 ~hppa ia64 ppc ppc64 sparc x86" -IUSE="debug ermt readline selinux static" - -RDEPEND=">=sys-fs/e2fsprogs-1.27 - >=app-arch/bzip2-1.0.2 - >=sys-libs/zlib-1.1.4 - ermt? ( dev-libs/openssl ) - readline? ( sys-libs/readline - sys-libs/ncurses - static? ( sys-libs/ncurses[static-libs] ) )" -DEPEND="${RDEPEND} - virtual/pkgconfig - virtual/os-headers" - -src_prepare() { - epatch "${FILESDIR}/${P}-underlinking.patch" - epatch "${FILESDIR}/${P}-rl_completion_matches-detection.patch" - epatch "${FILESDIR}/${P}-fix-pointers-aliasing.patch" - eautoreconf -} - -src_configure() { - econf \ - --with-dumpdatespath=/etc/dumpdates \ - --with-{bin,man}owner=root \ - --with-{bin,man}grp=root \ - --enable-largefile \ - $(use_enable selinux transselinux) \ - $(use_enable ermt) \ - $(use_enable static) \ - $(use_enable readline) \ - $(use_enable debug) -} - -src_install() { - # built on old autotools, no DESTDIR support - einstall MANDIR="${D}"/usr/share/man/man8 - mv "${ED}"/usr/sbin/{,dump-}rmt || die - mv "${ED}"/usr/share/man/man8/{,dump-}rmt.8 || die - use ermt && newsbin rmt/ermt dump-ermt - - dodoc CHANGES KNOWNBUGS MAINTAINERS README REPORTING-BUGS THANKS TODO - dodoc -r examples/* -} - -pkg_postinst() { - ewarn "app-arch/dump installs 'rmt' as 'dump-rmt'." - ewarn "This is to avoid conflicts with app-arch/tar 'rmt'." -} |