blob: 738d126edafe50402ec7be101bb38af7553fc431 (
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
|
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit autotools
DESCRIPTION="General Stream I/O"
HOMEPAGE="https://sourceforge.net/projects/ser2net"
SRC_URI="https://downloads.sourceforge.net/ser2net/${P}.tar.gz"
LICENSE="GPL-2 LGPL-2.1"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="debug tcpd"
DEPEND="
tcpd? ( sys-apps/tcp-wrappers )
"
RDEPEND="${DEPEND}"
# Test suite requires a kernel module
RESTRICT="test"
PATCHES=(
"${FILESDIR}/${PN}-2.8.5-install-dir.patch"
)
src_prepare() {
default
eautoreconf
}
src_configure() {
econf \
--with-file-stdio \
--without-link-ssl-with-main \
--with-uucp-locking \
--with-flock-locking \
--without-broken-pselect \
--with-pthreads \
--without-glib \
--without-cplusplus \
--without-python \
--without-go \
--without-swig \
--without-all-gensios \
--without-moduleinstall \
--with-net=yes \
--with-udp=yes \
--with-sctp=no \
--with-stdio=yes \
--with-pty=yes \
--with-serialdev=yes \
--with-telnet=yes \
--without-tcl \
--without-openipmi \
--without-ipmisol \
--without-mdns \
--without-dnssd \
--without-alsa \
--without-winsound \
--without-portaudio \
--without-certauth \
--without-udev \
--without-ssl \
--enable-doc \
--disable-internal-trace \
$(use_with tcpd tcp-wrappers) \
$(use_enable debug)
}
src_install() {
default
find "${ED}" -type f -name '*.la' -delete || die
}
|