-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Ryan Qian <i@bitbili.net>
- Loading branch information
Showing
2 changed files
with
100 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,98 @@ | ||
# Copyright 2020-2023 Gentoo Authors | ||
# Distributed under the terms of the GNU General Public License v2 | ||
|
||
EAPI=8 | ||
inherit go systemd tmpfiles | ||
|
||
DESCRIPTION="Tailscale VPN client and CLI tools" | ||
HOMEPAGE="https://tailscale.com https://github.com/tailscale/tailscale" | ||
|
||
SRC_URI="https://github.com/tailscale/tailscale/archive/v${PV}.tar.gz -> ${P}.tar.gz | ||
https://github.com/bekcpear/gopkg-vendors/archive/refs/tags/vendor-${P}.tar.gz -> ${P}-vendor.tar.gz" | ||
|
||
LICENSE="Apache-2.0 BSD-2 BSD MIT" | ||
SLOT="0" | ||
KEYWORDS="~amd64 ~arm ~arm64 ~riscv ~x86" | ||
IUSE="derp tools" | ||
|
||
BDEPEND=">=dev-lang/go-1.22:=" | ||
|
||
# 'iptables' is no longer mandatory, | ||
# refer to https://github.com/tailscale/tailscale/issues/391 , | ||
# and https://github.com/tailscale/tailscale/commit/243ce6ccc1a3e032e3d4a014e7dd09a9379c3c42 | ||
RDEPEND=" | ||
derp? ( | ||
acct-user/derper | ||
acct-group/derper | ||
) | ||
" | ||
|
||
GO_SBIN="tailscaled" | ||
GO_TARGET_PKGS=" | ||
./cmd/tailscale | ||
./cmd/tailscaled | ||
" | ||
|
||
src_configure() { | ||
use derp && GO_TARGET_PKGS+=" ./cmd/derper" | ||
use tools && GO_TARGET_PKGS+=" ./cmd/derpprobe" | ||
|
||
. "$WORKDIR"/gopkg-vendors-vendor-$P/version.txt || die | ||
GO_LDFLAGS=" | ||
-X 'tailscale.com/version.longStamp=${VERSION_LONG}' | ||
-X 'tailscale.com/version.shortStamp=${VERSION_SHORT}' | ||
-X 'tailscale.com/version.gitCommitStamp=${VERSION_GIT_HASH}'" | ||
} | ||
|
||
src_install() { | ||
go_src_install | ||
|
||
exeinto /usr/libexec | ||
doexe "$ED"/usr/bin/tailscale | ||
rm "$ED"/usr/bin/tailscale || die | ||
newbin "$FILESDIR"/tailscale.sh tailscale | ||
|
||
keepdir /var/lib/${PN} | ||
fperms 0750 /var/lib/${PN} | ||
|
||
insinto /etc/default | ||
newins "${FILESDIR}"/tailscaled.defaults tailscaled | ||
|
||
newtmpfiles "${FILESDIR}"/${PN}.tmpfiles ${PN}.conf | ||
|
||
systemd_dounit cmd/tailscaled/tailscaled.service | ||
systemd_newunit "${FILESDIR}"/tailscaled-at.service tailscaled@.service | ||
|
||
# conf for fix, should be removed later | ||
exeinto /opt/bin | ||
newexe "${FILESDIR}"/fix-mis-configured-path.sh tailscaled.misconfiged.fix.sh | ||
sed -i '/ExecStartPre=/iExecStartPre=/opt/bin/tailscaled.misconfiged.fix.sh' \ | ||
"${D}$(systemd_get_systemunitdir)"/tailscaled.service \ | ||
"${D}$(systemd_get_systemunitdir)"/tailscaled@.service | ||
|
||
newinitd "${FILESDIR}"/${PN}d.initd ${PN}d | ||
|
||
if use derp; then | ||
insinto /etc/default | ||
newins "${FILESDIR}"/derper.defaults derper | ||
|
||
exeinto /usr/libexec | ||
doexe "${FILESDIR}"/derper-pre.sh | ||
|
||
systemd_dounit "${FILESDIR}"/derper.service | ||
systemd_install_serviced "${FILESDIR}"/derper.service.conf derper | ||
|
||
newinitd "${FILESDIR}"/derper.initd derper | ||
fi | ||
} | ||
|
||
pkg_preinst() { | ||
sed -i "s#@EPREFIX@#$EPREFIX#" "$ED"/usr/bin/tailscale || die | ||
sed -i "s#@EPREFIX@#$EPREFIX#" "$ED"/opt/bin/tailscaled.misconfiged.fix.sh || die | ||
} | ||
|
||
pkg_postinst() { | ||
tmpfiles_process ${PN}.conf | ||
|
||
ewarn "multiple instances support still exists problems, such as iptables/nftables rules." | ||
} |