Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 19 Jul 2015 12:23:19 +0000 (UTC)
From:      Baptiste Daroussin <bapt@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r392499 - in head/devel/fossil: . files
Message-ID:  <201507191223.t6JCNJP0049204@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: bapt
Date: Sun Jul 19 12:23:18 2015
New Revision: 392499
URL: https://svnweb.freebsd.org/changeset/ports/392499

Log:
  Remove fib support in the rc script it is natively supported by rc.subr

Modified:
  head/devel/fossil/Makefile
  head/devel/fossil/files/fossil.in

Modified: head/devel/fossil/Makefile
==============================================================================
--- head/devel/fossil/Makefile	Sun Jul 19 12:01:42 2015	(r392498)
+++ head/devel/fossil/Makefile	Sun Jul 19 12:23:18 2015	(r392499)
@@ -3,6 +3,7 @@
 PORTNAME=	fossil
 PORTVERSION=	1.33
 PORTEPOCH=	2
+PORTREVISION=	1
 CATEGORIES=	devel www
 MASTER_SITES=	http://www.fossil-scm.org/download/
 DISTVERSIONPREFIX=	src-

Modified: head/devel/fossil/files/fossil.in
==============================================================================
--- head/devel/fossil/files/fossil.in	Sun Jul 19 12:01:42 2015	(r392498)
+++ head/devel/fossil/files/fossil.in	Sun Jul 19 12:23:18 2015	(r392499)
@@ -59,27 +59,8 @@ esac
 
 command_args="-f -p ${pidfile} ${procname} server -P ${fossil_port} ${fossil_args} ${fossil_directory}"
 
-fossil_setfib()
-{
-        if command -v check_namevarlist > /dev/null 2>&1; then
-                check_namevarlist fib && return 0
-        fi
-
-        ${SYSCTL} net.fibs >/dev/null 2>&1 || return 0
-
-        fossil_fib=${fossil_fib:-"NONE"}
-        case "$fossil_fib" in
-        [Nn][Oo][Nn][Ee])
-                ;;
-        *)
-                command="setfib -F ${fossil_fib} ${command}"
-                ;;
-        esac
-}
-
 fossil_precmd()
 {
-        fossil_setfib
         install -d -o root -g wheel -m 1777 /var/run/fossil
 }
 



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