mirror of
https://github.com/gryf/gryf-overlay.git
synced 2025-12-26 08:22:40 +01:00
Added profanity ebuild
This commit is contained in:
1
dev-libs/libmesode/Manifest
Normal file
1
dev-libs/libmesode/Manifest
Normal file
@@ -0,0 +1 @@
|
||||
EBUILD libmesode-9999.ebuild 946 BLAKE2B 0f90fc6a6757aa8b239dca0509454f67d14424a901a18e95b519c18879cd8b9ea561f496eefdd45aadb9656676e3fc3cb25cb5b6225d835f3feba21a119f0b33 SHA512 e0b2f9261807810e684e6091fb2d59b6f339bf13b399e7bac72a2b80f7b890aa297455822ba37ca6bf2940b5deb2f5925be9c7ac8fb95559ae67e70f72c9d47d
|
||||
50
dev-libs/libmesode/libmesode-9999.ebuild
Normal file
50
dev-libs/libmesode/libmesode-9999.ebuild
Normal file
@@ -0,0 +1,50 @@
|
||||
# Copyright 1999-2018 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=7
|
||||
|
||||
inherit autotools git-r3
|
||||
|
||||
DESCRIPTION="Fork of libstrophe for use with Profanity XMPP Client"
|
||||
HOMEPAGE="https://github.com/boothj5/libmesode"
|
||||
EGIT_REPO_URI="https://github.com/boothj5/${PN}.git"
|
||||
|
||||
LICENSE="|| ( MIT GPL-3 )"
|
||||
SLOT="0"
|
||||
KEYWORDS=""
|
||||
IUSE="doc examples libressl +ssl static-libs test"
|
||||
|
||||
RDEPEND="dev-libs/expat
|
||||
ssl? (
|
||||
!libressl? ( dev-libs/openssl:0= )
|
||||
libressl? ( dev-libs/libressl:0= )
|
||||
)"
|
||||
DEPEND="${RDEPEND}
|
||||
doc? ( app-doc/doxygen )"
|
||||
|
||||
src_prepare() {
|
||||
default
|
||||
eautoreconf
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
# shellcheck disable=SC2207
|
||||
local myeconf=(
|
||||
$(use_enable ssl tls)
|
||||
$(use_enable test static)
|
||||
$(use_enable static-libs static)
|
||||
)
|
||||
econf "${myeconf[@]}"
|
||||
}
|
||||
src_compile() {
|
||||
default
|
||||
if use doc; then
|
||||
doxygen || die
|
||||
HTML_DOCS=( docs/html/* )
|
||||
fi
|
||||
}
|
||||
|
||||
src_install() {
|
||||
default
|
||||
use examples && dodoc -r examples
|
||||
}
|
||||
Reference in New Issue
Block a user