summaryrefslogtreecommitdiff
path: root/dev-vcs
diff options
context:
space:
mode:
Diffstat (limited to 'dev-vcs')
-rw-r--r--dev-vcs/git-crypt/Manifest1
-rw-r--r--dev-vcs/git-crypt/git-crypt-0.8.0.ebuild32
2 files changed, 33 insertions, 0 deletions
diff --git a/dev-vcs/git-crypt/Manifest b/dev-vcs/git-crypt/Manifest
index 67eb27b5cce9..e6a87d1db461 100644
--- a/dev-vcs/git-crypt/Manifest
+++ b/dev-vcs/git-crypt/Manifest
@@ -1 +1,2 @@
DIST git-crypt-0.7.0.tar.gz 57621 BLAKE2B 3307420f2ddeb6742ea53b8e58351dfa68e34e8d83cf6eada626fc9778387c356cd38cfa29f70729ebe39fb9acb9388e489487be7839e40d0a4a47a1b12f4ece SHA512 88eb730f0f0b4622c1a3ce64c62fa97a9a4da0716f4cce86fad8d700e2cb248dae8fc9e92996448564903564dbcddaa1f87201cf7ebc77144660f3044ae92904
+DIST git-crypt-0.8.0.tar.gz 57457 BLAKE2B 299ff66200831f84f01d53d7808610fefdeb59b8e85e61afcaaf470324fa63c2d6e35b60f05f79bd0377a6121318f4c0e1d6a16b552aec800d1acbd3a2edd6e9 SHA512 3167a53176180b914be2105f64cf097966e2da67c2c2394ceb4b56bf01bcbc7dcda9b2c9bc471ae82d55ba482dc8996e8063f332b4f088e347c17666a4b9adcb
diff --git a/dev-vcs/git-crypt/git-crypt-0.8.0.ebuild b/dev-vcs/git-crypt/git-crypt-0.8.0.ebuild
new file mode 100644
index 000000000000..879a2992248a
--- /dev/null
+++ b/dev-vcs/git-crypt/git-crypt-0.8.0.ebuild
@@ -0,0 +1,32 @@
+# Copyright 1999-2025 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit toolchain-funcs
+
+DESCRIPTION="Transparent file encryption in git"
+HOMEPAGE="https://www.agwa.name/projects/git-crypt/"
+SRC_URI="https://www.agwa.name/projects/git-crypt/downloads/${P}.tar.gz"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+RDEPEND="
+ dev-libs/openssl:=
+ dev-vcs/git
+"
+DEPEND="${RDEPEND}"
+BDEPEND="dev-libs/libxslt"
+
+src_configure() {
+ tc-export CXX
+
+ # bug #689180
+ export ENABLE_MAN=yes
+}
+
+src_install() {
+ emake DESTDIR="${D}" PREFIX="${EPREFIX}/usr" install
+}