aboutsummaryrefslogtreecommitdiff
blob: 250e9d667eea9aa0c0df9d66b091ad67c83906c1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
# Copyright 2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2

EAPI=8

inherit cmake systemd

DESCRIPTION="A reliable, low-latency, and anti-censorship virtual private network"
HOMEPAGE="https://github.com/lanthora/candy"
SRC_URI="https://github.com/lanthora/candy/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"

LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64"
IUSE="+libcandy"

DEPEND="
	dev-libs/uriparser
	dev-libs/libconfig
	dev-libs/poco
	dev-libs/openssl
	dev-libs/spdlog
"
RDEPEND="${DEPEND}"

src_configure(){
	local mycmakeargs=(
		-DCANDY_DEVEL=$(usex libcandy true false)
	)
	cmake_src_configure
}

src_install(){
	cmake_src_install
	default

	insinto /etc
	doins candy.conf
	fperms 0644 /etc/candy.conf

	systemd_dounit candy.service
	systemd_dounit candy@.service
}