aboutsummaryrefslogtreecommitdiff
blob: 0c5aa946dd41890b616f29c6c7a1c44f4d701707 (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
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2

EAPI="6"

inherit eutils git-r3

DESCRIPTION="Helper for Chromecast devices to be used in Logitech Media Server"
HOMEPAGE="https://github.com/philippe44/LMS-to-cast"
EGIT_REPO_URI="https://github.com/philippe44/LMS-to-Cast.git"

LICENSE="MIT GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""

DEPEND="
	dev-libs/jansson
	dev-libs/nanopb
	dev-libs/openssl
	>=dev-util/valgrind-3.12.0
	>=net-dns/mdnssd-20170108
	~net-libs/libupnp-castbridge-1.6.19
"
RDEPEND="${DEPEND}"

DOCS="README.md CHANGELOG doc/userguide.htm"

S="${WORKDIR}/${P}/application/${PN}"

suffix()
{
	use amd64 && echo 'x86-64' || echo 'x86'
}

src_prepare() {
	cp ${FILESDIR}/Makefile.gentoo ${S}/Makefile
	eapply_user
}

src_install() {
	newbin squeeze2cast squeeze2cast-$(suffix)
}

pkg_postinst() {
	elog "Support thread for LMS-Cast/${PN} is at:"
	elog "   http://forums.slimdevices.com/showthread.php?104614-Announce-CastBridge-integrate-Chromecast-players-with-LMS-(squeeze2cast)&p=835640&viewfull=1#post835640"
}