Gentoo Archives: gentoo-commits

From: Joonas Niilola <juippis@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-backup/dar/
Date: Wed, 31 Mar 2021 07:40:42
Message-Id: 1617176419.62bca7ce3104fc8095597e4c8a5ebc4e2dea0f4e.juippis@gentoo
1 commit: 62bca7ce3104fc8095597e4c8a5ebc4e2dea0f4e
2 Author: Viorel Munteanu <ceamac.paragon <AT> gmail <DOT> com>
3 AuthorDate: Tue Mar 30 15:22:09 2021 +0000
4 Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
5 CommitDate: Wed Mar 31 07:40:19 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=62bca7ce
7
8 app-backup/dar: drop dar-2.6.13-r1
9
10 Package-Manager: Portage-3.0.17, Repoman-3.0.2
11 Signed-off-by: Viorel Munteanu <ceamac.paragon <AT> gmail.com>
12 Closes: https://github.com/gentoo/gentoo/pull/20089
13 Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
14
15 app-backup/dar/dar-2.6.13-r1.ebuild | 88 -------------------------------------
16 1 file changed, 88 deletions(-)
17
18 diff --git a/app-backup/dar/dar-2.6.13-r1.ebuild b/app-backup/dar/dar-2.6.13-r1.ebuild
19 deleted file mode 100644
20 index 414cefd61db..00000000000
21 --- a/app-backup/dar/dar-2.6.13-r1.ebuild
22 +++ /dev/null
23 @@ -1,88 +0,0 @@
24 -# Copyright 1999-2021 Gentoo Authors
25 -# Distributed under the terms of the GNU General Public License v2
26 -
27 -EAPI=7
28 -
29 -inherit flag-o-matic
30 -
31 -DESCRIPTION="A full featured backup tool, aimed for disks"
32 -HOMEPAGE="http://dar.linux.free.fr/"
33 -SRC_URI="mirror://sourceforge/dar/${P}.tar.gz"
34 -
35 -LICENSE="GPL-2"
36 -SLOT="0"
37 -KEYWORDS="~amd64 ~ppc ~sparc ~x86 ~amd64-linux"
38 -IUSE="curl dar32 dar64 doc gcrypt gpg lzo nls rsync threads xattr"
39 -
40 -RESTRICT="test" # need to be run as root
41 -
42 -RDEPEND="
43 - app-arch/bzip2:=
44 - app-arch/xz-utils:=
45 - sys-libs/libcap
46 - >=sys-libs/zlib-1.2.3:=
47 - curl? ( net-misc/curl )
48 - gcrypt? ( dev-libs/libgcrypt:0= )
49 - gpg? ( app-crypt/gpgme )
50 - lzo? ( dev-libs/lzo:= )
51 - rsync? ( net-libs/librsync:= )
52 - threads? ( dev-libs/libthreadar:= )
53 - xattr? ( sys-apps/attr:= )
54 -"
55 -
56 -DEPEND="${RDEPEND}"
57 -
58 -BDEPEND="
59 - doc? ( app-doc/doxygen )
60 - nls? (
61 - sys-devel/gettext
62 - virtual/libintl
63 - )
64 -"
65 -
66 -REQUIRED_USE="?? ( dar32 dar64 )
67 - gpg? ( gcrypt )"
68 -
69 -DOCS=( AUTHORS ChangeLog NEWS README THANKS TODO )
70 -
71 -src_configure() {
72 - # configure.ac is totally funked up regarding the AC_ARG_ENABLE
73 - # logic.
74 - # For example "--enable-dar-static" causes configure to DISABLE
75 - # static builds of dar.
76 - # Do _not_ use $(use_enable) until you have verified that the
77 - # logic has been fixed by upstream.
78 - local myconf=(
79 - --disable-dar-static
80 - --disable-python-binding
81 - --disable-static
82 - --disable-upx
83 - $(usex curl '' --disable-libcurl-linking)
84 - $(usex dar32 --enable-mode=32 '')
85 - $(usex dar64 --enable-mode=64 '')
86 - $(usex doc '' --disable-build-html)
87 - $(usex gcrypt '' --disable-libgcrypt-linking)
88 - $(usex gpg '' --disable-gpgme-linking)
89 - $(usex lzo '' --disable-liblzo2-linking)
90 - $(usex nls '' --disable-nls)
91 - $(usex rsync '' --disable-librsync-linking)
92 - $(usex threads '' --disable-threadar)
93 - $(usex xattr '' --disable-ea-support)
94 - )
95 -
96 - # Bug 103741
97 - filter-flags -fomit-frame-pointer
98 -
99 - econf "${myconf[@]}"
100 -}
101 -
102 -src_install() {
103 - emake DESTDIR="${D}" pkgdatadir="${EPREFIX}"/usr/share/doc/${PF}/html install
104 -
105 - einstalldocs
106 -
107 - find "${ED}" \( -name "*.a" -o -name "*.la" \) -delete || die
108 -
109 - # Bug 729150
110 - rm "${ED}/usr/share/doc/${PF}/html/samples/MyBackup.sh.tar.gz" || die
111 -}