diff options
author | frace <frace@users.noreply.github.com> | 2017-01-10 20:31:01 +0100 |
---|---|---|
committer | David Seifert <soap@gentoo.org> | 2017-01-23 22:19:22 +0100 |
commit | e7b104c04e9cf231ccbff86dd3375a50244f7184 (patch) | |
tree | cdd6b1667084e14098297a86aa15a6d58a9f1e2a /net-libs | |
parent | sys-devel/gdb: version bump to 7.12.1 (diff) | |
download | gentoo-e7b104c04e9cf231ccbff86dd3375a50244f7184.tar.gz gentoo-e7b104c04e9cf231ccbff86dd3375a50244f7184.tar.bz2 gentoo-e7b104c04e9cf231ccbff86dd3375a50244f7184.zip |
net-libs/shairplay: New package needed by media-tv/kodi
Gentoo-bug: 538932, 468558, 458734
Reported-by: hal
Closes: https://github.com/gentoo/gentoo/pull/3425
Diffstat (limited to 'net-libs')
-rw-r--r-- | net-libs/shairplay/Manifest | 1 | ||||
-rw-r--r-- | net-libs/shairplay/metadata.xml | 22 | ||||
-rw-r--r-- | net-libs/shairplay/shairplay-0_pre20170118.ebuild | 53 | ||||
-rw-r--r-- | net-libs/shairplay/shairplay-9999.ebuild | 53 |
4 files changed, 129 insertions, 0 deletions
diff --git a/net-libs/shairplay/Manifest b/net-libs/shairplay/Manifest new file mode 100644 index 000000000000..99819a2725b8 --- /dev/null +++ b/net-libs/shairplay/Manifest @@ -0,0 +1 @@ +DIST shairplay-0_pre20170118.tar.gz 291352 SHA256 d748b4aaab634a4605d741ced15479da20f47027b8822404037706166366e3fe SHA512 05a8ac399659235e88d3b1a7fbe8364ba526881b24ee082c3b7a5709b9b63eac376071d44028e4758ab22ca56d30f8e996b12dc9d3bd99bd38fe453e00a4a18b WHIRLPOOL a196687ea5768c1897350f1b3ed7e0ea37b6a16c6472cbae5341187f2e83e75203f41a49f43b5ac0824014cdb9bbfd7c2425fd8beec0edaa991aca72e0286edd diff --git a/net-libs/shairplay/metadata.xml b/net-libs/shairplay/metadata.xml new file mode 100644 index 000000000000..dc2524879b8c --- /dev/null +++ b/net-libs/shairplay/metadata.xml @@ -0,0 +1,22 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <longdescription>Apple airplay and raop protocol server</longdescription> + <use> + <flag name='alac'>Add support for Apple Lossless Audio Codec files</flag> + <flag name='static-libs'>Build static versions of dynamic libraries as well</flag> + <flag name='tools'>Build and install a binary shairplay in /usr/bin</flag> + </use> + <maintainer type="person"> + <email>candrews@integralblue.com</email> + <name>Craig Andrews</name> + </maintainer> + <maintainer type="project"> + <email>proxy-maint@gentoo.org</email> + <name>Proxy Maintainers</name> + </maintainer> + <upstream> + <bugs-to>https://github.com/juhovh/shairplay</bugs-to> + <remote-id type="github">juhovh/shairplay</remote-id> + </upstream> +</pkgmetadata> diff --git a/net-libs/shairplay/shairplay-0_pre20170118.ebuild b/net-libs/shairplay/shairplay-0_pre20170118.ebuild new file mode 100644 index 000000000000..6c6560a0314e --- /dev/null +++ b/net-libs/shairplay/shairplay-0_pre20170118.ebuild @@ -0,0 +1,53 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +inherit autotools vcs-snapshot + +if [[ ${PV} == "9999" ]] ; then + inherit git-r3 + EGIT_REPO_URI="git://github.com/juhovh/shairplay.git" +else + EGIT_COMMIT="498bc5bcdd305e04721f94a04b9f26a7da72673f" + SRC_URI="https://github.com/juhovh/shairplay/archive/${EGIT_COMMIT}.tar.gz -> ${P}.tar.gz" + KEYWORDS="~amd64 ~x86" +fi + +DESCRIPTION="Apple airplay and raop protocol server" +HOMEPAGE="https://github.com/juhovh/shairplay" +LICENSE="BSD LGPL-2.1 MIT" + +SLOT="0" +IUSE="alac static-libs tools" + +DEPEND=" + tools? ( media-libs/libao ) +" + +RDEPEND=" + alac? ( + media-sound/alac_decoder + net-libs/shairplay[tools] + ) + tools? ( + dev-libs/openssl:0= + net-dns/avahi[mdnsresponder-compat] + ) +" + +src_prepare() { + default + eautoreconf +} + +src_configure() { + econf \ + $(use_enable static-libs static) +} + +src_install() { + default + find "${D}" -name '*.la' -delete || die +} diff --git a/net-libs/shairplay/shairplay-9999.ebuild b/net-libs/shairplay/shairplay-9999.ebuild new file mode 100644 index 000000000000..6c6560a0314e --- /dev/null +++ b/net-libs/shairplay/shairplay-9999.ebuild @@ -0,0 +1,53 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +inherit autotools vcs-snapshot + +if [[ ${PV} == "9999" ]] ; then + inherit git-r3 + EGIT_REPO_URI="git://github.com/juhovh/shairplay.git" +else + EGIT_COMMIT="498bc5bcdd305e04721f94a04b9f26a7da72673f" + SRC_URI="https://github.com/juhovh/shairplay/archive/${EGIT_COMMIT}.tar.gz -> ${P}.tar.gz" + KEYWORDS="~amd64 ~x86" +fi + +DESCRIPTION="Apple airplay and raop protocol server" +HOMEPAGE="https://github.com/juhovh/shairplay" +LICENSE="BSD LGPL-2.1 MIT" + +SLOT="0" +IUSE="alac static-libs tools" + +DEPEND=" + tools? ( media-libs/libao ) +" + +RDEPEND=" + alac? ( + media-sound/alac_decoder + net-libs/shairplay[tools] + ) + tools? ( + dev-libs/openssl:0= + net-dns/avahi[mdnsresponder-compat] + ) +" + +src_prepare() { + default + eautoreconf +} + +src_configure() { + econf \ + $(use_enable static-libs static) +} + +src_install() { + default + find "${D}" -name '*.la' -delete || die +} |