mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-09-24 04:59:14 -07:00
net-proxy/shadowsocks-libev: drop 3.3.5-r1, EAPI=7--
Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
This commit is contained in:
@@ -1,85 +0,0 @@
|
||||
# Copyright 1999-2025 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=7
|
||||
|
||||
MY_PV="v${PV}"
|
||||
inherit autotools systemd
|
||||
|
||||
DESCRIPTION="A lightweight secured SOCKS5 proxy for embedded devices and low end boxes"
|
||||
HOMEPAGE="https://github.com/shadowsocks/shadowsocks-libev"
|
||||
|
||||
#repack with git submodule populated: libbloom, libcork, libipset
|
||||
#SRC_URI="https://dev.gentoo.org/~dlan/distfiles/${P}.tar.xz"
|
||||
|
||||
SRC_URI="https://github.com/shadowsocks/${PN}/archive/${MY_PV}.tar.gz -> ${P}.tar.gz"
|
||||
|
||||
LICENSE="GPL-3+"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~arm ~arm64 ~riscv ~x86"
|
||||
IUSE="debug doc"
|
||||
|
||||
RDEPEND="net-libs/mbedtls:0=
|
||||
>=net-libs/libbloom-1.6
|
||||
net-libs/libcork
|
||||
net-libs/libcorkipset
|
||||
>=dev-libs/libsodium-1.0.8:=
|
||||
dev-libs/libev
|
||||
net-dns/c-ares
|
||||
dev-libs/libpcre
|
||||
"
|
||||
DEPEND="${RDEPEND}
|
||||
sys-kernel/linux-headers
|
||||
doc? (
|
||||
app-text/asciidoc
|
||||
app-text/xmlto
|
||||
)
|
||||
"
|
||||
|
||||
src_prepare() {
|
||||
sed -i -e 's|AC_CONFIG_FILES(\[libbloom/Makefile libcork/Makefile libipset/Makefile\])||' \
|
||||
configure.ac || die
|
||||
sed -i -e 's|-Werror||g' \
|
||||
configure.ac src/Makefile.am || die
|
||||
|
||||
default
|
||||
eautoreconf
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
local myconf="
|
||||
$(use_enable debug assert)
|
||||
--enable-system-shared-lib
|
||||
"
|
||||
use doc || myconf+="--disable-documentation"
|
||||
econf ${myconf}
|
||||
}
|
||||
|
||||
src_install() {
|
||||
default
|
||||
|
||||
find "${D}" -name '*.la' -type f -delete || die
|
||||
|
||||
insinto "/etc/${PN}"
|
||||
newins "${FILESDIR}/shadowsocks.json" shadowsocks.json
|
||||
|
||||
newinitd "${FILESDIR}/shadowsocks.initd" shadowsocks
|
||||
dosym shadowsocks /etc/init.d/shadowsocks.server
|
||||
dosym shadowsocks /etc/init.d/shadowsocks.client
|
||||
dosym shadowsocks /etc/init.d/shadowsocks.redir
|
||||
dosym shadowsocks /etc/init.d/shadowsocks.tunnel
|
||||
|
||||
dodoc -r acl
|
||||
|
||||
for i in debian/${PN}*.service; do
|
||||
systemd_newunit $i $(basename $i)
|
||||
done
|
||||
}
|
||||
|
||||
pkg_setup() {
|
||||
elog "You need to choose the mode"
|
||||
elog " server: rc-update add shadowsocks.server default"
|
||||
elog " client: rc-update add shadowsocks.client default"
|
||||
elog " redir: rc-update add shadowsocks.redir default"
|
||||
elog " tunnel: rc-update add shadowsocks.tunnel default"
|
||||
}
|
||||
Reference in New Issue
Block a user