diff options
author | Alexey Korepanov <kaikaikai@yandex.ru> | 2016-04-08 14:11:11 +0100 |
---|---|---|
committer | Anthony G. Basile <blueness@gentoo.org> | 2016-05-09 04:05:40 -0400 |
commit | c1ec77d2afed711a3c17daf35c18ba9e5a204c64 (patch) | |
tree | c9fe74b66cc2a3601cc127bcd9614c1da3ab7795 /net-misc | |
parent | net-libs/libpri: Version bump to 1.5.0 thanks to Oliver Jaksch. Closes bug #5... (diff) | |
download | gentoo-c1ec77d2afed711a3c17daf35c18ba9e5a204c64.tar.gz gentoo-c1ec77d2afed711a3c17daf35c18ba9e5a204c64.tar.bz2 gentoo-c1ec77d2afed711a3c17daf35c18ba9e5a204c64.zip |
net-misc/i2pd: change access permissions for config files
Diffstat (limited to 'net-misc')
-rw-r--r-- | net-misc/i2pd/i2pd-2.6.0-r3.ebuild | 90 |
1 files changed, 90 insertions, 0 deletions
diff --git a/net-misc/i2pd/i2pd-2.6.0-r3.ebuild b/net-misc/i2pd/i2pd-2.6.0-r3.ebuild new file mode 100644 index 000000000000..cd0526e1b3fe --- /dev/null +++ b/net-misc/i2pd/i2pd-2.6.0-r3.ebuild @@ -0,0 +1,90 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 +inherit eutils systemd user cmake-utils + +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="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~arm ~x86" +IUSE="cpu_flags_x86_aes i2p-hardening libressl pch static +upnp" + +RDEPEND="!static? ( >=dev-libs/boost-1.49[threads] + dev-libs/crypto++ + !libressl? ( dev-libs/openssl:0 ) + libressl? ( dev-libs/libressl ) + upnp? ( net-libs/miniupnpc ) + )" +DEPEND="${RDEPEND} + static? ( >=dev-libs/boost-1.49[static-libs,threads] + dev-libs/crypto++[static-libs] + !libressl? ( dev-libs/openssl:0[-bindist,static-libs] ) + libressl? ( dev-libs/libressl[static-libs] ) + upnp? ( net-libs/miniupnpc[static-libs] ) ) + i2p-hardening? ( >=sys-devel/gcc-4.7 ) + || ( >=sys-devel/gcc-4.7 >=sys-devel/clang-3.3 )" + +I2PD_USER="${I2PD_USER:-i2pd}" +I2PD_GROUP="${I2PD_GROUP:-i2pd}" + +CMAKE_USE_DIR="${S}/build" + +src_prepare() { + eapply "${FILESDIR}/${PN}-2.5.1-fix_installed_components.patch" + eapply_user +} + +src_configure() { + mycmakeargs=( + -DWITH_AESNI=$(usex cpu_flags_x86_aes ON OFF) + -DWITH_HARDENING=$(usex i2p-hardening ON OFF) + -DWITH_PCH=$(usex pch ON OFF) + -DWITH_STATIC=$(usex static ON OFF) + -DWITH_UPNP=$(usex upnp ON OFF) + -DWITH_LIBRARY=ON + -DWITH_BINARY=ON + ) + cmake-utils_src_configure +} + +src_install() { + cmake-utils_src_install + dodoc README.md + keepdir /var/lib/i2pd/ + insinto "/var/lib/i2pd" + doins -r "${S}/contrib/certificates" + dosym /etc/i2pd/subscriptions.txt /var/lib/i2pd/subscriptions.txt + fowners "${I2PD_USER}:${I2PD_GROUP}" /var/lib/i2pd/ + fperms 700 /var/lib/i2pd/ + dodir "/etc/${PN}" + insinto "/etc/${PN}" + doins "${S}/docs/${PN}.conf" + doins "${S}/debian/subscriptions.txt" + doins "${S}/debian/tunnels.conf" + dodir /usr/share/i2pd + newconfd "${FILESDIR}/${PN}-2.6.0-r2.confd" "${PN}" + newinitd "${FILESDIR}/${PN}-2.6.0-r2.initd" "${PN}" + systemd_newunit "${FILESDIR}/${PN}-2.6.0-r2.service" "${PN}.service" + doenvd "${FILESDIR}/99${PN}" + insinto /etc/logrotate.d + newins "${FILESDIR}/${PN}-2.5.0.logrotate" "${PN}" + + # grant i2pd group read and write access to config files + fowners "root:${I2PD_GROUP}" \ + /etc/i2pd/i2pd.conf \ + /etc/i2pd/tunnels.conf \ + /etc/i2pd/subscriptions.txt + fperms 660 \ + /etc/i2pd/i2pd.conf \ + /etc/i2pd/tunnels.conf \ + /etc/i2pd/subscriptions.txt +} + +pkg_setup() { + enewgroup "${I2PD_GROUP}" + enewuser "${I2PD_USER}" -1 -1 "/var/lib/run/${PN}" "${I2PD_GROUP}" +} |