mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-08-04 00:08:09 -07:00
app-backup/dar: add 2.8.0
Signed-off-by: Viorel Munteanu <ceamac@gentoo.org>
This commit is contained in:
@@ -1,3 +1,4 @@
|
||||
DIST dar-2.7.16.tar.gz 2444321 BLAKE2B 019f441fe5ca951fbb43b661cbc9d6c5c1992e825005fb434579b2dedb6dc379593ffa11a1ee651da6047c16b8264a19dbbbc7e98bb2d20790890058f245a03c SHA512 bc70aecc05641314144c9a252fec1d256b3a19e38837ee2bb1320bfc7b659bc1e7399e6e1377862e25d25c798fdf90e535794d8ba68f0b9754d9e6bfb9cb50fe
|
||||
DIST dar-2.7.18.tar.gz 2449032 BLAKE2B 515c82b08739e2c44d906fbbd4bb0c637f5c4c5d432131e57ee22b1418291561ff8a3d9b73c903466e4d1d25f928416ef03db355ca2550197247c6b4ffd999b9 SHA512 ddcb4988dba7f83455d41c1f2aa70ba6975df2c89b3ed1328b48c114bd542ed056b7477aea8cabf56c34e6131e570a1a843e7395ec4dec2cb14f61897bbc618f
|
||||
DIST dar-2.7.19.tar.gz 2454221 BLAKE2B 2dbc0bcddd9d816efa66b3ebfbd6a1081ceb21a4cb34ee51df3b43b0588bbc19563bdcad9fee9dbac8d3c5acb343256a7da7ac1a4eb82676c93ec6fd52e6bd76 SHA512 5304d77bfac9a47449e1c161440631213ae88168a7dffe12f84c608dec46d34ba3a23e8b1ae1b31336f4d5e4447bb321a633236fffea0ea0aa5f69c0ec34701a
|
||||
DIST dar-2.8.0.tar.gz 2375068 BLAKE2B e4e85911e17145362c0e68e44038f625a341dbf1f6ebff18b978fb7dd48da7c7a73c7adf0dadf7652993545ea463157ae75e537b9ac735d79296ca6f5317c86f SHA512 61880de88ac46f825157b10d7597f7e146094780837fcaf0dd654fac8b7ab9202014625c4eb4a85e77d49445c6c30bc66f59f235d290d07bd98fd4be8d0b5f9d
|
||||
|
||||
100
app-backup/dar/dar-2.8.0.ebuild
Normal file
100
app-backup/dar/dar-2.8.0.ebuild
Normal file
@@ -0,0 +1,100 @@
|
||||
# Copyright 1999-2025 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
inherit flag-o-matic
|
||||
|
||||
DESCRIPTION="A full featured backup tool, aimed for disks"
|
||||
HOMEPAGE="http://dar.linux.free.fr/"
|
||||
SRC_URI="https://downloads.sourceforge.net/project/dar/dar/${PV}/${P}.tar.gz"
|
||||
|
||||
LICENSE="GPL-2+"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~ppc ~sparc ~x86 ~amd64-linux"
|
||||
IUSE="argon2 curl dar32 dar64 doc gcrypt gpg lz4 lzo nls rsync sftp whirlpool xattr"
|
||||
|
||||
REQUIRED_USE="
|
||||
?? ( dar32 dar64 )
|
||||
gpg? ( gcrypt )
|
||||
"
|
||||
|
||||
RESTRICT="test" # need to be run as root
|
||||
|
||||
RDEPEND="
|
||||
app-arch/bzip2:=
|
||||
app-arch/xz-utils
|
||||
app-arch/zstd:=
|
||||
>=dev-libs/libthreadar-1.5.0
|
||||
sys-libs/libcap
|
||||
>=sys-libs/zlib-1.2.3:=
|
||||
argon2? ( app-crypt/argon2:= )
|
||||
curl? ( net-misc/curl )
|
||||
gcrypt? (
|
||||
dev-libs/libgcrypt:0=
|
||||
dev-libs/libgpg-error
|
||||
)
|
||||
gpg? (
|
||||
app-crypt/gpgme:=
|
||||
dev-libs/libassuan:=
|
||||
)
|
||||
lz4? ( app-arch/lz4:= )
|
||||
lzo? ( dev-libs/lzo:2 )
|
||||
nls? ( virtual/libintl )
|
||||
rsync? ( net-libs/librsync:= )
|
||||
sftp? ( net-libs/libssh:= )
|
||||
whirlpool? ( app-crypt/rhash:= )
|
||||
xattr? ( sys-apps/attr )
|
||||
"
|
||||
|
||||
DEPEND="${RDEPEND}"
|
||||
|
||||
BDEPEND="
|
||||
doc? ( app-text/doxygen )
|
||||
nls? ( sys-devel/gettext )
|
||||
"
|
||||
# Bug #862025 - upstream has a different numbering scheme for libdar
|
||||
QA_PKGCONFIG_VERSION=""
|
||||
|
||||
src_configure() {
|
||||
# configure.ac is totally funked up regarding the AC_ARG_ENABLE logic.
|
||||
# For example "--enable-dar-static" causes configure to DISABLE static
|
||||
# builds of dar.
|
||||
# Do _not_ use $(use_enable) until you have verified that the logic has
|
||||
# been fixed by upstream.
|
||||
local myconf=(
|
||||
--disable-dar-static
|
||||
--disable-python-binding
|
||||
--disable-upx
|
||||
$(usev !argon2 --disable-libargon2-linking)
|
||||
$(usev !curl --disable-libcurl-linking)
|
||||
$(usev dar32 --enable-mode=32)
|
||||
$(usev dar64 --enable-mode=64)
|
||||
$(usev !doc --disable-build-html)
|
||||
$(usev !gcrypt --disable-libgcrypt-linking)
|
||||
$(usev !gpg --disable-gpgme-linking)
|
||||
$(usev !lz4 --disable-liblz4-linking)
|
||||
$(usev !lzo --disable-liblzo2-linking)
|
||||
$(usev !nls --disable-nls)
|
||||
$(usev !rsync --disable-librsync-linking)
|
||||
$(usev !sftp --disable-libssh-linking)
|
||||
$(usev !whirlpool --disable-librhash-linking)
|
||||
$(usev !xattr --disable-ea-support)
|
||||
)
|
||||
|
||||
# Bug 103741
|
||||
filter-flags -fomit-frame-pointer
|
||||
|
||||
econf "${myconf[@]}"
|
||||
}
|
||||
|
||||
src_install() {
|
||||
emake DESTDIR="${D}" pkgdatadir="${EPREFIX}"/usr/share/doc/${PF}/html install
|
||||
|
||||
einstalldocs
|
||||
|
||||
find "${ED}" -name "*.la" -delete || die
|
||||
|
||||
# Bug 729150
|
||||
rm "${ED}/usr/share/doc/${PF}/html/samples/MyBackup.sh.tar.gz" || die
|
||||
}
|
||||
@@ -20,6 +20,8 @@ operations, including with ssh.
|
||||
<flag name="gcrypt">Enables strong encryption support</flag>
|
||||
<flag name="gpg">Enables usage of asymmetric encryption algorithms</flag>
|
||||
<flag name="rsync">Enables linking with <pkg>net-libs/librsync</pkg> for delta compression support</flag>
|
||||
<flag name="sftp">Enables SFTP support with <pkg>net-libs/libssh</pkg></flag>
|
||||
<flag name="whirlpool">Enables Whirlpool hashing support with <pkg>app-crypt/rhash</pkg></flag>
|
||||
</use>
|
||||
<upstream>
|
||||
<remote-id type="sourceforge">dar</remote-id>
|
||||
|
||||
Reference in New Issue
Block a user