blob: 522f0e8ef95fbc13851921de175afbc8d396ee8b (
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
|
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=5
inherit eutils user
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"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="ffmpeg lame selinux"
DEPEND=""
RDEPEND="virtual/jre
lame? ( media-sound/lame )
ffmpeg? ( media-video/ffmpeg )
selinux? ( sec-policy/selinux-subsonic )"
S="${WORKDIR}/"
SUBSONIC_HOME="/var/lib/${MY_PN}"
USER_GROUP="subsonic"
pkg_setup() {
enewgroup "${USER_GROUP}"
enewuser "${USER_GROUP}" -1 -1 ${SUBSONIC_HOME} "${USER_GROUP}"
}
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
keepdir ${SUBSONIC_HOME}
fowners ${USER_GROUP}:${USER_GROUP} ${SUBSONIC_HOME}
newinitd "${FILESDIR}/subsonic.initd" subsonic
newconfd "${FILESDIR}/subsonic.confd" subsonic
make_wrapper ${MY_PN} "${dir}/subsonic.sh"
if use ffmpeg; then
dodir ${SUBSONIC_HOME}/transcode
dosym ../../../../usr/bin/ffmpeg ${SUBSONIC_HOME}/transcode/ffmpeg
fi
if use lame; then
dodir ${SUBSONIC_HOME}/transcode
dosym ../../../../usr/bin/lame ${SUBSONIC_HOME}/transcode/lame
fi
}
|