mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-09-24 04:59:14 -07:00
net-vpn/i2pd: add 2.46.1
Signed-off-by: Spencer M.P <smp@nandre.com> Closes: https://github.com/gentoo/gentoo/pull/29735 Closes: https://github.com/gentoo/gentoo/pull/29585 Signed-off-by: Joonas Niilola <juippis@gentoo.org>
This commit is contained in:
committed by
Joonas Niilola
parent
809e34279c
commit
68010d8de5
@@ -1,2 +1,3 @@
|
||||
DIST i2pd-2.43.0.tar.gz 638031 BLAKE2B 5e954fb62198a229fc8de9ca48655a67e8e9a0eabfa7f31dcaaaf42149239565968f16825eb25b202b6a5754938ce82d28cd2631e085dfa358bcd27ced089bd5 SHA512 7247850cd47cccc540346b4a1becc6dba5f40bcb333cd722e9fc59fd8b0beddee700376829d29add05cea6b84bb34303ed37e01914a1a41cf8cd94fe5c826e4a
|
||||
DIST i2pd-2.44.0.tar.gz 648523 BLAKE2B f9b29da82c943d070c09ed3ee78ceb7759c015da8a2da19c24cbf2d9841c7869920cbafd6212ada2e285b8b263d1a719220ba9dabb20807ccb78d2576383d167 SHA512 8760fb8a501ee75ede0ec29d3e9f39efec3bc91490810b39ac4879dbc073239e779e179c0f44bc43ba31fa0b786fd652d8b6feda415731e8fc3f4c0781400e1e
|
||||
DIST i2pd-2.46.1.tar.gz 644777 BLAKE2B 4973f595a162adb5d26d5c47f5b290476147e7159c6409648a501377a52823d49581f36d620502beaf741086df9f52d543dd1b173690d2ed24b327c53037ced5 SHA512 31fc39cd506775ed1e16ec0ab7dd21cf2a54575ccf797c3edb34b59733ee5d9eeaa34efd86e088040a7ccdb2e13917630e5a6aa4cbe3906786200b42ce763fa9
|
||||
|
||||
80
net-vpn/i2pd/i2pd-2.46.1.ebuild
Normal file
80
net-vpn/i2pd/i2pd-2.46.1.ebuild
Normal file
@@ -0,0 +1,80 @@
|
||||
# Copyright 1999-2023 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
inherit cmake toolchain-funcs systemd
|
||||
|
||||
DESCRIPTION="A C++ daemon for accessing the I2P anonymous network"
|
||||
HOMEPAGE="https://github.com/PurpleI2P/i2pd"
|
||||
SRC_URI="https://github.com/PurpleI2P/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
|
||||
|
||||
LICENSE="BSD"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~sparc ~x86"
|
||||
IUSE="cpu_flags_x86_aes cpu_flags_x86_avx i2p-hardening +upnp"
|
||||
|
||||
RDEPEND="
|
||||
acct-user/i2pd
|
||||
acct-group/i2pd
|
||||
dev-libs/boost:=
|
||||
dev-libs/openssl:0=[-bindist(-)]
|
||||
sys-libs/zlib
|
||||
upnp? ( net-libs/miniupnpc:= )"
|
||||
DEPEND="${RDEPEND}"
|
||||
|
||||
CMAKE_USE_DIR="${WORKDIR}/${P}/build"
|
||||
|
||||
DOCS=( ../README.md ../contrib/i2pd.conf ../contrib/tunnels.conf )
|
||||
|
||||
pkg_pretend() {
|
||||
if use i2p-hardening && ! tc-is-gcc; then
|
||||
die "i2p-hardening requires gcc"
|
||||
fi
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
local mycmakeargs=(
|
||||
-DWITH_AESNI=$(usex cpu_flags_x86_aes ON OFF)
|
||||
-DWITH_HARDENING=$(usex i2p-hardening ON OFF)
|
||||
-DWITH_STATIC=OFF
|
||||
-DWITH_UPNP=$(usex upnp ON OFF)
|
||||
-DWITH_LIBRARY=ON
|
||||
-DWITH_BINARY=ON
|
||||
)
|
||||
cmake_src_configure
|
||||
}
|
||||
|
||||
src_install() {
|
||||
cmake_src_install
|
||||
|
||||
# config
|
||||
insinto /etc/i2pd
|
||||
doins contrib/i2pd.conf
|
||||
doins contrib/tunnels.conf
|
||||
|
||||
# working directory
|
||||
insinto /var/lib/i2pd
|
||||
doins -r contrib/certificates
|
||||
|
||||
# add /var/lib/i2pd/certificates to CONFIG_PROTECT
|
||||
doenvd "${FILESDIR}/99i2pd"
|
||||
|
||||
# openrc and systemd daemon routines
|
||||
newconfd "${FILESDIR}/i2pd-2.6.0-r3.confd" i2pd
|
||||
newinitd "${FILESDIR}/i2pd-2.39.0.initd" i2pd
|
||||
systemd_newunit "${FILESDIR}/i2pd-2.38.0.service" i2pd.service
|
||||
|
||||
# logrotate
|
||||
insinto /etc/logrotate.d
|
||||
newins "${FILESDIR}/i2pd-2.38.0-r1.logrotate" i2pd
|
||||
}
|
||||
|
||||
pkg_postinst() {
|
||||
if [[ -f ${EROOT}/etc/i2pd/subscriptions.txt ]]; then
|
||||
ewarn
|
||||
ewarn "Configuration of the subscriptions has been moved from"
|
||||
ewarn "subscriptions.txt to i2pd.conf. We recommend updating"
|
||||
ewarn "i2pd.conf accordingly and deleting subscriptions.txt."
|
||||
fi
|
||||
}
|
||||
Reference in New Issue
Block a user