You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/media-sound/subsonic-bin/subsonic-bin-5.2.1-r3.ebuild

55 lines
1.2 KiB

# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit wrapper
MY_PN="${PN//-bin}"
DESCRIPTION="Subsonic is a complete, personal media streaming solution"
HOMEPAGE="http://www.subsonic.org/"
SRC_URI="mirror://sourceforge/${MY_PN}/${PV}/${MY_PN}-${PV}-standalone.tar.gz"
S="${WORKDIR}/"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="ffmpeg lame selinux"
RDEPEND="
acct-group/subsonic
acct-user/subsonic
virtual/jre
lame? ( media-sound/lame )
ffmpeg? ( media-video/ffmpeg )
selinux? ( sec-policy/selinux-subsonic )
"
src_install() {
local dir="/usr/libexec/${MY_PN}"
dodoc README.TXT "Getting Started.html"
insinto ${dir}
doins subsonic-booter-jar-with-dependencies.jar subsonic.war
exeinto ${dir}
doexe subsonic.sh
newinitd "${FILESDIR}/subsonic.initd" subsonic
newconfd "${FILESDIR}/subsonic.confd" subsonic
make_wrapper ${MY_PN} "${dir}/subsonic.sh"
if use ffmpeg; then
keepdir /var/lib/subsonic/transcode
dosym ../../../../../usr/bin/ffmpeg /var/lib/subsonic/transcode/transcode/ffmpeg
fi
if use lame; then
keepdir /var/lib/subsonic/transcode/transcode
dosym ../../../../../usr/bin/lame /var/lib/subsonic/transcode/transcode/lame
fi
}