svn commit: r311799 - in head/sysutils/boxbackup: . files

Bryan Drewery bdrewery at FreeBSD.org
Wed Feb 6 21:56:49 UTC 2013


Author: bdrewery
Date: Wed Feb  6 21:56:48 2013
New Revision: 311799
URL: http://svnweb.freebsd.org/changeset/ports/311799

Log:
  - Fix rc scripts looking for their commands in the wrong
    place, broken since r280414
  - Trim header
  
  PR:		ports/175497
  Reported by:	thompsa@
  Approved by:	James O'Gorman <james at netinertia.co.uk> (maintainer)

Modified:
  head/sysutils/boxbackup/Makefile
  head/sysutils/boxbackup/files/bbackupd.in
  head/sysutils/boxbackup/files/bbstored.in

Modified: head/sysutils/boxbackup/Makefile
==============================================================================
--- head/sysutils/boxbackup/Makefile	Wed Feb  6 21:47:53 2013	(r311798)
+++ head/sysutils/boxbackup/Makefile	Wed Feb  6 21:56:48 2013	(r311799)
@@ -1,13 +1,9 @@
-# New ports collection makefile for: boxbackup
-# Date created:		19 December 2004
-# Whom:			James O'Gorman <james at netinertia.co.uk>
-#
+# Created by: James O'Gorman <james at netinertia.co.uk>
 # $FreeBSD$
-#
 
 PORTNAME=	boxbackup
 PORTVERSION=	0.11.1
-PORTREVISION=	1
+PORTREVISION=	2
 CATEGORIES=	sysutils
 MASTER_SITES=	SF
 PKGNAMESUFFIX=	${CLIENT_OR_SERVER}

Modified: head/sysutils/boxbackup/files/bbackupd.in
==============================================================================
--- head/sysutils/boxbackup/files/bbackupd.in	Wed Feb  6 21:47:53 2013	(r311798)
+++ head/sysutils/boxbackup/files/bbackupd.in	Wed Feb  6 21:56:48 2013	(r311799)
@@ -22,7 +22,7 @@ load_rc_config $name
 
 pidfile=${bbackupd_pidfile:-"/var/run/bbackupd.pid"}
 
-command="%%PREFIX%%/bin/bbackupd"
+command="%%PREFIX%%/sbin/bbackupd"
 extra_commands="reload"
 
 run_rc_command "$1"

Modified: head/sysutils/boxbackup/files/bbstored.in
==============================================================================
--- head/sysutils/boxbackup/files/bbstored.in	Wed Feb  6 21:47:53 2013	(r311798)
+++ head/sysutils/boxbackup/files/bbstored.in	Wed Feb  6 21:56:48 2013	(r311799)
@@ -22,7 +22,7 @@ load_rc_config $name
 
 pidfile=${bbstored_pidfile:-"/var/run/bbstored.pid"}
 
-command="%%PREFIX%%/bin/bbstored"
+command="%%PREFIX%%/sbin/bbstored"
 extra_commands="reload"
 
 run_rc_command "$1"


More information about the svn-ports-head mailing list