mirror of
https://github.com/pentoo/pentoo-overlay
synced 2025-12-09 18:02:56 +01:00
Package-Manager: Portage-2.3.89, Repoman-2.3.20 Signed-off-by: Yury Martynov <email@linxon.ru>
38 lines
768 B
Bash
38 lines
768 B
Bash
# Copyright 1999-2020 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=7
|
|
|
|
inherit toolchain-funcs
|
|
|
|
DESCRIPTION="An easy to use OSI-Layer5 switching daemon"
|
|
HOMEPAGE="https://c-skills.blogspot.com/"
|
|
|
|
HASH_COMMIT="28acbad7dcac95d6352d06ddf81765a84f2044f9" # 20191108
|
|
SRC_URI="https://github.com/stealth/sshttp/archive/${HASH_COMMIT}.tar.gz -> ${P}.tar.gz"
|
|
|
|
LICENSE="BSD"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~x86"
|
|
|
|
DEPEND="net-libs/libpcap"
|
|
RDEPEND="${DEPEND}"
|
|
|
|
S="${WORKDIR}/${PN}-${HASH_COMMIT}"
|
|
|
|
src_prepare() {
|
|
default
|
|
sed -i "/^CFLAGS/s|-O2|${CFLAGS}|g" Makefile || die
|
|
}
|
|
|
|
src_compile() {
|
|
emake CXX=$(tc-getCXX) LD=$(tc-getLD)
|
|
}
|
|
|
|
src_install() {
|
|
dobin sshttpd
|
|
dodoc *.md Changelog HINTS
|
|
|
|
exeinto /usr/share/${PN}
|
|
doexe nf-setup
|
|
}
|