Diff git-crypt-0.6.0-r1 with a git-crypt-0.7.0

/usr/portage/dev-vcs/git-crypt/git-crypt-0.7.0.ebuild 2023-10-09 14:52:31.016368389 +0300
1 1
# Copyright 1999-2022 Gentoo Authors
2 2
# Distributed under the terms of the GNU General Public License v2
3 3

  
4
EAPI=7
4
EAPI=8
5 5

  
6
DESCRIPTION="transparent file encryption in git"
6
inherit flag-o-matic toolchain-funcs
7

  
8
DESCRIPTION="Transparent file encryption in git"
7 9
HOMEPAGE="https://www.agwa.name/projects/git-crypt/"
8
SRC_URI="https://github.com/AGWA/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
10
SRC_URI="https://www.agwa.name/projects/git-crypt/downloads/${P}.tar.gz"
9 11

  
10 12
LICENSE="GPL-3"
11 13
SLOT="0"
12
KEYWORDS="~amd64 ~x86"
14
KEYWORDS="amd64 ~x86"
13 15

  
14 16
RDEPEND="
15 17
	dev-libs/openssl:=
16 18
	dev-vcs/git
17 19
"
18 20
DEPEND="${RDEPEND}"
21
BDEPEND="dev-libs/libxslt"
22

  
23
src_configure() {
24
	# bug #805545, https://github.com/AGWA/git-crypt/issues/232
25
	append-cppflags -DOPENSSL_API_COMPAT=10101
26
	tc-export CXX
27

  
28
	# bug #689180
29
	export ENABLE_MAN=yes
30
}
19 31

  
20 32
src_install() {
21
	mkdir -p "${D}"/usr/bin || die
33
	dodir /usr/bin
22 34
	emake PREFIX="${D}"/usr install
23 35
}
Thank you!