svn commit: r425481 - in head/news/sabnzbdplus: . files

Thomas Zander riggs at FreeBSD.org
Sun Nov 6 10:49:05 UTC 2016


Author: riggs
Date: Sun Nov  6 10:49:03 2016
New Revision: 425481
URL: https://svnweb.freebsd.org/changeset/ports/425481

Log:
  Fix character encoding issues
  
  Details:
  - port now defaults to en_US.UTF-8 for LC_CTYPE
  - Bump PORTREVISION
  
  PR:		212993
  Submitted by:	joshruehlig at gmail.com (maintainer)
  MFH:		2016Q4

Modified:
  head/news/sabnzbdplus/Makefile
  head/news/sabnzbdplus/files/sabnzbd.in

Modified: head/news/sabnzbdplus/Makefile
==============================================================================
--- head/news/sabnzbdplus/Makefile	Sun Nov  6 10:41:39 2016	(r425480)
+++ head/news/sabnzbdplus/Makefile	Sun Nov  6 10:49:03 2016	(r425481)
@@ -2,6 +2,7 @@
 
 PORTNAME=	sabnzbdplus
 PORTVERSION=	1.1.0
+PORTREVISION=	1
 CATEGORIES=	news
 MASTER_SITES=	SF
 DISTNAME=	SABnzbd-${PORTVERSION}-src

Modified: head/news/sabnzbdplus/files/sabnzbd.in
==============================================================================
--- head/news/sabnzbdplus/files/sabnzbd.in	Sun Nov  6 10:41:39 2016	(r425480)
+++ head/news/sabnzbdplus/files/sabnzbd.in	Sun Nov  6 10:49:03 2016	(r425481)
@@ -46,7 +46,7 @@ command_args="--daemon -f ${sabnzbd_conf
 sabnzbd_prestart()
 {
 	PATH=${PATH}:%%PREFIX%%/bin:%%PREFIX%%/sbin
-	export LC_CTYPE="UTF-8"
+	export LC_CTYPE="en_US.UTF-8"
 	for sabdir in ${sabnzbd_conf_dir} ${pidfile%/*}; do
 		if [ ! -d "${sabdir}" ]; then
 			install -d -o ${sabnzbd_user} -g ${sabnzbd_group} ${sabdir}


More information about the svn-ports-all mailing list