summaryrefslogtreecommitdiff
path: root/net-dns/smartdns/smartdns-43.ebuild
blob: 1cb256b86f6b35124006df71c8a00417aabe5298 (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
# Copyright 2022-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2

EAPI=8

inherit systemd
DESCRIPTION="A local DNS server returns the fastest access results"
HOMEPAGE="https://github.com/pymumu/smartdns"
SRC_URI="https://github.com/pymumu/smartdns/archive/refs/tags/Release${PV}.tar.gz -> ${P}.tar.gz"

LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64"

DEPEND="dev-libs/openssl:0="
RDEPEND="${DEPEND}"

S="${WORKDIR}/${PN}-Release${PV}"

src_prepare() {
	default
	sed -i -e "/install .*default /d" \
		-e "/install .*init.d /d" Makefile || die
}

src_install() {
	emake DESTDIR="${D}" \
		SYSTEMDSYSTEMUNITDIR="$(systemd_get_systemunitdir)" install

	newconfd "${FILESDIR}"/smartdns.confd smartdns
	newinitd "${FILESDIR}"/smartdns.initd smartdns
}