mirror of
https://github.com/gentoo-mirror/guru.git
synced 2026-04-07 03:10:15 -04:00
Update done using: ``` git grep -l sys-libs/zlib sys-* | xargs sed -i -e s@sys-libs/zlib@virtual/zlib@g git grep -l virtual/zlib-ng sys-* | xargs sed -i -e s@virtual/zlib-ng@sys-libs/zlib-ng@g git diff --name-only | xargs copybump git diff --name-only | xargs grep -l PYTHON_COMPAT | xargs gpy-impl -@dead pkgcheck scan --commits -c SourcingCheck,VisibilityCheck --exit error ``` Signed-off-by: Paul Zander <negril.nx+gentoo@gmail.com>
68 lines
1.4 KiB
Bash
68 lines
1.4 KiB
Bash
# Copyright 2022-2025 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
inherit cmake
|
|
|
|
COMMIT="b483a59093460861f9a124eb8639268ace69d9cc"
|
|
I2PD_COMMIT="80080fd8f5df5c8c07df044458eedbf8fbbbe86c" # keep in sync with bundled version
|
|
DESCRIPTION="Some useful tools for I2P"
|
|
HOMEPAGE="https://github.com/PurpleI2P/i2pd-tools"
|
|
SRC_URI="
|
|
https://github.com/PurpleI2P/${PN}/archive/${COMMIT}.tar.gz -> ${P}.tar.gz
|
|
https://github.com/PurpleI2P/i2pd/archive/${I2PD_COMMIT}.tar.gz -> i2pd-${I2PD_COMMIT:0:7}.tar.gz
|
|
"
|
|
S="${WORKDIR}/${PN}-${COMMIT}"
|
|
|
|
LICENSE="BSD"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64"
|
|
IUSE="cpu_flags_x86_aes"
|
|
|
|
DEPEND="
|
|
dev-libs/boost:=
|
|
dev-libs/openssl:=
|
|
virtual/zlib:=
|
|
"
|
|
RDEPEND="${DEPEND}"
|
|
|
|
src_unpack() {
|
|
default
|
|
|
|
rmdir "${S}/i2pd" || die
|
|
mv "${WORKDIR}"/i2pd-${I2PD_COMMIT} "${S}"/i2pd || die
|
|
}
|
|
|
|
src_configure() {
|
|
local mycmakeargs=(
|
|
-DWITH_LIBRARY=OFF
|
|
-DWITH_BINARY=OFF
|
|
-DCMAKE_SKIP_RPATH=ON
|
|
)
|
|
cmake_src_configure
|
|
}
|
|
|
|
src_install() {
|
|
local -a binaries
|
|
|
|
# extracted from Makefile
|
|
mv "${BUILD_DIR}"/{autoconf_i2pd,autoconf} || die
|
|
binaries=(
|
|
vain keygen keyinfo famtool routerinfo regaddr regaddr_3ld
|
|
i2pbase64 offlinekeys b33address regaddralias x25519 verifyhost
|
|
autoconf
|
|
)
|
|
|
|
for bin in "${binaries[@]}"; do
|
|
newbin "${BUILD_DIR}/${bin}" "i2pd-${bin}"
|
|
done
|
|
|
|
einstalldocs
|
|
}
|
|
|
|
pkg_postinst() {
|
|
elog "All binaries are prefixed with 'i2pd-' to avoid file collisions,"
|
|
elog "e.g. 'vain' becomes 'i2pd-vain'."
|
|
}
|