Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 767154 | Differences between
and this patch

Collapse All | Expand All

(-)dar-2.6.10.ebuild (-6 / +8 lines)
Lines 1-17 Link Here
1
# Copyright 1999-2020 Gentoo Authors
1
# Copyright 1999-2021 Gentoo Authors
2
# Distributed under the terms of the GNU General Public License v2
2
# Distributed under the terms of the GNU General Public License v2
3
3
4
EAPI=7
4
EAPI=7
5
inherit flag-o-matic
5
inherit flag-o-matic
6
6
7
DESCRIPTION="A full featured backup tool, aimed for disks"
7
DESCRIPTION="A fully featured backup tool, aimed for disks"
8
HOMEPAGE="http://dar.linux.free.fr/"
8
HOMEPAGE="http://dar.linux.free.fr/"
9
SRC_URI="mirror://sourceforge/dar/${P}.tar.gz"
9
SRC_URI="mirror://sourceforge/dar/${P}.tar.gz"
10
10
11
LICENSE="GPL-2"
11
LICENSE="GPL-2"
12
SLOT="0"
12
SLOT="0"
13
KEYWORDS="~amd64 ~ppc ~sparc ~x86 ~amd64-linux"
13
KEYWORDS="~amd64 ~ppc ~sparc ~x86"
14
IUSE="curl dar32 dar64 doc gcrypt gpg lzo nls static static-libs xattr"
14
IUSE="curl dar32 dar64 doc gcrypt gpg lzo nls rsync static static-libs xattr"
15
15
16
RESTRICT="test" # need to be run as root
16
RESTRICT="test" # need to be run as root
17
17
Lines 24-29 Link Here
24
		gcrypt? ( dev-libs/libgcrypt:0= )
24
		gcrypt? ( dev-libs/libgcrypt:0= )
25
		gpg? ( app-crypt/gpgme )
25
		gpg? ( app-crypt/gpgme )
26
		lzo? ( dev-libs/lzo:= )
26
		lzo? ( dev-libs/lzo:= )
27
		rsync? ( net-libs/librsync:= )
27
		xattr? ( sys-apps/attr:= )
28
		xattr? ( sys-apps/attr:= )
28
	)"
29
	)"
29
30
Lines 47-53 Link Here
47
"
48
"
48
49
49
REQUIRED_USE="?? ( dar32 dar64 )
50
REQUIRED_USE="?? ( dar32 dar64 )
50
		gpg? ( gcrypt )"
51
		gpg? ( gcrypt )
52
		static? ( !rsync )"
51
53
52
#PATCHES=(
54
#PATCHES=(
53
#)
55
#)
Lines 71-77 Link Here
71
		$(usex gpg '' --disable-gpgme-linking)
73
		$(usex gpg '' --disable-gpgme-linking)
72
		$(usex lzo '' --disable-liblzo2-linking)
74
		$(usex lzo '' --disable-liblzo2-linking)
73
		$(usex nls '' --disable-nls)
75
		$(usex nls '' --disable-nls)
74
		#$(usex rsync '' --disable-librsync-linking)
76
		$(usex rsync '' --disable-librsync-linking)
75
		$(usex xattr '' --disable-ea-support)
77
		$(usex xattr '' --disable-ea-support)
76
	)
78
	)
77
79

Return to bug 767154