edia-sound/squeezeslave: use #!/sbin/openrc-run instead of #!/sbin/runscript
authorAustin English <wizardedit@gentoo.org>
Tue, 26 Apr 2016 22:19:15 +0000 (17:19 -0500)
committerAustin English <wizardedit@gentoo.org>
Tue, 26 Apr 2016 22:26:32 +0000 (17:26 -0500)
Gentoo-Bug: https://bugs.gentoo.org/show_bug.cgi?id=573846

Package-Manager: portage-2.2.26

media-sound/squeezeslave/files/squeezeslave.initd-r1
media-sound/squeezeslave/squeezeslave-1.1_p365-r1.ebuild [new file with mode: 0644]
media-sound/squeezeslave/squeezeslave-1.1_p381-r1.ebuild [new file with mode: 0644]

index 1d764fb4c4dec0a40b8e79bf6886a4aeabbe674e..368e02ec1f796c33a693b05a83b080cca8839249 100644 (file)
@@ -1,5 +1,5 @@
-#!/sbin/runscript
-# Copyright 1999-2012 Gentoo Foundation
+#!/sbin/openrc-run
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
diff --git a/media-sound/squeezeslave/squeezeslave-1.1_p365-r1.ebuild b/media-sound/squeezeslave/squeezeslave-1.1_p365-r1.ebuild
new file mode 100644 (file)
index 0000000..ed461d0
--- /dev/null
@@ -0,0 +1,52 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI="4"
+
+inherit eutils toolchain-funcs
+
+DESCRIPTION="A lightweight streaming audio player for Logitech Media Server"
+HOMEPAGE="https://squeezeslave.googlecode.com"
+SRC_URI="https://dev.gentoo.org/~radhermit/dist/${P}.tar.xz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="aac +alsa display tremor wma zones"
+
+RDEPEND="media-libs/libmad
+       media-libs/flac
+       tremor? ( media-libs/tremor )
+       !tremor? ( media-libs/libvorbis )
+       media-libs/libogg
+       media-libs/portaudio[alsa?]
+       aac? ( virtual/ffmpeg )
+       wma? ( virtual/ffmpeg )
+       display? ( app-misc/lirc )"
+DEPEND="${RDEPEND}
+       app-arch/xz-utils
+       virtual/pkgconfig"
+
+src_prepare() {
+       epatch "${FILESDIR}"/${PN}-1.1_p350-tremor-headers.patch
+}
+
+src_compile() {
+       tc-export CC AR RANLIB
+
+       local myconf
+       for i in aac display tremor wma zones ; do
+               use $i && myconf+=" $i=1"
+       done
+
+       emake ${myconf}
+}
+
+src_install() {
+       dobin bin/${PN}
+       dodoc ChangeLog TODO
+
+       newconfd "${FILESDIR}"/${PN}.confd-r1 ${PN}
+       newinitd "${FILESDIR}"/${PN}.initd-r1 ${PN}
+}
diff --git a/media-sound/squeezeslave/squeezeslave-1.1_p381-r1.ebuild b/media-sound/squeezeslave/squeezeslave-1.1_p381-r1.ebuild
new file mode 100644 (file)
index 0000000..9008ec2
--- /dev/null
@@ -0,0 +1,53 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI="5"
+
+inherit eutils toolchain-funcs
+
+DESCRIPTION="A lightweight streaming audio player for Logitech Media Server"
+HOMEPAGE="https://squeezeslave.googlecode.com"
+SRC_URI="https://dev.gentoo.org/~radhermit/dist/${P}.tar.xz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="aac +alsa display tremor wma zones"
+
+RDEPEND="media-libs/libmad
+       media-libs/flac
+       tremor? ( media-libs/tremor )
+       !tremor? ( media-libs/libvorbis )
+       media-libs/libogg
+       media-libs/portaudio[alsa?]
+       aac? ( virtual/ffmpeg )
+       wma? ( virtual/ffmpeg )
+       display? ( app-misc/lirc )"
+DEPEND="${RDEPEND}
+       app-arch/xz-utils
+       virtual/pkgconfig"
+
+src_prepare() {
+       epatch "${FILESDIR}"/${PN}-1.1_p350-tremor-headers.patch
+       epatch "${FILESDIR}"/${PN}-1.1_p381-ffmpeg2.patch
+}
+
+src_compile() {
+       tc-export CC AR RANLIB
+
+       local myconf
+       for i in aac display tremor wma zones ; do
+               use $i && myconf+=" $i=1"
+       done
+
+       emake ${myconf}
+}
+
+src_install() {
+       dobin bin/${PN}
+       dodoc ChangeLog TODO
+
+       newconfd "${FILESDIR}"/${PN}.confd-r1 ${PN}
+       newinitd "${FILESDIR}"/${PN}.initd-r1 ${PN}
+}