svn commit: r347712 - in head/mail/archiveopteryx: . files
Mark Felder
feld at FreeBSD.org
Mon Mar 10 00:33:01 UTC 2014
Author: feld
Date: Mon Mar 10 00:32:59 2014
New Revision: 347712
URL: http://svnweb.freebsd.org/changeset/ports/347712
QAT: https://qat.redports.org/buildarchive/r347712/
Log:
Fix rc script and ability to do a clean install.
Patch has been submitted upstream.
Added:
head/mail/archiveopteryx/files/patch-schema__schema.pg (contents, props changed)
Modified:
head/mail/archiveopteryx/Makefile
head/mail/archiveopteryx/files/archiveopteryx.in
Modified: head/mail/archiveopteryx/Makefile
==============================================================================
--- head/mail/archiveopteryx/Makefile Sun Mar 9 23:57:29 2014 (r347711)
+++ head/mail/archiveopteryx/Makefile Mon Mar 10 00:32:59 2014 (r347712)
@@ -3,6 +3,7 @@
PORTNAME= archiveopteryx
PORTVERSION= 3.2.0
+PORTREVISION= 1
CATEGORIES= mail
MASTER_SITES= GH
Modified: head/mail/archiveopteryx/files/archiveopteryx.in
==============================================================================
--- head/mail/archiveopteryx/files/archiveopteryx.in Sun Mar 9 23:57:29 2014 (r347711)
+++ head/mail/archiveopteryx/files/archiveopteryx.in Mon Mar 10 00:32:59 2014 (r347712)
@@ -27,7 +27,7 @@ required_files=$config_file
command=%%PREFIX%%/bin/aox
extra_commands=status
-status_cmd=${command} show status
+status_cmd="${command} show status"
start_cmd=do_start
start_precmd=do_prestart
stop_cmd=do_stop
@@ -36,7 +36,7 @@ restart_cmd=do_restart
do_prestart()
{
if [ ! -d /var/db/aox/jail ] ; then
- install -d -o root -g wheel -m 700 /var/db/aox/jail
+ install -d -o root -g wheel -m 001 /var/db/aox/jail
fi
for i in /var/run/aox /var/db/aox/messages /var/db/aox/jail/var/run /var/db/aox/jail/messages ; do
Added: head/mail/archiveopteryx/files/patch-schema__schema.pg
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/mail/archiveopteryx/files/patch-schema__schema.pg Mon Mar 10 00:32:59 2014 (r347712)
@@ -0,0 +1,17 @@
+--- schema/schema.pg.orig 2014-02-21 03:52:31.000000000 -0600
++++ schema/schema.pg 2014-03-09 18:57:22.297497936 -0500
+@@ -14,12 +14,12 @@
+ -- Grant: select, update
+ revision integer not null primary key
+ );
+-insert into mailstore (revision) values (95);
++insert into mailstore (revision) values (97);
+
+
+ -- One entry for each unique address we've encountered.
+
+-create extension citext;
++create extension if not exists citext;
+ create table addresses (
+ -- Grant: select, insert
+ id serial primary key,
More information about the svn-ports-all
mailing list