blob: 4f410f2a5001ff2ecc1d5053cb4cc94fcc5561ef (
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
|
# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI="5"
DESCRIPTION="Near Field Communication (NFC) management daemon"
HOMEPAGE="https://01.org/linux-nfc/"
SRC_URI="mirror://kernel/linux/network/nfc/${P}.tar.xz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~arm ~x86"
IUSE="tools systemd"
RDEPEND=">=dev-libs/glib-2.28:2
dev-libs/libnl
systemd? ( sys-apps/systemd:0 )
>=sys-apps/dbus-1.2.24"
DEPEND="${RDEPEND}"
src_configure() {
econf $(use_enable systemd) $(use_enable tools)
}
src_install() {
default
# Patch for this has been sent upstream. Do it manually
# to avoid having to rebuild autotools. #580876
mv "${ED}"/usr/include/version.h "${ED}"/usr/include/near/ || die
newinitd "${FILESDIR}"/${PN}.rc ${PN}
newconfd "${FILESDIR}"/${PN}.confd ${PN}
}
|