summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortaca <taca>2009-06-14 13:39:22 +0000
committertaca <taca>2009-06-14 13:39:22 +0000
commita79bddadc7932a2e2488ac296c4c9d8fa309f8a6 (patch)
tree2ba14250296e45850ab140507b851e93a701bd64
parent611cf27c4357781d3f164896140401e78abaae07 (diff)
downloadpkgsrc-a79bddadc7932a2e2488ac296c4c9d8fa309f8a6.tar.gz
Fix critical problem of INSTALL script by previous commit.
Bump PKGREVISION.
-rw-r--r--www/opengoo/INSTALL7
-rw-r--r--www/opengoo/Makefile8
2 files changed, 8 insertions, 7 deletions
diff --git a/www/opengoo/INSTALL b/www/opengoo/INSTALL
index 17320ac4f0e..6e9e244d7f8 100644
--- a/www/opengoo/INSTALL
+++ b/www/opengoo/INSTALL
@@ -1,10 +1,11 @@
-# $NetBSD: INSTALL,v 1.1 2009/06/14 11:38:34 taca Exp $
+# $NetBSD: INSTALL,v 1.2 2009/06/14 13:39:22 taca Exp $
OG_DIR="@PREFIX@/@OG_DIR@"
+WWW_USER="@APACHE_USER@"
case ${STAGE} in
-DEINSTALL)
+POST-INSTALL)
# enable to edit language translation.
- (cd "${OG_DIR}"; ${CHOWN} -R language)
+ (cd "${OG_DIR}"; ${CHOWN} -R ${WWW_USER} language)
;;
esac
diff --git a/www/opengoo/Makefile b/www/opengoo/Makefile
index 055a8f52104..8b8afdb6aef 100644
--- a/www/opengoo/Makefile
+++ b/www/opengoo/Makefile
@@ -1,9 +1,9 @@
-# $NetBSD: Makefile,v 1.2 2009/06/14 11:38:34 taca Exp $
+# $NetBSD: Makefile,v 1.3 2009/06/14 13:39:22 taca Exp $
#
DISTNAME= opengoo_${VER}
PKGNAME= opengoo-${VER}
-PKGREVISION= 1
+PKGREVISION= 2
CATEGORIES= www
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=opengoo/}
EXTRACT_SUFX= .zip
@@ -32,8 +32,8 @@ OWN_DIRS_PERMS+= ${OG_DIR}/tmp ${BINOWN} ${APACHE_GROUP} 0770
OWN_DIRS_PERMS+= ${OG_DIR}/config ${BINOWN} ${APACHE_GROUP} 0770
MAKE_DIRS_PERMS+= ${OG_DIR}/tmp/saveatt ${BINOWN} ${APACHE_GROUP} 0770
-BUILD_DEFS+= APACHE_GROUP
-FILES_SUBST+= OG_DIR=${OG_DIR}
+BUILD_DEFS+= APACHE_GROUP APACHE_USER
+FILES_SUBST+= OG_DIR=${OG_DIR} APACHE_USER=${APACHE_USER}
PLIST_SUBST+= OG_DIR=${OG_DIR}
.include "../../mk/bsd.prefs.mk"