svn commit: r523643 - in head/deskutils/calibre: . files

Guido Falsi madpilot at FreeBSD.org
Mon Jan 20 19:36:17 UTC 2020


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 at 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
 


More information about the svn-ports-all mailing list