parlay

yet another gentoo overlay
git clone https://git.parazyd.org/parlay
Log | Files | Refs | README

commit 0869034a6b3fc5c89fc3d59bc46e1c6347bb0f32
parent 20ca7454464df0506b4915d905b365dbf3d42ae5
Author: parazyd <parazyd@dyne.org>
Date:   Sat, 13 May 2017 10:55:17 +0200

app-crypt/opmsg: Update to 1.76

Diffstat:
Mapp-crypt/opmsg/Manifest | 2+-
Dapp-crypt/opmsg/opmsg-1.75.ebuild | 45---------------------------------------------
Aapp-crypt/opmsg/opmsg-1.76.ebuild | 45+++++++++++++++++++++++++++++++++++++++++++++
Mapp-crypt/opmsg/opmsg-9999.ebuild | 6+++---
4 files changed, 49 insertions(+), 49 deletions(-)

diff --git a/app-crypt/opmsg/Manifest b/app-crypt/opmsg/Manifest @@ -1 +1 @@ -DIST rel-1.75s.tar.gz 65425 SHA256 2ca9bc3dce2a76c29b0f63f904f1f1a62778338cc93cb5ae301e97ba73b7d12f SHA512 09d2ddcbed26281dc30733d5d44d74b4474f4bcd1972f8bd47eb10eb7478d34df64348ff373e58582cdb5a93fb2d8514d5c711d4b234845768f659df17620dc4 WHIRLPOOL e35eab6e10930723f406ca0831ada8398f0fe889827e3a5c917894ed955358cd3c09da89947c15c22f7ddbbb92b8f9c1a7681a855b70db6e44b398fd9c562b2c +DIST rel-1.76s.tar.gz 66107 SHA256 1af1495cba67ad177025a89df522745d33898c6331726157ef349cec5b79eec8 SHA512 b2605d73295722a9d66b9add60f7d4c765bef5abc45bcddf77239b590fda54b84ff79c8e7cf64749b90d349809311a3bcb453a2deec2bb785a2c2fde2c58d85b WHIRLPOOL d2d28dcb44cfd7bd0855d858f8c7f8f0e925e0b2efff11284de2d02db38c4448e7eb600c40abc7f917c48c56d5ab22715609f209836a04a390d5a281de1e1704 diff --git a/app-crypt/opmsg/opmsg-1.75.ebuild b/app-crypt/opmsg/opmsg-1.75.ebuild @@ -1,45 +0,0 @@ -# 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:0 ) - 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-1.76.ebuild b/app-crypt/opmsg/opmsg-1.76.ebuild @@ -0,0 +1,45 @@ +# 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 tools static" + +DEPEND=" + !libressl? ( dev-libs/openssl:0 ) + 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 tools && emake contrib + cd - +} + +src_install() { + dobin src/opmsg + use tools && { + dobin src/opmux + dobin src/opcoin + } +} diff --git a/app-crypt/opmsg/opmsg-9999.ebuild b/app-crypt/opmsg/opmsg-9999.ebuild @@ -13,7 +13,7 @@ EGIT_REPO_URI="https://github.com/stealth/opmsg.git" LICENSE="GPL-3+" SLOT="0" KEYWORDS="" -IUSE="libressl contrib static" +IUSE="libressl tools static" DEPEND=" !libressl? ( dev-libs/openssl:0 ) @@ -30,13 +30,13 @@ src_prepare() { src_compile() { cd src emake - use contrib && emake contrib + use tools && emake contrib cd - } src_install() { dobin src/opmsg - use contrib && { + use tools && { dobin src/opmux dobin src/opcoin }