pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/www/php-concrete5 Import php*-concrete5-5.4.2.2 as www...



details:   https://anonhg.NetBSD.org/pkgsrc/rev/0a2a62009a61
branches:  trunk
changeset: 596854:0a2a62009a61
user:      ryoon <ryoon%pkgsrc.org@localhost>
date:      Wed Dec 14 20:51:49 2011 +0000

description:
Import php*-concrete5-5.4.2.2 as www/php-concrete5

Concrete5 is a content management system (CMS) that can manage Web
applications, Web sites, stores, and forums. It allows individuals
involved with Web sites to easily manage their content and their
site structure. Concrete5's in-context editing is like working with
a wiki, and the extendable block support makes editing and extending
unique Web sites easy. The goal behind Concrete5 was always to
create a toolset that could be used by anyone with basic computer
skills to edit and add pages to a Web site.

diffstat:

 www/php-concrete5/DESCR    |     8 +
 www/php-concrete5/INSTALL  |    15 +
 www/php-concrete5/MESSAGE  |    62 +
 www/php-concrete5/Makefile |    42 +
 www/php-concrete5/PLIST    |  2693 ++++++++++++++++++++++++++++++++++++++++++++
 www/php-concrete5/distinfo |     5 +
 6 files changed, 2825 insertions(+), 0 deletions(-)

diffs (truncated from 2849 to 300 lines):

diff -r 330b03e2b9ec -r 0a2a62009a61 www/php-concrete5/DESCR
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/www/php-concrete5/DESCR   Wed Dec 14 20:51:49 2011 +0000
@@ -0,0 +1,8 @@
+Concrete5 is a content management system (CMS) that can manage Web
+applications, Web sites, stores, and forums. It allows individuals
+involved with Web sites to easily manage their content and their
+site structure. Concrete5's in-context editing is like working with
+a wiki, and the extendable block support makes editing and extending
+unique Web sites easy. The goal behind Concrete5 was always to
+create a toolset that could be used by anyone with basic computer
+skills to edit and add pages to a Web site.
diff -r 330b03e2b9ec -r 0a2a62009a61 www/php-concrete5/INSTALL
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/www/php-concrete5/INSTALL Wed Dec 14 20:51:49 2011 +0000
@@ -0,0 +1,15 @@
+#!@SH@
+#
+# $NetBSD: INSTALL,v 1.1.1.1 2011/12/14 20:51:50 ryoon Exp $
+
+WWWGRP="@WWWGRP@"
+WWWOWN="@WWWOWN@"
+C5DIR="@PREFIX@/@C5DIR@"
+
+case "${STAGE}" in
+POST-INSTALL)
+       cd ${C5DIR} &&
+               ${CHOWN} -R ${WWWOWN} ${C5DIR} &&
+               ${CHGRP} -R ${WWWGRP} ${C5DIR}
+       ;;
+esac
diff -r 330b03e2b9ec -r 0a2a62009a61 www/php-concrete5/MESSAGE
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/www/php-concrete5/MESSAGE Wed Dec 14 20:51:49 2011 +0000
@@ -0,0 +1,62 @@
+===========================================================================
+$NetBSD: MESSAGE,v 1.1.1.1 2011/12/14 20:51:50 ryoon Exp $
+
+To use tiki with Apache 2.2, you will need to perform the following steps.
+
+1. Install www/apache22 and www/ap-php
+
+2. Setup PHP. At least, ${PREFIX}/etc/php.ini should have date.timezone line.
+   If your machine are located in Tokyo, Japan, you should get the following.
+
+       # cat ${PREFIX}/etc/php.ini | grep date.timezone
+       date.timezone ="Asia/Tokyo"
+
+3. Install MySQL database server.
+
+       # cd databases/mysql51-server
+       # make install
+
+4. Start MySQL server, and setup MySQL server
+
+       # ${RCD_SCRIPTS_DIR}/mysqld start
+       And see messages.
+
+5. Add MySQL user, tiki
+
+       $ mysql -u root -p
+       Enter password: YOUR_MYSQL_ROOT_PASSWORD
+       > create user concrete5 identified by 'concrete5_user_password';
+       > quit
+
+6. Create database for tiki
+
+       $ mysql -u root -p
+       Enter password: YOUR_MYSQL_ROOT_PASSWORD
+       > create database concrete5_db;
+       > grant SELECT, INSERT, UPDATE, DELETE, CREATE, DROP, ALTER
+       on concrete5_db.* to concrete5@localhost identified by 'concrete5_password';
+       > quit
+
+7. Be sure to have the following lines in ${PREFIX}/etc/php.ini.
+
+       extension=gd.so
+       extension=mysql.so
+       extension=iconv.so
+
+8. Be sure to have the following lines in ${PREFIX}/etc/httpd/httpd.conf
+
+       DocumentRoot "${PREFIX}/share/concrete5"
+       LoadModule php5_module lib/httpd/mod_php5.so
+       AddType application/x-httpd-php .php
+       <Directory ${PREFIX}/share/concrete5>
+               Options All
+               Allow from All
+       </Directory>
+
+9. Access http://localhost/index.php
+   And setup with the following information.
+
+       database name:  concrete_db
+       user name:      concrete5
+       password:       concrete5_password
+===========================================================================
diff -r 330b03e2b9ec -r 0a2a62009a61 www/php-concrete5/Makefile
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/www/php-concrete5/Makefile        Wed Dec 14 20:51:49 2011 +0000
@@ -0,0 +1,42 @@
+# $NetBSD: Makefile,v 1.1.1.1 2011/12/14 20:51:49 ryoon Exp $
+#
+
+DISTNAME=      concrete5.4.2.2
+PKGNAME=       ${PHP_PKG_PREFIX}-${DISTNAME:S/concrete5/concrete5-5/}
+CATEGORIES=    www
+MASTER_SITES=  ${MASTER_SITE_SOURCEFORGE:=concretecms/}
+EXTRACT_SUFX=  .zip
+
+MAINTAINER=    ryoon%NetBSD.org@localhost
+HOMEPAGE=      http://www.concrete5.org/
+COMMENT=       Open sourece Content Management System
+LICENSE=       mit
+
+PKG_DESTDIR_SUPPORT=   user-destdir
+
+DEPENDS+=      ${PHP_PKG_PREFIX}-gd>=5.2.0:../../graphics/php-gd
+DEPENDS+=      ${PHP_PKG_PREFIX}-iconv>=5.2.0:../../converters/php-iconv
+DEPENDS+=      ${PHP_PKG_PREFIX}-mysql>=5.2.0:../../databases/php-mysql
+
+USE_LANGUAGES= # none
+NO_BUILD=      yes
+
+USE_TOOLS+=    pax
+
+BUILD_DEFS+=   APACHE_GROUP APACHE_USER
+
+C5DIR=                 share/concrete5
+INSTALLATION_DIRS=     ${C5DIR}
+
+FILES_SUBST+=  WWWGRP=${APACHE_GROUP} WWWOWN=${APACHE_USER} \
+               C5DIR=${C5DIR}
+
+REPLACE_PYTHON+=       concrete/libraries/3rdparty/htmldiff.py
+
+do-install:
+       cd ${WRKSRC} && pax -rw -pmp * \
+               ${DESTDIR}${PREFIX}/${C5DIR}
+
+.include "../../lang/php/phpversion.mk"
+.include "../../lang/python/application.mk"
+.include "../../mk/bsd.pkg.mk"
diff -r 330b03e2b9ec -r 0a2a62009a61 www/php-concrete5/PLIST
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/www/php-concrete5/PLIST   Wed Dec 14 20:51:49 2011 +0000
@@ -0,0 +1,2693 @@
+@comment $NetBSD: PLIST,v 1.1.1.1 2011/12/14 20:51:50 ryoon Exp $
+share/concrete5/INSTALL
+share/concrete5/LICENSE.TXT
+share/concrete5/concrete/blocks/autonav/add.php
+share/concrete5/concrete/blocks/autonav/auto.js
+share/concrete5/concrete/blocks/autonav/controller.php
+share/concrete5/concrete/blocks/autonav/db.xml
+share/concrete5/concrete/blocks/autonav/edit.php
+share/concrete5/concrete/blocks/autonav/form_setup_html.php
+share/concrete5/concrete/blocks/autonav/icon.png
+share/concrete5/concrete/blocks/autonav/templates/breadcrumb.php
+share/concrete5/concrete/blocks/autonav/templates/header_menu.php
+share/concrete5/concrete/blocks/autonav/tools/preview_pane.php
+share/concrete5/concrete/blocks/autonav/view.php
+share/concrete5/concrete/blocks/content/add.php
+share/concrete5/concrete/blocks/content/composer.php
+share/concrete5/concrete/blocks/content/controller.php
+share/concrete5/concrete/blocks/content/db.xml
+share/concrete5/concrete/blocks/content/edit.php
+share/concrete5/concrete/blocks/content/editor_config.php
+share/concrete5/concrete/blocks/content/editor_init.php
+share/concrete5/concrete/blocks/content/icon.png
+share/concrete5/concrete/blocks/content/scrapbook.php
+share/concrete5/concrete/blocks/content/view.php
+share/concrete5/concrete/blocks/date_nav/add.php
+share/concrete5/concrete/blocks/date_nav/auto.js
+share/concrete5/concrete/blocks/date_nav/controller.php
+share/concrete5/concrete/blocks/date_nav/css/date_nav.css
+share/concrete5/concrete/blocks/date_nav/db.xml
+share/concrete5/concrete/blocks/date_nav/edit.php
+share/concrete5/concrete/blocks/date_nav/form_setup_html.php
+share/concrete5/concrete/blocks/date_nav/icon.png
+share/concrete5/concrete/blocks/date_nav/images/arrow_down.png
+share/concrete5/concrete/blocks/date_nav/images/arrow_down_black.png
+share/concrete5/concrete/blocks/date_nav/images/arrow_down_gray.png
+share/concrete5/concrete/blocks/date_nav/images/arrow_down_white.png
+share/concrete5/concrete/blocks/date_nav/images/arrow_left.png
+share/concrete5/concrete/blocks/date_nav/images/arrow_left_gray.png
+share/concrete5/concrete/blocks/date_nav/images/arrow_left_white.png
+share/concrete5/concrete/blocks/date_nav/images/arrow_right.png
+share/concrete5/concrete/blocks/date_nav/images/arrow_right_gray.png
+share/concrete5/concrete/blocks/date_nav/images/arrow_right_white.png
+share/concrete5/concrete/blocks/date_nav/images/arrow_up.png
+share/concrete5/concrete/blocks/date_nav/images/arrow_up_gray.png
+share/concrete5/concrete/blocks/date_nav/images/arrow_up_white.png
+share/concrete5/concrete/blocks/date_nav/js/date_nav.js
+share/concrete5/concrete/blocks/date_nav/tools/preview_pane.php
+share/concrete5/concrete/blocks/date_nav/tools/rss.php
+share/concrete5/concrete/blocks/date_nav/view.php
+share/concrete5/concrete/blocks/external_form/add.php
+share/concrete5/concrete/blocks/external_form/auto.js
+share/concrete5/concrete/blocks/external_form/controller.php
+share/concrete5/concrete/blocks/external_form/db.xml
+share/concrete5/concrete/blocks/external_form/edit.php
+share/concrete5/concrete/blocks/external_form/forms/controllers/test_form.php
+share/concrete5/concrete/blocks/external_form/forms/test_form.php
+share/concrete5/concrete/blocks/external_form/icon.png
+share/concrete5/concrete/blocks/external_form/view.php
+share/concrete5/concrete/blocks/file/add.php
+share/concrete5/concrete/blocks/file/controller.php
+share/concrete5/concrete/blocks/file/db.xml
+share/concrete5/concrete/blocks/file/edit.php
+share/concrete5/concrete/blocks/file/icon.png
+share/concrete5/concrete/blocks/file/view.php
+share/concrete5/concrete/blocks/flash_content/add.php
+share/concrete5/concrete/blocks/flash_content/auto.js
+share/concrete5/concrete/blocks/flash_content/controller.php
+share/concrete5/concrete/blocks/flash_content/db.xml
+share/concrete5/concrete/blocks/flash_content/edit.php
+share/concrete5/concrete/blocks/flash_content/icon.png
+share/concrete5/concrete/blocks/flash_content/view.php
+share/concrete5/concrete/blocks/form/add.php
+share/concrete5/concrete/blocks/form/auto.js
+share/concrete5/concrete/blocks/form/controller.php
+share/concrete5/concrete/blocks/form/db.xml
+share/concrete5/concrete/blocks/form/edit.php
+share/concrete5/concrete/blocks/form/form_setup_html.php
+share/concrete5/concrete/blocks/form/icon.png
+share/concrete5/concrete/blocks/form/styles_include.php
+share/concrete5/concrete/blocks/form/tools/services.php
+share/concrete5/concrete/blocks/form/view.css
+share/concrete5/concrete/blocks/form/view.php
+share/concrete5/concrete/blocks/google_map/add.php
+share/concrete5/concrete/blocks/google_map/controller.php
+share/concrete5/concrete/blocks/google_map/db.xml
+share/concrete5/concrete/blocks/google_map/edit.php
+share/concrete5/concrete/blocks/google_map/form_setup_html.php
+share/concrete5/concrete/blocks/google_map/icon.png
+share/concrete5/concrete/blocks/google_map/scrapbook.php
+share/concrete5/concrete/blocks/google_map/view.php
+share/concrete5/concrete/blocks/guestbook/add.php
+share/concrete5/concrete/blocks/guestbook/auto.js
+share/concrete5/concrete/blocks/guestbook/controller.php
+share/concrete5/concrete/blocks/guestbook/db.xml
+share/concrete5/concrete/blocks/guestbook/edit.php
+share/concrete5/concrete/blocks/guestbook/icon.png
+share/concrete5/concrete/blocks/guestbook/view.css
+share/concrete5/concrete/blocks/guestbook/view.php
+share/concrete5/concrete/blocks/html/LICENSE.TXT
+share/concrete5/concrete/blocks/html/add.php
+share/concrete5/concrete/blocks/html/composer.php
+share/concrete5/concrete/blocks/html/controller.php
+share/concrete5/concrete/blocks/html/db.xml
+share/concrete5/concrete/blocks/html/edit.php
+share/concrete5/concrete/blocks/html/form_setup_html.php
+share/concrete5/concrete/blocks/html/icon.png
+share/concrete5/concrete/blocks/html/scrapbook.php
+share/concrete5/concrete/blocks/html/view.php
+share/concrete5/concrete/blocks/image/add.php
+share/concrete5/concrete/blocks/image/auto.js
+share/concrete5/concrete/blocks/image/controller.php
+share/concrete5/concrete/blocks/image/db.xml
+share/concrete5/concrete/blocks/image/edit.php
+share/concrete5/concrete/blocks/image/icon.png
+share/concrete5/concrete/blocks/image/view.php
+share/concrete5/concrete/blocks/library_file/controller.php
+share/concrete5/concrete/blocks/library_file/db.xml
+share/concrete5/concrete/blocks/library_file/tools/properties.php
+share/concrete5/concrete/blocks/next_previous/add.php
+share/concrete5/concrete/blocks/next_previous/auto.js
+share/concrete5/concrete/blocks/next_previous/controller.php
+share/concrete5/concrete/blocks/next_previous/db.xml
+share/concrete5/concrete/blocks/next_previous/edit.php
+share/concrete5/concrete/blocks/next_previous/form_setup_html.php
+share/concrete5/concrete/blocks/next_previous/icon.png
+share/concrete5/concrete/blocks/next_previous/view.css
+share/concrete5/concrete/blocks/next_previous/view.php
+share/concrete5/concrete/blocks/page_list/add.php
+share/concrete5/concrete/blocks/page_list/auto.js
+share/concrete5/concrete/blocks/page_list/controller.php
+share/concrete5/concrete/blocks/page_list/db.xml
+share/concrete5/concrete/blocks/page_list/edit.php
+share/concrete5/concrete/blocks/page_list/icon.png
+share/concrete5/concrete/blocks/page_list/page_list_form.php
+share/concrete5/concrete/blocks/page_list/rss.png
+share/concrete5/concrete/blocks/page_list/templates/blog_index.php
+share/concrete5/concrete/blocks/page_list/tools/blog_rss.php
+share/concrete5/concrete/blocks/page_list/tools/preview_pane.php
+share/concrete5/concrete/blocks/page_list/tools/rss.php
+share/concrete5/concrete/blocks/page_list/view.css
+share/concrete5/concrete/blocks/page_list/view.php
+share/concrete5/concrete/blocks/rss_displayer/add.php
+share/concrete5/concrete/blocks/rss_displayer/auto.js
+share/concrete5/concrete/blocks/rss_displayer/controller.php
+share/concrete5/concrete/blocks/rss_displayer/db.xml
+share/concrete5/concrete/blocks/rss_displayer/edit.php
+share/concrete5/concrete/blocks/rss_displayer/form_setup_html.php
+share/concrete5/concrete/blocks/rss_displayer/icon.png
+share/concrete5/concrete/blocks/rss_displayer/view.css
+share/concrete5/concrete/blocks/rss_displayer/view.php
+share/concrete5/concrete/blocks/search/add.php
+share/concrete5/concrete/blocks/search/auto.js
+share/concrete5/concrete/blocks/search/controller.php



Home | Main Index | Thread Index | Old Index