commit f8bd6812303873bd215b448ffbe432d6b7f3d344
parent 86739ed6836e9fce5996cdc7087bfdd0f57849ac
Author: parazyd <parazyd@dyne.org>
Date: Sat, 12 Nov 2016 23:28:12 +0100
app-crypt/opmsg: Add 1.75
Diffstat:
5 files changed, 50 insertions(+), 3 deletions(-)
diff --git a/app-crypt/opmsg/Manifest b/app-crypt/opmsg/Manifest
@@ -0,0 +1 @@
+DIST rel-1.75s.tar.gz 65425 SHA256 2ca9bc3dce2a76c29b0f63f904f1f1a62778338cc93cb5ae301e97ba73b7d12f SHA512 09d2ddcbed26281dc30733d5d44d74b4474f4bcd1972f8bd47eb10eb7478d34df64348ff373e58582cdb5a93fb2d8514d5c711d4b234845768f659df17620dc4 WHIRLPOOL e35eab6e10930723f406ca0831ada8398f0fe889827e3a5c917894ed955358cd3c09da89947c15c22f7ddbbb92b8f9c1a7681a855b70db6e44b398fd9c562b2c
diff --git a/app-crypt/opmsg/files/opmsg-9999-libressl.patch b/app-crypt/opmsg/files/opmsg-libressl.patch
diff --git a/app-crypt/opmsg/files/opmsg-9999-static.patch b/app-crypt/opmsg/files/opmsg-static.patch
diff --git a/app-crypt/opmsg/opmsg-1.75.ebuild b/app-crypt/opmsg/opmsg-1.75.ebuild
@@ -0,0 +1,46 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+inherit eutils
+
+DESCRIPTION="opmsg message encryption"
+HOMEPAGE="https://github.com/stealth/opmsg"
+SRC_URI="https://github.com/stealth/opmsg/archive/rel-${PV}s.tar.gz"
+
+LICENSE="GPL-3+"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="libressl contrib static"
+
+DEPEND="
+ !libressl? ( dev-libs/openssl )
+ libressl? ( dev-libs/libressl )
+"
+RDEPEND="${DEPEND}"
+
+S="${WORKDIR}/${PN}-rel-${PV}s"
+
+
+src_prepare() {
+ default
+ use libressl && epatch "${FILESDIR}/${PN}-libressl.patch"
+ use static && epatch "${FILESDIR}/${PN}-static.patch"
+}
+
+src_compile() {
+ cd src
+ emake
+ use contrib && emake contrib
+ cd -
+}
+
+src_install() {
+ dobin src/opmsg
+ use contrib && {
+ dobin src/opmux
+ dobin src/opcoin
+ }
+}
diff --git a/app-crypt/opmsg/opmsg-9999.ebuild b/app-crypt/opmsg/opmsg-9999.ebuild
@@ -12,7 +12,7 @@ EGIT_REPO_URI="https://github.com/stealth/opmsg.git"
LICENSE="GPL-3+"
SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS=""
IUSE="libressl contrib static"
DEPEND="
@@ -24,8 +24,8 @@ RDEPEND="${DEPEND}"
src_prepare() {
default
- use libressl && epatch "${FILESDIR}/${P}-libressl.patch"
- use static && epatch "${FILESDIR}/${P}-static.patch"
+ use libressl && epatch "${FILESDIR}/${PN}-libressl.patch"
+ use static && epatch "${FILESDIR}/${PN}-static.patch"
}
src_compile() {