ports/155405: [update] [ports] new version and added startup script

Kurt Jaeger fbsd-ports at opsec.eu
Wed Mar 9 11:10:14 UTC 2011


>Number:         155405
>Category:       ports
>Synopsis:       [update] [ports] new version and added startup script
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    freebsd-ports-bugs
>State:          open
>Quarter:        
>Keywords:       
>Date-Required:
>Class:          maintainer-update
>Submitter-Id:   current-users
>Arrival-Date:   Wed Mar 09 11:10:14 UTC 2011
>Closed-Date:
>Last-Modified:
>Originator:     Kurt Jaeger
>Release:        FreeBSD 8.1-RELEASE amd64
>Organization:
-
>Environment:
System: FreeBSD fa8.opsec.eu 8.1-RELEASE FreeBSD 8.1-RELEASE #0: Mon Jul 19 02:36:49 UTC 2010 root at mason.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC amd64


>Description:
	update to newest version of cego and adding a startup script
>How-To-Repeat:
	-
>Fix:

diff -r -u -N databases/cego/Makefile /usr/home/pi/myp/databases/cego/Makefile
--- databases/cego/Makefile	2010-12-04 23:04:53.000000000 +0100
+++ /usr/home/pi/myp/databases/cego/Makefile	2011-03-09 12:02:03.000000000 +0100
@@ -2,10 +2,10 @@
 
 PORTNAME=	cego
-PORTVERSION=	2.6.18
+PORTVERSION=	2.7.13
 CATEGORIES=	databases
 MASTER_SITES=	http://www.lemke-it.com/
 
@@ -22,4 +22,6 @@
 USE_LDCONFIG=	yes
 USE_AUTOTOOLS=	autoconf:env
 
+USE_RC_SUBR=	cego
+
 .include <bsd.port.mk>
diff -r -u -N databases/cego/distinfo /usr/home/pi/myp/databases/cego/distinfo
--- databases/cego/distinfo	2010-10-23 23:21:25.000000000 +0200
+++ /usr/home/pi/myp/databases/cego/distinfo	2011-03-09 10:59:19.000000000 +0100
@@ -1,3 +1,2 @@
-MD5 (cego-2.6.18.tar.gz) = b17b60f67da0f5dfd38f2145a4570a0a
-SHA256 (cego-2.6.18.tar.gz) = afd48d6c49b072cc76be30600e43a15a34d65a6382a98c46f3fcad528ab82d3b
-SIZE (cego-2.6.18.tar.gz) = 642309
+SHA256 (cego-2.7.13.tar.gz) = 671be35f2227b6d9afb813bae149ee13adabff00ad65c026b28f087ddfa749d0
+SIZE (cego-2.7.13.tar.gz) = 633026
diff -r -u -N databases/cego/files/cego.in /usr/home/pi/myp/databases/cego/files/cego.in
--- databases/cego/files/cego.in	1970-01-01 01:00:00.000000000 +0100
+++ /usr/home/pi/myp/databases/cego/files/cego.in	2011-03-09 11:26:37.000000000 +0100
@@ -0,0 +1,114 @@
+#!/usr/local/bin/bash 
+#
+# $FreeBSD$
+#
+
+# PROVIDE: cego
+# REQUIRE: LOGIN cleanvar
+# KEYWORD: shutdown
+
+#
+# Add the following lines to /etc/rc.conf to enable cego:
+# cego_enable (bool):      Set to "NO" by default.
+#                          Set it to "YES" to enable cego
+# cego_profiles (str):     Set to "" by default.
+#                          Define your profiles here.
+# cego_flags (str):        Set to "" by default.
+#                          Extra flags passed to start command.
+
+. /etc/rc.subr
+
+name="cego"
+rcvar=`set_rcvar`
+
+command="/usr/local/bin/cego"
+user="cego"
+defcegoconf="/serv/cego"
+defcegoroot="/serv/cego"
+flags="--mode=daemon"
+
+_pidprefix="/var/run/cego"
+pidfile="${_pidprefix}.pid"
+
+[ -z "$cego_enable" ]       && cego_enable="NO"
+[ -z "$cego_tablespc" ]     && cego_enable="NO"
+
+load_rc_config $name
+
+if [ -n "$2" ]; then
+	profile="$2"
+	if [ "x${cego_profiles}" != "x" ]; then
+		pidfile="${_pidprefix}.${profile}.pid"
+
+                echo profile is $profile
+		eval cginst=`echo $profile | awk -F : '{ print $1 }'`
+		eval cgts=`echo $profile | awk -F : '{ print $2 }'`
+
+		if [ "x${cgts}" = "x" ]; then
+			echo "You must define a tableset for db instance ${profile}"
+			exit 1
+                fi
+
+		eval cegoconf="\${cegoconf:-${defcegoconf}}"
+		eval cegoroot="\${cegoroot:-${defcegoroot}}"
+		
+		required_files="${configfile}"
+		eval cego_enable="\${cego_${cginst}_enable:-${cego_enable}}"
+		# command_args="--dbxml=${cegoconf}/${cginst}.xml --tableset=${cgts} --lockfile=${cegoroot}/${cginst}.lck --logfile=${cegoroot}/${cginst}.log --pidfile=${cegoroot}/${cginst}.pid"
+		command_args="--dbxml=${cegoconf}/${cginst}.xml --tableset=${cgts} --lockfile=${cegoroot}/${cginst}.lck --logfile=${cegoroot}/${cginst}.log"
+		echo "Setting command_args $command_args" 
+	else
+		echo "$0: extra argument ignored"
+	fi
+else
+	if [ "x${cego_profiles}" != "x" -a "x$1" != "x" ]; then
+		for profile in ${cego_profiles}; do
+			eval _enable="\${cego_${profile}_enable}"
+			case "x${_enable:-${cego_enable}}" in
+			x|x[Nn][Oo]|x[Nn][Oo][Nn][Ee])
+				continue
+				;;
+			x[Yy][Ee][Ss])
+				;;
+			*)
+				if test -z "$_enable"; then
+					_var=cego_enable
+				else
+					_var=cego_"${profile}"_enable
+				fi
+				echo "Bad value" \
+				    "'${_enable:-${cego_enable}}'" \
+				    "for ${_var}. " \
+				    "Profile ${profile} skipped."
+				continue
+				;;
+			esac
+			echo "===> cego profile: ${profile}"
+			/etc/rc.d/cego $1 ${profile}
+			retcode="$?"
+			if [ "0${retcode}" -ne 0 ]; then
+				failed="${profile} (${retcode}) ${failed:-}"
+			else
+				success="${profile} ${success:-}"
+			fi
+		done
+		exit 0
+	fi
+fi
+
+cego_requirepidfile()
+{
+	if [ ! "0`check_pidfile ${pidfile} ${command}`" -gt 1 ]; then
+		echo "${name} not running? (check $pidfile)."
+		exit 1
+	fi
+}
+
+cego_stop() {
+	cego_requirepidfile
+
+	echo "stopping cego instance $1"
+	kill -1 $1
+}
+
+run_rc_command "$1"
>Release-Note:
>Audit-Trail:
>Unformatted:



More information about the freebsd-ports-bugs mailing list