Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 694628 | Differences between
and this patch

Collapse All | Expand All

(-)a/dev-libs/libmowgli/libmowgli-2.1.3-r1.ebuild (-1 / +28 lines)
Line 0 Link Here
0
- 
1
# Copyright 1999-2018 Gentoo Foundation
2
# Distributed under the terms of the GNU General Public License v2
3
4
EAPI=7
5
6
DESCRIPTION="Useful set of performance and usability-oriented extensions to C"
7
HOMEPAGE="https://github.com/atheme/libmowgli-2"
8
SRC_URI="https://github.com/atheme/libmowgli-2/archive/v${PV}.tar.gz -> ${P}.tar.gz"
9
10
LICENSE="BSD-2"
11
SLOT="2"
12
KEYWORDS="alpha amd64 arm hppa ~ia64 ~mips ppc ppc64 sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
13
IUSE="libressl ssl"
14
15
RDEPEND="ssl? (
16
	!libressl? ( dev-libs/openssl:0= )
17
	libressl? ( dev-libs/libressl:0= )
18
	)
19
	!~dev-libs/libmowgli-2.1.0" # Bug 629644
20
DEPEND="${RDEPEND}"
21
22
DOCS=( AUTHORS README doc/BOOST doc/design-concepts.txt )
23
S="${WORKDIR}/${PN}-2-${PV}"
24
25
src_configure() {
26
	econf \
27
		$(use_with ssl openssl)
28
}

Return to bug 694628