Tue Nov 29 14:51:37 2011 UTC ()
Correct instructions in MESSAGE file.
Bump PKGREVISION.


(ryoon)
diff -r1.1.1.1 -r1.2 pkgsrc/www/aipo/MESSAGE
diff -r1.1.1.1 -r1.2 pkgsrc/www/aipo/Makefile

cvs diff -r1.1.1.1 -r1.2 pkgsrc/www/aipo/Attic/MESSAGE (expand / switch to unified diff)

--- pkgsrc/www/aipo/Attic/MESSAGE 2011/11/26 19:29:05 1.1.1.1
+++ pkgsrc/www/aipo/Attic/MESSAGE 2011/11/29 14:51:37 1.2
@@ -1,15 +1,15 @@ @@ -1,15 +1,15 @@
1=========================================================================== 1===========================================================================
2$NetBSD: MESSAGE,v 1.1.1.1 2011/11/26 19:29:05 ryoon Exp $ 2$NetBSD: MESSAGE,v 1.2 2011/11/29 14:51:37 ryoon Exp $
3 3
4To use aipo, you will need to perform the following steps. 4To use aipo, you will need to perform the following steps.
5 5
61. Install postgresq server, for example postgresql84-server, 61. Install postgresq server, for example postgresql84-server,
7 and enable it. 7 and enable it.
8 8
9 # cd databases/postgresql84-server 9 # cd databases/postgresql84-server
10 # make install 10 # make install
11 and follow MESSAGE in databases/postgresql84-server directory. 11 and follow MESSAGE in databases/postgresql84-server directory.
12 12
132. Install apache tomcat server, for example apache-tomcat7 132. Install apache tomcat server, for example apache-tomcat7
14 14
15 # cd www/apache-tomcat7 15 # cd www/apache-tomcat7
@@ -52,27 +52,26 @@ To use aipo, you will need to perform th @@ -52,27 +52,26 @@ To use aipo, you will need to perform th
52 $ sudo -u pgsql psql -U aipo_pgsql -d org001 -p 5432 -f \ 52 $ sudo -u pgsql psql -U aipo_pgsql -d org001 -p 5432 -f \
53 ${PREFIX}/share/aipo/webapps/aipo/WEB-INF/sql/org001.sql 53 ${PREFIX}/share/aipo/webapps/aipo/WEB-INF/sql/org001.sql
54 $ sudo -u pgsql psql -U aipo_pgsql -d org001 -p 5432 -f \ 54 $ sudo -u pgsql psql -U aipo_pgsql -d org001 -p 5432 -f \
55 ${PREFIX}/share/aipo/webapps/aipo/WEB-INF/sql/sample.sql 55 ${PREFIX}/share/aipo/webapps/aipo/WEB-INF/sql/sample.sql
56 56
579. Unlimit database 579. Unlimit database
58 58
59 $ sudo -u pgsql psql -U aipo_pgsql -d org001 -p 5432 \ 59 $ sudo -u pgsql psql -U aipo_pgsql -d org001 -p 5432 \
60 -c "UPDATE AIPO_LICENSE SET LIMIT_USERS=0" 60 -c "UPDATE AIPO_LICENSE SET LIMIT_USERS=0"
61 61
6210. Set Aipo location to apache tomcat 6210. Set Aipo location to apache tomcat
63 $ sudo vi ${PREFIX}/share/tomcat/conf/server.xml 63 $ sudo vi ${PREFIX}/share/tomcat/conf/server.xml
64 Add 64 Add
65 <Context path="/aipo" docBase="${PREFIX}/share/aipo/webapps/aipo" debug=" 65 <Context path="/aipo" docBase="${PREFIX}/share/aipo/webapps/aipo" debug="0" reloadable="true">
660" reloadable="true"> 
67 </Context> 66 </Context>
68 in <Host> tag 67 in <Host> tag
69 68
7011. Regenerate securityTokenKey.txt files. 6911. Regenerate securityTokenKey.txt files.
71 70
72 $ sudo cat /dev/urandom | tr -dc "a-z0-9" | fold -w 64 | head -n 1 \ 71 $ sudo cat /dev/urandom | tr -dc "a-zA-Z0-9" | fold -w 64 | head -n 1 \
73 > ${PREFIX}/share/aipo/webapps/aipo/WEB-INF/conf/securityTokenKey.txt 72 > ${PREFIX}/share/aipo/webapps/aipo/WEB-INF/conf/securityTokenKey.txt
74 $ sudo cp ${PREFIX}/share/aipo/webapps/aipo/WEB-INF/conf/securityTokenKey.txt \ 73 $ sudo cp ${PREFIX}/share/aipo/webapps/aipo/WEB-INF/conf/securityTokenKey.txt \
75 ${PREFIX}/share/aipo/webapps/ROOT/WEB-INF/classes/aipo/securityTokenKey.txt 74 ${PREFIX}/share/aipo/webapps/ROOT/WEB-INF/classes/aipo/securityTokenKey.txt
76 75
7712. Start apache tomcat and access http://localhost/aipo/portal 7612. Start apache tomcat and access http://localhost:8080/aipo/portal
78=========================================================================== 77===========================================================================

cvs diff -r1.1.1.1 -r1.2 pkgsrc/www/aipo/Attic/Makefile (expand / switch to unified diff)

--- pkgsrc/www/aipo/Attic/Makefile 2011/11/26 19:29:06 1.1.1.1
+++ pkgsrc/www/aipo/Attic/Makefile 2011/11/29 14:51:37 1.2
@@ -1,18 +1,19 @@ @@ -1,18 +1,19 @@
1# $NetBSD: Makefile,v 1.1.1.1 2011/11/26 19:29:06 ryoon Exp $ 1# $NetBSD: Makefile,v 1.2 2011/11/29 14:51:37 ryoon Exp $
2# 2#
3 3
4DISTNAME= aipo6020ja_linux32 4DISTNAME= aipo6020ja_linux32
5PKGNAME= aipo-6.02 5PKGNAME= aipo-6.02
 6PKGREVISION= 1
6CATEGORIES= www 7CATEGORIES= www
7MASTER_SITES= http://aipo.googlecode.com/files/ 8MASTER_SITES= http://aipo.googlecode.com/files/
8 9
9MAINTAINER= ryoon@NetBSD.org 10MAINTAINER= ryoon@NetBSD.org
10HOMEPAGE= http://www.aipo.com/ 11HOMEPAGE= http://www.aipo.com/
11COMMENT= Web-based groupware that supports Japanese interface 12COMMENT= Web-based groupware that supports Japanese interface
12LICENSE= gnu-agpl-v3 13LICENSE= gnu-agpl-v3
13 14
14PKG_DESTDIR_SUPPORT= user-destdir 15PKG_DESTDIR_SUPPORT= user-destdir
15 16
16USE_JAVA= run 17USE_JAVA= run
17USE_JAVA2= 6 18USE_JAVA2= 6
18 19