Added plex-media-server 1.9.7.
This commit is contained in:
parent
f1907541d2
commit
b9893cd961
3 changed files with 146 additions and 0 deletions
3
media-tv/plex-media-server/Manifest
Normal file
3
media-tv/plex-media-server/Manifest
Normal file
|
@ -0,0 +1,3 @@
|
|||
DIST plexmediaserver_1.9.7.4460-a39b25852_amd64.deb 108301568 SHA256 ed2057ef1cea3c6a4fca53f690635b7010f80e91c988684094b675fcab270709 SHA512 cbc25acda8b327b2a4dc535b8a5f8b01783560cc3d16a4061374bc19ee021e7f1cec572100dc8187cafa2a0bd8acf5cb5499fe0fa25deedfe667a67236a689ed WHIRLPOOL 0c0f188511e022f509a6f554d0a95e93bea30bd22409e7627849468aa88431516fd9c9088391112862fc7157943d2e4019df1f0c7895ae113f8b8eb8c85eefef
|
||||
EBUILD plex-media-server-1.9.7.ebuild 3996 SHA256 c3e18038e2a38ced7fbe807d5c2cae11886425e7981e2de1b7f8ea705c16fb3d SHA512 23e5f0745a23a500010d02dc3f7700c68a1853c570e16614f2e4e61647fe3cc4e4d6c30498c410622bd40a41a869f20bc8c074f743fb81a70639162ca48be89c WHIRLPOOL 4923c63e4ebd6f2d1e67be21edc308b534572f6656a8d667b69d8cbd6cc1a4769d4fbf1a0470d4271611a000b5152af47c94d0aa117e243e1e3fcb28737ede84
|
||||
MISC metadata.xml 271 SHA256 237fe8bd272851b831c40f574623fa1a616bb12917d0fbd42a8b0829812964a2 SHA512 2b2037801bca0d687bfa51c5fd3e2804c77784a9bace2dd1ab8019183283a0c31f380dee3865a46efb316d448b6c45d5bbd4daf73fbd8d21c7005c2bcba79ae9 WHIRLPOOL 56ddfc4e21a65da0b89073ccd3440aed82b077844b5e48c15d5838ef5e9c8de160d03a89facfa3b00f894d9c2e80770c7d02e6d8d03c573e8e9c7533adf57821
|
8
media-tv/plex-media-server/metadata.xml
Normal file
8
media-tv/plex-media-server/metadata.xml
Normal file
|
@ -0,0 +1,8 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
|
||||
<pkgmetadata>
|
||||
<maintainer type="person">
|
||||
<email>canutethegreat@gmail.com</email>
|
||||
<name>Ronald Farrer</name>
|
||||
</maintainer>
|
||||
</pkgmetadata>
|
135
media-tv/plex-media-server/plex-media-server-1.9.7.ebuild
Normal file
135
media-tv/plex-media-server/plex-media-server-1.9.7.ebuild
Normal file
|
@ -0,0 +1,135 @@
|
|||
# Copyright 1999-2017 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=6
|
||||
|
||||
PYTHON_COMPAT=( python2_7 )
|
||||
inherit eutils user systemd unpacker pax-utils python-single-r1
|
||||
|
||||
MINOR_VERSION="4460-a39b25852"
|
||||
|
||||
_APPNAME="plexmediaserver"
|
||||
_USERNAME="plex"
|
||||
_SHORTNAME="${_USERNAME}"
|
||||
_FULL_VERSION="${PV}.${MINOR_VERSION}"
|
||||
|
||||
URI="https://downloads.plex.tv/plex-media-server"
|
||||
|
||||
DESCRIPTION="A free media library that is intended for use with a plex client."
|
||||
HOMEPAGE="http://www.plex.tv/"
|
||||
SRC_URI="amd64? ( ${URI}/${_FULL_VERSION}/plexmediaserver_${_FULL_VERSION}_amd64.deb )"
|
||||
SLOT="0"
|
||||
LICENSE="Plex"
|
||||
RESTRICT="bindist strip"
|
||||
KEYWORDS="-* ~amd64"
|
||||
REQUIRED_USE="${PYTHON_REQUIRED_USE}"
|
||||
|
||||
DEPEND="
|
||||
sys-apps/fix-gnustack
|
||||
dev-python/virtualenv[${PYTHON_USEDEP}]"
|
||||
|
||||
RDEPEND="
|
||||
net-dns/avahi
|
||||
${PYTHON_DEPS}"
|
||||
|
||||
QA_DESKTOP_FILE="usr/share/applications/plexmediamanager.desktop"
|
||||
QA_PREBUILT="*"
|
||||
QA_MULTILIB_PATHS=(
|
||||
"usr/lib/${_APPNAME}/.*"
|
||||
"usr/lib/${_APPNAME}/Resources/Python/lib/python2.7/.*"
|
||||
)
|
||||
|
||||
EXECSTACKED_BINS=( "${ED%/}/usr/lib/plexmediaserver/libgnsdk_dsp.so*" )
|
||||
BINS_TO_PAX_MARK=( "${ED%/}/usr/lib/plexmediaserver/Plex Script Host" )
|
||||
|
||||
S="${WORKDIR}"
|
||||
PATCHES=( "${FILESDIR}/virtualenv_start_pms.patch" )
|
||||
|
||||
pkg_setup() {
|
||||
enewgroup ${_USERNAME}
|
||||
enewuser ${_USERNAME} -1 /bin/bash /var/lib/${_APPNAME} "${_USERNAME},video"
|
||||
python-single-r1_pkg_setup
|
||||
}
|
||||
|
||||
src_unpack() {
|
||||
unpack_deb ${A}
|
||||
}
|
||||
|
||||
src_install() {
|
||||
# Move the config to the correct place
|
||||
local CONFIG_VANILLA="/etc/default/plexmediaserver"
|
||||
local CONFIG_PATH="/etc/${_SHORTNAME}"
|
||||
dodir "${CONFIG_PATH}"
|
||||
insinto "${CONFIG_PATH}"
|
||||
doins "${CONFIG_VANILLA#/}"
|
||||
sed -e "s#${CONFIG_VANILLA}#${CONFIG_PATH}/${_APPNAME}#g" -i "${S}"/usr/sbin/start_pms || die
|
||||
|
||||
# Remove Debian specific files
|
||||
rm -rf "usr/share/doc" || die
|
||||
|
||||
# Copy main files over to image and preserve permissions so it is portable
|
||||
cp -rp usr/ "${ED}" || die
|
||||
|
||||
# Make sure the logging directory is created
|
||||
local LOGGING_DIR="/var/log/pms"
|
||||
dodir "${LOGGING_DIR}"
|
||||
chown "${_USERNAME}":"${_USERNAME}" "${ED%/}/${LOGGING_DIR}" || die
|
||||
|
||||
# Create default library folder with correct permissions
|
||||
local DEFAULT_LIBRARY_DIR="/var/lib/${_APPNAME}"
|
||||
dodir "${DEFAULT_LIBRARY_DIR}"
|
||||
chown "${_USERNAME}":"${_USERNAME}" "${ED%/}/${DEFAULT_LIBRARY_DIR}" || die
|
||||
|
||||
# Install the OpenRC init/conf files
|
||||
doinitd "${FILESDIR}/init.d/${PN}"
|
||||
doconfd "${FILESDIR}/conf.d/${PN}"
|
||||
|
||||
_handle_multilib
|
||||
|
||||
# Install systemd service file
|
||||
local INIT_NAME="${PN}.service"
|
||||
local INIT="${FILESDIR}/systemd/${INIT_NAME}"
|
||||
systemd_newunit "${INIT}" "${INIT_NAME}"
|
||||
|
||||
_remove_execstack_markings
|
||||
_add_pax_markings
|
||||
|
||||
einfo "Configuring virtualenv"
|
||||
virtualenv -v --no-pip --no-setuptools --no-wheel "${ED}"usr/lib/plexmediaserver/Resources/Python || die
|
||||
pushd "${ED}"usr/lib/plexmediaserver/Resources/Python &>/dev/null || die
|
||||
find . -type f -exec sed -i -e "s#${D}##g" {} + || die
|
||||
popd &>/dev/null || die
|
||||
}
|
||||
|
||||
pkg_postinst() {
|
||||
einfo ""
|
||||
elog "Plex Media Server is now installed. Please check the configuration file in /etc/${_SHORTNAME}/${_APPNAME} to verify the default settings."
|
||||
elog "To start the Plex Server, run 'rc-config start plex-media-server', you will then be able to access your library at http://<ip>:32400/web/"
|
||||
}
|
||||
|
||||
# Finds out where the library directory is for this system
|
||||
# and handles ldflags as to not break library dependencies
|
||||
# during rebuilds.
|
||||
_handle_multilib() {
|
||||
# Prevent revdep-rebuild, @preserved-rebuild breakage
|
||||
cat > "${T}"/66plex <<-EOF || die
|
||||
LDPATH="${EPREFIX}/usr/$(get_libdir)/plexmediaserver"
|
||||
EOF
|
||||
|
||||
doenvd "${T}"/66plex
|
||||
}
|
||||
|
||||
# Remove execstack flags from some libraries/executables so that it works in hardened setups.
|
||||
_remove_execstack_markings() {
|
||||
for f in "${EXECSTACKED_BINS[@]}"; do
|
||||
# Unquoting 'f' so that expansion works.
|
||||
fix-gnustack -f ${f} > /dev/null
|
||||
done
|
||||
}
|
||||
|
||||
# Add pax markings to some binaries so that they work on hardened setup.
|
||||
_add_pax_markings() {
|
||||
for f in "${BINS_TO_PAX_MARK[@]}"; do
|
||||
pax-mark m "${f}"
|
||||
done
|
||||
}
|
Loading…
Reference in a new issue