blob: 7bbf4b083e362865a5c87420a84049f513b723e7 (
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
|
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="4"
DESCRIPTION="Name Service Switch module for resolving the local hostname"
HOMEPAGE="http://0pointer.de/lennart/projects/nss-myhostname/"
SRC_URI="http://0pointer.de/lennart/projects/${PN}/${P}.tar.gz"
LICENSE="LGPL-2.1+"
SLOT="0"
KEYWORDS="~alpha amd64 arm ~arm64 ~ia64 ppc ppc64 sparc x86"
IUSE=""
COMMON_DEPEND=""
RDEPEND="${COMMON_DEPEND}
!>=sys-apps/systemd-197"
DEPEND="${COMMON_DEPEND}"
src_prepare() {
# The documentation in doc/ is just the README file in other formats
sed -e 's:SUBDIRS *= *doc:SUBDIRS =:' -i Makefile.{am,in} ||
die "sed failed"
}
src_configure() {
econf --disable-lynx
}
pkg_postinst() {
elog "You must modify your name service switch lookup file to enable"
elog "nss-myhostname. To do so, add 'myhostname' to the hosts line in"
elog "/etc/nsswitch.conf"
elog
elog "An example hosts line looks like this:"
elog "hosts: files dns myhostname"
elog
}
|