diff --git a/multimedia/emby-server/Makefile b/multimedia/emby-server/Makefile index 56f56234c2bd..72e8dc94ebda 100644 --- a/multimedia/emby-server/Makefile +++ b/multimedia/emby-server/Makefile @@ -3,6 +3,7 @@ PORTNAME= emby-server PORTVERSION= 3.0.5821 +PORTREVISION= 1 CATEGORIES= multimedia MAINTAINER= woodsb02@gmail.com diff --git a/multimedia/emby-server/files/emby-server.in b/multimedia/emby-server/files/emby-server.in index 3bb510367ce1..0a571f0b78fd 100644 --- a/multimedia/emby-server/files/emby-server.in +++ b/multimedia/emby-server/files/emby-server.in @@ -50,13 +50,6 @@ command_args="-f -p ${pidfile} ${procname} %%PREFIX%%/lib/emby-server/MediaBrows start_precmd=%%RC_NAME%%_precmd %%RC_NAME%%_precmd() { - : ${LC_ALL:="C"} - : ${LANG:="C"} - : ${TZ:="UTC"} - export LC_ALL - export LANG - export TZ - if [ ! -e "${pidfile}" ]; then install -g ${%%RC_NAME%%_group} -o ${%%RC_NAME%%_user} -- /dev/null "${pidfile}"; fi diff --git a/multimedia/emby-server/pkg-install b/multimedia/emby-server/pkg-install deleted file mode 100644 index dd55c74de183..000000000000 --- a/multimedia/emby-server/pkg-install +++ /dev/null @@ -1,15 +0,0 @@ -#!/bin/sh - -if [ $# -ne 2 ]; then - echo "usage: $0 distname { PRE-INSTALL | POST-INSTALL }" >&2 - exit 1 -fi - -case $2 in - POST-INSTALL) - echo "Downloading Mozilla's root certificates and importing into the Mono Trust store..." - ${PKG_PREFIX}/bin/mozroots --import --sync - ;; -esac - -exit 0