Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 23 Apr 2011 09:00:23 GMT
From:      Kurt Jaeger <fbsd-pr@opsec.eu>
To:        freebsd-ports-bugs@FreeBSD.org
Subject:   Re: ports/155405: [ports] [update] new version and added startup script
Message-ID:  <201104230900.p3N90Nji080605@freefall.freebsd.org>

next in thread | raw e-mail | index | archive | help
The following reply was made to PR ports/155405; it has been noted by GNATS.

From: Kurt Jaeger <fbsd-pr@opsec.eu>
To: FreeBSD-gnats-submit@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org
Cc:  
Subject: Re: ports/155405: [ports] [update] new version and added startup
 script
Date: Sat, 23 Apr 2011 10:57:12 +0200

 Hi!
 
 > Attached is a newer version which updates to 2.8.1.
 
 And another one to 2.8.3.
 
 ---------------
 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-04-22 21:13:53.000000000 +0200
 @@ -2,10 +2,10 @@
  
  PORTNAME=	cego
 -PORTVERSION=	2.6.18
 +PORTVERSION=	2.8.3
  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	2011-03-20 23:05:10.000000000 +0100
 +++ /usr/home/pi/myp/databases/cego/distinfo	2011-04-22 21:14:20.000000000 +0200
 @@ -1,2 +1,2 @@
 -SHA256 (cego-2.6.18.tar.gz) = afd48d6c49b072cc76be30600e43a15a34d65a6382a98c46f3fcad528ab82d3b
 -SIZE (cego-2.6.18.tar.gz) = 642309
 +SHA256 (cego-2.8.3.tar.gz) = df5bf41b732637d3e7a3def0bd5403d91f4bb4230a3f5a47e62765997baecb68
 +SIZE (cego-2.8.3.tar.gz) = 642171
 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"
 ---------------
 
 -- 
 pi@opsec.eu            +49 171 3101372                         9 years to go !



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