From efaa18f281a21f2b339827348cb796ecd6addeb0 Mon Sep 17 00:00:00 2001 From: Simone Scanzoni Date: Tue, 14 Aug 2018 19:27:47 +0200 Subject: net-vpn/logmein-hamachi: version bump, LICENSE update, ebuild cleanup Closes: https://bugs.gentoo.org/661688 Closes: https://github.com/gentoo/gentoo/pull/9298 Package-Manager: Portage-2.3.40, Repoman-2.3.9 --- .../logmein-hamachi-2.1.0.198.ebuild | 64 ++++++++++++++++++++++ 1 file changed, 64 insertions(+) create mode 100644 net-vpn/logmein-hamachi/logmein-hamachi-2.1.0.198.ebuild (limited to 'net-vpn/logmein-hamachi/logmein-hamachi-2.1.0.198.ebuild') diff --git a/net-vpn/logmein-hamachi/logmein-hamachi-2.1.0.198.ebuild b/net-vpn/logmein-hamachi/logmein-hamachi-2.1.0.198.ebuild new file mode 100644 index 000000000000..d5d603fe4559 --- /dev/null +++ b/net-vpn/logmein-hamachi/logmein-hamachi-2.1.0.198.ebuild @@ -0,0 +1,64 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 +inherit linux-info systemd + +DESCRIPTION="LogMeIn Hamachi VPN tunneling engine" +HOMEPAGE="https://www.vpn.net/" +SRC_URI="x86? ( https://www.vpn.net/installers/${P}-x86.tgz ) + amd64? ( https://www.vpn.net/installers/${P}-x64.tgz )" + +LICENSE="LogMeIn" +SLOT="0" +KEYWORDS="-* ~amd64 ~x86" +IUSE="" + +RDEPEND="!net-misc/hamachi" + +RESTRICT="mirror" + +QA_PREBUILT="/opt/${PN}/bin/hamachid" +QA_PRESTRIPPED="/opt/${PN}/bin/hamachid" +QA_WX_LOAD="/opt/${PN}/bin/hamachid" + +pkg_setup() { + einfo "Checking your kernel configuration for TUN/TAP support." + CONFIG_CHECK="~TUN" + check_extra_config +} + +src_unpack() { + unpack ${A} + mv "${P}-$(usex x86 x86 x64)" "${S}" || die +} + +src_install() { + into /opt/${PN} + dobin hamachid dnsup dnsdown + dosym ../../opt/${PN}/bin/hamachid /usr/bin/hamachi + + # Config and log directory + keepdir /var/lib/${PN} + + newconfd "${FILESDIR}"/${PN}.confd ${PN} + newinitd "${FILESDIR}"/${PN}.initd ${PN} + systemd_dounit "${FILESDIR}"/${PN}.service + + dodoc CHANGES README +} + +pkg_postinst() { + elog "LogMeIn Hamachi2 is installed." + elog "Consult the README file on how to configure your client." + elog "You can run the client 'hamachi' as root," + elog "or as a user if you add a newline terminated line:" + elog "Ipc.User " + elog "to the file '/var/lib/${PN}/h2-engine-override.cfg'" + elog "and restart the daemon with" + elog "/etc/init.d/${PN} restart" + elog "or:" + elog "systemctl restart ${PN}" + elog "To enable auto-login when the service starts set a nickname in" + elog "/etc/conf.d/${PN} (only supported using openRC)" +} -- cgit v1.2.3-65-gdbad