blob: 222b9f1cf5368cddf1fda956a8a75098d5c32108 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit flag-o-matic
DESCRIPTION="Network access framework for IPv4/IPv6 written in C++"
HOMEPAGE="https://gobby.github.io/"
SRC_URI="https://github.com/gobby/${PN}/releases/download/v${PV}/${P}.tar.gz"
LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="amd64 ~arm ~hppa ppc x86"
IUSE="nls"
BDEPEND="
virtual/pkgconfig
nls? ( sys-devel/gettext )
"
RDEPEND="
dev-libs/libsigc++:2
>=net-libs/gnutls-1.2.10:=
"
DEPEND="${RDEPEND}"
DOCS=( AUTHORS ChangeLog NEWS README )
PATCHES=(
"${FILESDIR}/${P}-gnutls-3.4.patch"
)
src_configure() {
append-cxxflags -std=c++11
econf \
--disable-static \
$(use_enable nls)
}
src_install() {
default
find "${ED}" -name '*.la' -delete || die
}
|