logo

overlay

My (experimental) gentoo overlay
commit: a838c4b14159fd5c40757bcc42db482aad9f15c7
parent: 318c4bbd004667047cdeadbfc219c8c14ad0102b
Author: Haelwenn (lanodan) Monnier <contact@hacktivis.me>
Date:   Sun, 28 Oct 2018 06:49:58 +0100

net-libs/libasr: Add git-based ebuild

Diffstat:

Anet-libs/libasr/libasr-9999.ebuild27+++++++++++++++++++++++++++
1 file changed, 27 insertions(+), 0 deletions(-)

diff --git a/net-libs/libasr/libasr-9999.ebuild b/net-libs/libasr/libasr-9999.ebuild @@ -0,0 +1,27 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit git-r3 autotools + +DESCRIPTION="Async Resolver Library from OpenBSD/OpenSMTPD" +HOMEPAGE="https://github.com/OpenSMTPD/libasr" +SRC_URI="" + +EGIT_REPO_URI="${HOMEPAGE}.git" + +LICENSE="ISC BSD BSD-1 BSD-2 BSD-4" +SLOT="0" +KEYWORDS="" +IUSE="libressl" + +RDEPEND="libressl? ( dev-libs/libressl:= )" +DEPEND=" + ${RDEPEND} +" + +src_prepare() { + default + eautoreconf +}