mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-08-24 18:58:08 -07:00
net-misc/sslh: add 2.1.2
Closes: https://bugs.gentoo.org/931892 Signed-off-by: Craig Andrews <candrews@gentoo.org>
This commit is contained in:
@@ -1,2 +1,3 @@
|
||||
DIST sslh-1.22c.tar.gz 146954 BLAKE2B 1870623634b625bb98787be27444403555262f8a9782573c9ed116e65df9e4518c062ef2e2a40fe7bb550f811518ccc2149a23c36deef6c156911b4c42e27473 SHA512 f13560fbe74b5b08e9b360985d6afd27f2c7e157d220919162e354f3711b90f43bb81f9bda341fb21fef2651acd488f52e9a04dc2da28861540f579e7ca798c4
|
||||
DIST sslh-2.1.1.tar.gz 212402 BLAKE2B fbde666b49e30950ff4c5c2f6aa563e538fd070ed0edecf2c19a85884379ea8a699488fd23e742c672656cc89b6911bdb764a0989f3b967ecc75aefe5634ea4b SHA512 f689394028ec25e16dd59a5f1aa4c18a760108f0acf23b4eb2ccf000dc09adf1428272c3e93f5b0012f9603076ab1408a3e1aca98adb3e69743d184cb898a9a4
|
||||
DIST sslh-2.1.2.tar.gz 214091 BLAKE2B 220841c7105032b02351b6073ffd994a22efb0241ebec96704bd2ec534197a19c366d925ebf07a494773e89d83df5f284567e34d419b887edb73545523abb71e SHA512 4f0b3c61e6153b912b11c49baba2df1a9df6732ea9fcdee628bf02043efc1b6505ac97eec97740c67d09f7d58a1bb79e0e06d949cb7fabcffa1fb91733372631
|
||||
|
||||
84
net-misc/sslh/sslh-2.1.2.ebuild
Normal file
84
net-misc/sslh/sslh-2.1.2.ebuild
Normal file
@@ -0,0 +1,84 @@
|
||||
# Copyright 1999-2024 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI="7"
|
||||
|
||||
inherit flag-o-matic systemd toolchain-funcs
|
||||
|
||||
DESCRIPTION="Port multiplexer - accept both HTTPS and SSH connections on the same port"
|
||||
HOMEPAGE="https://www.rutschle.net/tech/sslh/README.html"
|
||||
if [[ ${PV} == "9999" ]] ; then
|
||||
EGIT_REPO_URI="https://github.com/yrutschle/sslh.git"
|
||||
inherit git-r3
|
||||
else
|
||||
KEYWORDS="amd64 ~arm ~m68k ~mips ~s390 x86"
|
||||
SRC_URI="https://github.com/yrutschle/sslh/archive/v${PV}.tar.gz -> ${P}.tar.gz"
|
||||
S=${WORKDIR}/${P}
|
||||
fi
|
||||
|
||||
LICENSE="GPL-2"
|
||||
SLOT="0"
|
||||
IUSE="caps libev systemd tcpd"
|
||||
|
||||
RDEPEND="caps? ( sys-libs/libcap )
|
||||
dev-libs/libpcre2:=
|
||||
systemd? ( sys-apps/systemd:= )
|
||||
tcpd? ( sys-apps/tcp-wrappers )
|
||||
dev-libs/libconfig:=
|
||||
libev? ( dev-libs/libev )
|
||||
>=dev-libs/libconfig-1.5:="
|
||||
DEPEND="${RDEPEND}
|
||||
dev-lang/perl"
|
||||
|
||||
RESTRICT="test"
|
||||
|
||||
src_prepare() {
|
||||
sed -i \
|
||||
-e '/MAN/s:| gzip -9 - >:>:' \
|
||||
-e '/MAN=sslh.8.gz/s:.gz::' \
|
||||
Makefile.in || die
|
||||
default
|
||||
}
|
||||
|
||||
src_compile() {
|
||||
append-lfs-flags
|
||||
|
||||
# On older versions of GCC, the default gnu89 variant
|
||||
# will reject within-for-loop initializers, bug #595426
|
||||
# Furthermore, we need to use the gnu variant (gnu99) instead
|
||||
# of the ISO (c99) variant, as we want the __USE_XOPEN2K macro
|
||||
# to be defined.
|
||||
append-cflags -std=gnu99
|
||||
|
||||
emake \
|
||||
CC="$(tc-getCC)" \
|
||||
USELIBCAP=$(usev caps) \
|
||||
USELIBEV=$(usev libev) \
|
||||
USELIBWRAP=$(usev tcpd) \
|
||||
USESYSTEMD=$(usev systemd)
|
||||
}
|
||||
|
||||
src_install() {
|
||||
dosbin sslh-{fork,select}
|
||||
if use libev; then
|
||||
dosbin sslh-ev
|
||||
dosym sslh-fork /usr/sbin/sslh
|
||||
else
|
||||
dosym sslh-fork /usr/sbin/sslh
|
||||
fi
|
||||
|
||||
doman ${PN}.8
|
||||
|
||||
dodoc ChangeLog README.md
|
||||
|
||||
newinitd "${FILESDIR}"/sslh.init.d-3 sslh
|
||||
newconfd "${FILESDIR}"/sslh.conf.d-2 sslh
|
||||
|
||||
if use systemd; then
|
||||
# Gentoo puts the binaries in /usr/sbin, but upstream puts them in /usr/bin
|
||||
sed -i -e 's~/usr/bin/~/usr/sbin/~g' scripts/systemd.sslh.service || die
|
||||
systemd_newunit scripts/systemd.sslh.service sslh.service
|
||||
exeinto /usr/lib/systemd/system-generators/
|
||||
doexe systemd-sslh-generator
|
||||
fi
|
||||
}
|
||||
Reference in New Issue
Block a user