blob: 78daab8676aa7524e315f9d5b6728d53ff170969 (
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
44
45
46
47
48
49
50
51
52
|
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit systemd tmpfiles
DESCRIPTION="musl-nscd is an implementation of the NSCD protocol for the musl libc"
HOMEPAGE="https://github.com/pikhq/musl-nscd"
if [[ ${PV} == "9999" ]] ; then
inherit git-r3
EGIT_REPO_URI="https://github.com/pikhq/musl-nscd"
EGIT_BRANCH=master
else
SRC_URI="https://github.com/pikhq/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
KEYWORDS="~amd64 ~x86"
fi
LICENSE="MIT"
SLOT="0"
IUSE="minimal"
DEPEND="
!sys-libs/glibc
!sys-libs/uclibc"
src_prepare() {
eapply_user
sed -i '/LDFLAGS_AUTO=-s/d' configure || die 'Cannot patch configure file'
}
src_install() {
if use minimal; then
emake DESTDIR="${D}" install-headers
else
emake DESTDIR="${D}" install
newinitd "${FILESDIR}"/nscd.initd nscd
systemd_dounit "${FILESDIR}"/nscd.service
newtmpfiles "${FILESDIR}"/nscd.tmpfilesd nscd.conf
dodoc README
fi
}
pkg_postinst() {
if ! use minimal; then
tmpfiles_process nscd.conf
fi
}
|