From owner-svn-ports-all@FreeBSD.ORG Sun Oct 28 11:31:18 2012 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id C7C5A787; Sun, 28 Oct 2012 11:31:18 +0000 (UTC) (envelope-from utisoft@gmail.com) Received: from mail-bk0-f54.google.com (mail-bk0-f54.google.com [209.85.214.54]) by mx1.freebsd.org (Postfix) with ESMTP id CBE2E8FC08; Sun, 28 Oct 2012 11:31:17 +0000 (UTC) Received: by mail-bk0-f54.google.com with SMTP id jf20so1714653bkc.13 for ; Sun, 28 Oct 2012 04:31:16 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:sender:in-reply-to:references:from:date :x-google-sender-auth:message-id:subject:to:cc:content-type; bh=mCfV9M0GClqwseI9+VVO0AL+o2w/z40w6ATwrgumFV4=; b=As56DqUTef76STQqjBho96UhKPv/l/rlhPViSXnHn73rFloL3wju4Qtt+ADhmiVdg1 eUB8+veu3voblg2/0Yb/l6iutLfkyuGmbOs+spe8YrK7v5dMq0q6vPdSn4Jd2wOOIJ9+ emyECCxmqAy14W8GhBveNHIrlt0VexGLES8ReANeukRCv+cqWOWmGnMZwax33l6OBOM6 faU9xJ0rlfk6tIiL/awIQlqxFs4Gn1ETa+naursA09sVjdANvm9oYUKqddozCIHY5DFF U9oG239n7FFOb2nX0cz78c6UElWVx89APUOMyIbIEJrHX+BP99jDV/CvFaKrj6bvEhto 83eQ== Received: by 10.204.156.74 with SMTP id v10mr8580611bkw.39.1351423876486; Sun, 28 Oct 2012 04:31:16 -0700 (PDT) MIME-Version: 1.0 Sender: utisoft@gmail.com Received: by 10.204.50.197 with HTTP; Sun, 28 Oct 2012 04:30:46 -0700 (PDT) In-Reply-To: <201210261407.q9QE7bWH014598@svn.freebsd.org> References: <201210261407.q9QE7bWH014598@svn.freebsd.org> From: Chris Rees Date: Sun, 28 Oct 2012 11:30:46 +0000 X-Google-Sender-Auth: 3Dsufhc45ugvA-iywqRk_zv2jX8 Message-ID: Subject: Re: svn commit: r306442 - in head: . net/activemq net/activemq/files To: Tom Judge Content-Type: text/plain; charset=ISO-8859-1 Cc: svn-ports-head@freebsd.org, svn-ports-all@freebsd.org, ports-committers@freebsd.org X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 28 Oct 2012 11:31:18 -0000 On 26 October 2012 15:07, Tom Judge wrote: > XXX Ports RC script present > Author: tj > Date: Fri Oct 26 14:07:37 2012 > New Revision: 306442 > URL: http://svn.freebsd.org/changeset/ports/306442 > > Log: > * Update to 5.6.0 > * Remove legacy Makefile header > * Make user and group overridable > * Fix install to create data directory > * Move working data to /var/db/activemq > * Update required java version to 1.6+ > * Add entry to updating for move of data directory. > * Take over maintainer > > Changes: http://activemq.apache.org/new-features-in-56.html > > Feature safe: yes > Approved by: g.veniamin@googlemail.com (maintainer) > Approved by: eadler (mentor) > > Modified: > head/UPDATING > head/net/activemq/Makefile > head/net/activemq/distinfo > head/net/activemq/files/activemq.in > Modified: head/net/activemq/files/activemq.in > ============================================================================== > --- head/net/activemq/files/activemq.in Fri Oct 26 14:07:19 2012 (r306441) > +++ head/net/activemq/files/activemq.in Fri Oct 26 14:07:37 2012 (r306442) > @@ -35,9 +35,11 @@ load_rc_config $name > > # Set defaults > : ${activemq_enable:=NO} > -: ${activemq_user:=${name}} > -: ${activemq_group:=${name}} > +: ${activemq_user:=%%MQUSER%%} > +: ${activemq_group:=%%MQGROUP%%} > : ${activemq_classpath:=%%ETCDIR%%} > +: ${activemq_conf:=%%ETCDIR%%} > +: ${activemq_data:=%%MQDB%%} > : ${activemq_home:=%%DATADIR%%} > : ${activemq_javargs:='-Xmx512M -Dorg.apache.activemq.UseDedicatedTaskRunner=true -Djava.util.logging.config.file=logging.properties -Dcom.sun.management.jmxremote'} > : ${activemq_stop_timeout:="10"} > @@ -48,6 +50,8 @@ required_files="%%ETCDIR%%/activemq.xml" > jar_file="%%DATADIR%%/bin/run.jar" > java_options=" -server -jar ${activemq_javargs} \ > -Dactivemq.classpath=${activemq_classpath} \ > + -Dactivemq.conf=${activemq_conf} \ > + -Dactivemq.data=${activemq_data} \ > -Dactivemq.home=${activemq_home} \ > -Dactivemq.base=${activemq_home}" > > Normally the pidfile gets its own subdirectory if the utility isn't run as root. Please consider the following patch: http://www.bayofrum.net/~crees/patches/activemq-rc.diff Chris