Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 20 Jan 2020 19:36:17 +0000 (UTC)
From:      Guido Falsi <madpilot@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r523643 - in head/deskutils/calibre: . files
Message-ID:  <202001201936.00KJaHTr072465@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: madpilot
Date: Mon Jan 20 19:36:16 2020
New Revision: 523643
URL: https://svnweb.freebsd.org/changeset/ports/523643

Log:
  Fix calibre-server startup script by extending the PATH to include
  LOBALBASE/bin.
  
  The server looks in path for the pdftohtml binary, which is used
  to render PDF files for viewing in the browser.
  
  Reported by:	Alexander Leidinger <Alexander@leidinger.net>
  MFH:		2020Q1

Modified:
  head/deskutils/calibre/Makefile
  head/deskutils/calibre/files/calibre.in

Modified: head/deskutils/calibre/Makefile
==============================================================================
--- head/deskutils/calibre/Makefile	Mon Jan 20 19:29:25 2020	(r523642)
+++ head/deskutils/calibre/Makefile	Mon Jan 20 19:36:16 2020	(r523643)
@@ -3,6 +3,7 @@
 
 PORTNAME=	calibre
 PORTVERSION=	4.8.0
+PORTREVISION=	1
 CATEGORIES=	deskutils python
 MASTER_SITES=	http://download.calibre-ebook.com/${PORTVERSION}/
 

Modified: head/deskutils/calibre/files/calibre.in
==============================================================================
--- head/deskutils/calibre/files/calibre.in	Mon Jan 20 19:29:25 2020	(r523642)
+++ head/deskutils/calibre/files/calibre.in	Mon Jan 20 19:36:16 2020	(r523643)
@@ -31,6 +31,8 @@
 
 . /etc/rc.subr
 
+export PATH=$PATH:%%LOCALBASE%%/sbin:%%LOCALBASE%%/bin
+
 name=calibre
 rcvar=calibre_enable
 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202001201936.00KJaHTr072465>