diff options
author | Aaron Bauman <bman@gentoo.org> | 2020-09-26 09:30:40 -0400 |
---|---|---|
committer | Aaron Bauman <bman@gentoo.org> | 2020-09-26 10:33:26 -0400 |
commit | 4bc595374478019b1b07bb19552fd08208c97937 (patch) | |
tree | d4b1af4b256ffdd67db6b6e2435e6988a404b6ee /app-arch | |
parent | app-admin/bastille: drop old EAPI=5 (diff) | |
download | gentoo-4bc595374478019b1b07bb19552fd08208c97937.tar.gz gentoo-4bc595374478019b1b07bb19552fd08208c97937.tar.bz2 gentoo-4bc595374478019b1b07bb19552fd08208c97937.zip |
app-arch/dump: drop old EAPI=5
Signed-off-by: Aaron Bauman <bman@gentoo.org>
Diffstat (limited to 'app-arch')
-rw-r--r-- | app-arch/dump/dump-0.4.46.ebuild | 86 |
1 files changed, 0 insertions, 86 deletions
diff --git a/app-arch/dump/dump-0.4.46.ebuild b/app-arch/dump/dump-0.4.46.ebuild deleted file mode 100644 index f7ff465b84eb..000000000000 --- a/app-arch/dump/dump-0.4.46.ebuild +++ /dev/null @@ -1,86 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI="5" - -inherit versionator - -MY_P="${PN}-$(replace_version_separator 2 b)" -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" -# We keep uuid USE flag default dsiabled for this version. Don't forget -# to default enable it for later versions as this is the upstream default. -IUSE="bzip2 debug ermt libressl lzo readline selinux sqlite ssl static test uuid zlib" -RESTRICT="!test? ( test )" -REQUIRED_USE=" - ermt? ( ssl ) - ssl? ( zlib ) - test? ( sqlite? ( uuid ) ) -" - -RDEPEND=">=sys-fs/e2fsprogs-1.27:= - >=sys-libs/e2fsprogs-libs-1.27:= - sys-apps/util-linux - bzip2? ( >=app-arch/bzip2-1.0.2:= ) - zlib? ( >=sys-libs/zlib-1.1.4:= ) - lzo? ( dev-libs/lzo:2= ) - sqlite? ( dev-db/sqlite:3= ) - ermt? ( - !libressl? ( dev-libs/openssl:0= ) - libressl? ( dev-libs/libressl:0= ) - ) - ssl? ( - !libressl? ( dev-libs/openssl:0= ) - libressl? ( dev-libs/libressl:0= ) - ) - readline? ( - sys-libs/readline:0= - sys-libs/ncurses:= - static? ( sys-libs/ncurses:=[static-libs] ) - )" -DEPEND="${RDEPEND} - virtual/pkgconfig - virtual/os-headers" - -src_configure() { - local myeconfargs=( - --with-dumpdatespath=/etc/dumpdates - --with-rmtpath='$(sbindir)/rmt' - --enable-blkid - $(use_enable bzip2) - $(use_enable debug) - $(use_enable ermt) - $(use_enable lzo) - $(use_enable readline) - $(use_enable selinux) - $(use_enable sqlite) - $(use_enable ssl) - $(use_enable static static-progs) - $(use_enable uuid) - $(use_enable zlib) - ) - econf "${myeconfargs[@]}" -} - -src_install() { - default - 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 KNOWNBUGS MAINTAINERS REPORTING-BUGS - dodoc -r examples -} - -pkg_postinst() { - if [[ -z ${REPLACING_VERSIONS} ]] ; then - ewarn "app-arch/dump installs 'rmt' as 'dump-rmt'." - ewarn "This is to avoid conflicts with app-arch/tar 'rmt'." - fi -} |