pkgsrc-Changes-HG archive

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

[pkgsrc/trunk]: pkgsrc/www Remove sencha-sns.



details:   https://anonhg.NetBSD.org/pkgsrc/rev/249a3927b32e
branches:  trunk
changeset: 649730:249a3927b32e
user:      ryoon <ryoon%pkgsrc.org@localhost>
date:      Wed Apr 08 19:02:18 2015 +0000

description:
Remove sencha-sns.
It is renamed to matcha-sns.

diffstat:

 www/Makefile            |     3 +-
 www/sencha-sns/DESCR    |     2 -
 www/sencha-sns/INSTALL  |    12 -
 www/sencha-sns/MESSAGE  |    78 --
 www/sencha-sns/Makefile |    71 --
 www/sencha-sns/PLIST    |  1299 -----------------------------------------------
 www/sencha-sns/distinfo |     5 -
 7 files changed, 1 insertions(+), 1469 deletions(-)

diffs (truncated from 1508 to 300 lines):

diff -r 89e95a66d373 -r 249a3927b32e www/Makefile
--- a/www/Makefile      Wed Apr 08 18:49:21 2015 +0000
+++ b/www/Makefile      Wed Apr 08 19:02:18 2015 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.1098 2015/04/07 23:57:43 rodent Exp $
+# $NetBSD: Makefile,v 1.1099 2015/04/08 19:02:18 ryoon Exp $
 #
 
 COMMENT=       Packages related to the World Wide Web
@@ -744,7 +744,6 @@
 SUBDIR+=       screws
 SUBDIR+=       seamonkey
 SUBDIR+=       seamonkey-l10n
-SUBDIR+=       sencha-sns
 SUBDIR+=       serf
 SUBDIR+=       shibboleth-sp
 SUBDIR+=       sitecopy
diff -r 89e95a66d373 -r 249a3927b32e www/sencha-sns/DESCR
--- a/www/sencha-sns/DESCR      Wed Apr 08 18:49:21 2015 +0000
+++ /dev/null   Thu Jan 01 00:00:00 1970 +0000
@@ -1,2 +0,0 @@
-Sencha SNS is Social Networking Service (SNS) software for intranet
-and the Internet SNS.  This software has Japanese UI only.
diff -r 89e95a66d373 -r 249a3927b32e www/sencha-sns/INSTALL
--- a/www/sencha-sns/INSTALL    Wed Apr 08 18:49:21 2015 +0000
+++ /dev/null   Thu Jan 01 00:00:00 1970 +0000
@@ -1,12 +0,0 @@
-# $NetBSD: INSTALL,v 1.2 2013/06/09 05:19:53 ryoon Exp $
-
-SENCHADIR="@PREFIX@/@SENCHADIR@"
-WWWOWN="@WWWOWN@"
-WWWGRP="@WWWGRP@"
-
-case ${STAGE} in
-POST-INSTALL)
-       ${CHGRP} -R ${WWWGRP}   ${SENCHADIR}
-       ${CHOWN} -R ${WWWOWN}   ${SENCHADIR}
-       ;;
-esac
diff -r 89e95a66d373 -r 249a3927b32e www/sencha-sns/MESSAGE
--- a/www/sencha-sns/MESSAGE    Wed Apr 08 18:49:21 2015 +0000
+++ /dev/null   Thu Jan 01 00:00:00 1970 +0000
@@ -1,78 +0,0 @@
-===========================================================================
-$NetBSD: MESSAGE,v 1.3 2013/06/09 05:19:53 ryoon Exp $
-
-To use Sencha SNS with Apache 2.4, you will need to perform the following steps.
-
-1. Install www/apache24 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/mysql55-server
-       # make install
-
-4. Start MySQL server, and setup MySQL server
-
-       # ${RCD_SCRIPTS_DIR}/mysqld start
-       And see messages.
-
-5. Add MySQL user, senchasns
-
-       $ mysql -u root -p
-       Enter password: YOUR_MYSQL_ROOT_PASSWORD
-       > create user senchasns identified by 'senchasns_user_password';
-       > quit
-
-6. Create database for Sencha SNS
-
-       $ mysql -u root -p
-       Enter password: YOUR_MYSQL_ROOT_PASSWORD
-       > create database senchasns_db;
-       > grant SELECT, INSERT, UPDATE, DELETE, CREATE, DROP, ALTER
-       on senchasns_db.* to senchasns@localhost identified by 'senchasns_password';
-       > quit
-
-7. Be sure to have the following lines in ${PREFIX}/etc/php.ini.
-
-       extension=gd.so
-       extension=mbstring.so
-       extension=mysql.so
-
-8. Be sure to have the following lines in ${PREFIX}/etc/httpd/httpd.conf
-
-       LoadModule rewrite_module lib/httpd/mod_rewrite.so
-       DocumentRoot "${PREFIX}/share/sencha-sns"
-       LoadModule php5_module lib/httpd/mod_php5.so
-       AddType application/x-httpd-php .php
-       <Directory ${PREFIX}/share/sencha-sns>
-               DirectoryIndex index.php
-               Options All
-               Allow from All
-               AllowOverride All
-               Require all granted
-       </Directory>
-
-9. Start Apache httpd 2.4
-
-       # ${RCD_SCRIPTS_DIR}/apache start
-
-10. Set salt and seed in ${PREFIX}/share/sencha-sns/app/config/core.php
-
-       Replace DYhG93b0qyIfIxfs2guVoUubWwvniR2G0FgaC9mi with the output of
-       $ cat /dev/urandom | tr -dc "a-zA-Z0-9" | fold -w 40 | head -n 1
-       and
-       Replace 76859309657198048034862324894 with the output of
-       $ cat /dev/urandom | tr -dc "0-9" | fold -w 30 | head -n 1
-
-11. Access http://localhost/index.php
-   And setup with the following information.
-
-       database name:  senchasns_db
-       user name:      senchasns
-       password:       senchasns_password
-===========================================================================
diff -r 89e95a66d373 -r 249a3927b32e www/sencha-sns/Makefile
--- a/www/sencha-sns/Makefile   Wed Apr 08 18:49:21 2015 +0000
+++ /dev/null   Thu Jan 01 00:00:00 1970 +0000
@@ -1,71 +0,0 @@
-# $NetBSD: Makefile,v 1.6 2013/07/12 10:45:05 jperkin Exp $
-#
-
-DISTNAME=      sencha-sns-1.3.0
-PKGNAME=       ${PHP_PKG_PREFIX}-${DISTNAME}
-PKGREVISION=   1
-CATEGORIES=    www
-MASTER_SITES=  http://ryo-on.users.sourceforge.net/distrib/
-EXTRACT_SUFX=  .zip
-
-MAINTAINER=    ryoon%NetBSD.org@localhost
-HOMEPAGE=      http://oss.icz.co.jp/sns/
-COMMENT=       Social Networking Service software that supports Timeline
-LICENSE=       gnu-gpl-v2 AND mit
-
-DEPENDS+=      ${PHP_PKG_PREFIX}-gd>=5.2.0:../../graphics/php-gd
-DEPENDS+=      ${PHP_PKG_PREFIX}-mysql>=5.2.0:../../databases/php-mysql
-DEPENDS+=      ${PHP_PKG_PREFIX}-mbstring>=5.2.0:../../converters/php-mbstring
-
-USE_PKGLOCALEDIR=      yes
-USE_LANGUAGES=         # none
-NO_BUILD=              yes
-
-USE_TOOLS+=            pax
-
-BUILD_DEFS+=           APACHE_GROUP APACHE_USER
-
-SENCHADIR=             share/sencha-sns
-INSTALLATION_DIRS=     ${SENCHADIR}
-
-.include "../../mk/bsd.prefs.mk"
-
-APACHE_USER?=  www
-APACHE_GROUP?= www
-PKG_GROUPS=    ${APACHE_GROUP}
-PKG_USERS=     ${APACHE_USER}:${APACHE_GROUP}
-
-PKG_USERS_VARS=                APACHE_USER
-PKG_GROUPS_VARS=       APACHE_GROUP
-
-FILES_SUBST+=          WWWGRP=${APACHE_GROUP} WWWOWN=${APACHE_USER} \
-                       SENCHADIR=${SENCHADIR}
-
-REPLACE_SH=            cake/console/cake
-
-FIND_PREFIX:=          PHPDIR=php
-.include "../../mk/find-prefix.mk"
-
-REPLACE_INTERPRETER+=  php
-REPLACE.php.old=       /usr/bin/php
-REPLACE.php.new=       ${PHPDIR}/bin/php
-REPLACE_FILES.php=     cake/console/cake.php
-
-CONF_FILES_PERMS=      ${PREFIX}/share/sencha-sns/app/config/core.php-dist \
-                       ${PREFIX}/share/sencha-sns/app/config/core.php \
-                       ${APACHE_USER} ${APACHE_GROUP} 640
-
-CONF_FILES_PERMS+=     ${PREFIX}/share/sencha-sns/cake/console/templates/skel/config/database.php.default \
-                       ${PREFIX}/share/sencha-sns/cake/console/templates/skel/config/database.php \
-                       ${APACHE_USER} ${APACHE_GROUP} 640
-
-pre-install:
-       cd ${WRKSRC} && \
-       ${MV} app/config/core.php app/config/core.php-dist
-
-do-install:
-       cd ${WRKSRC} && pax -rw -pmp * .htaccess \
-               ${DESTDIR}${PREFIX}/${SENCHADIR}
-
-.include "../../lang/php/phpversion.mk"
-.include "../../mk/bsd.pkg.mk"
diff -r 89e95a66d373 -r 249a3927b32e www/sencha-sns/PLIST
--- a/www/sencha-sns/PLIST      Wed Apr 08 18:49:21 2015 +0000
+++ /dev/null   Thu Jan 01 00:00:00 1970 +0000
@@ -1,1299 +0,0 @@
-@comment $NetBSD: PLIST,v 1.2 2013/06/09 05:19:53 ryoon Exp $
-share/sencha-sns/.htaccess
-share/sencha-sns/LICENCE
-share/sencha-sns/NOTICE
-share/sencha-sns/README
-share/sencha-sns/app/.htaccess
-share/sencha-sns/app/app_controller.php
-share/sencha-sns/app/config/acl.ini.php
-share/sencha-sns/app/config/bootstrap.php
-share/sencha-sns/app/config/constants.php
-share/sencha-sns/app/config/core.php-dist
-share/sencha-sns/app/config/database.php
-share/sencha-sns/app/config/installed.php.default
-share/sencha-sns/app/config/routes.php
-share/sencha-sns/app/config/schema/db_acl.php
-share/sencha-sns/app/config/schema/i18n.php
-share/sencha-sns/app/config/schema/sessions.php
-share/sencha-sns/app/config/sql/dump.sql
-share/sencha-sns/app/controllers/administrators_controller.php
-share/sencha-sns/app/controllers/components/common.php
-share/sencha-sns/app/controllers/components/qdmail.php
-share/sencha-sns/app/controllers/components/qdsmtp.php
-share/sencha-sns/app/controllers/configrations_controller.php
-share/sencha-sns/app/controllers/errors_controller.php
-share/sencha-sns/app/controllers/friends_controller.php
-share/sencha-sns/app/controllers/groups_controller.php
-share/sencha-sns/app/controllers/homes_controller.php
-share/sencha-sns/app/controllers/messages_controller.php
-share/sencha-sns/app/controllers/plugins_controller.php
-share/sencha-sns/app/controllers/profiles_controller.php
-share/sencha-sns/app/controllers/requests_controller.php
-share/sencha-sns/app/controllers/storages_controller.php
-share/sencha-sns/app/controllers/timelines_controller.php
-share/sencha-sns/app/controllers/users_controller.php
-share/sencha-sns/app/index.php
-share/sencha-sns/app/libs/empty
-share/sencha-sns/app/locale/eng/LC_MESSAGES/empty
-share/sencha-sns/app/models/administrator.php
-share/sencha-sns/app/models/behaviors/empty
-share/sencha-sns/app/models/configration.php
-share/sencha-sns/app/models/datasources/empty
-share/sencha-sns/app/models/friend.php
-share/sencha-sns/app/models/group.php
-share/sencha-sns/app/models/home.php
-share/sencha-sns/app/models/join.php
-share/sencha-sns/app/models/message.php
-share/sencha-sns/app/models/notice.php
-share/sencha-sns/app/models/plugin.php
-share/sencha-sns/app/models/profile.php
-share/sencha-sns/app/models/read.php
-share/sencha-sns/app/models/request.php
-share/sencha-sns/app/models/storage.php
-share/sencha-sns/app/models/timeline.php
-share/sencha-sns/app/models/user.php
-share/sencha-sns/app/models/watch.php
-share/sencha-sns/app/plugins/cakeplus/models/behaviors/add_validation_rule.php
-share/sencha-sns/app/plugins/empty
-share/sencha-sns/app/plugins/install/controllers/install_controller.php
-share/sencha-sns/app/plugins/install/install_app_controller.php
-share/sencha-sns/app/plugins/install/install_app_model.php
-share/sencha-sns/app/plugins/install/models/install.php
-share/sencha-sns/app/plugins/install/views/install/add.ctp
-share/sencha-sns/app/plugins/install/views/install/data.ctp
-share/sencha-sns/app/plugins/install/views/install/database.ctp
-share/sencha-sns/app/plugins/install/views/install/finish.ctp
-share/sencha-sns/app/plugins/install/views/install/index.ctp
-share/sencha-sns/app/plugins/install/views/install/mail.ctp
-share/sencha-sns/app/plugins/install/views/layouts/install.ctp
-share/sencha-sns/app/plugins/install/webroot/css/install.css
-share/sencha-sns/app/sencha_plugins/content/mobile/controllers/mobile_controller.php
-share/sencha-sns/app/sencha_plugins/content/mobile/controllers/mobile_homes_controller.php
-share/sencha-sns/app/sencha_plugins/content/mobile/controllers/mobile_storages_controller.php
-share/sencha-sns/app/sencha_plugins/content/mobile/controllers/mobile_timelines_controller.php
-share/sencha-sns/app/sencha_plugins/content/mobile/controllers/mobile_users_controller.php
-share/sencha-sns/app/sencha_plugins/content/mobile/mobile_app_controller.php
-share/sencha-sns/app/sencha_plugins/content/mobile/mobile_app_model.php
-share/sencha-sns/app/sencha_plugins/content/mobile/models/mobile.php
-share/sencha-sns/app/sencha_plugins/content/mobile/views/elements/comment_form.ctp
-share/sencha-sns/app/sencha_plugins/content/mobile/views/elements/dialog/read.ctp
-share/sencha-sns/app/sencha_plugins/content/mobile/views/elements/dialog/watch.ctp
-share/sencha-sns/app/sencha_plugins/content/mobile/views/elements/entry.ctp
-share/sencha-sns/app/sencha_plugins/content/mobile/views/elements/entry/comment.ctp
-share/sencha-sns/app/sencha_plugins/content/mobile/views/elements/entry/delete.ctp
-share/sencha-sns/app/sencha_plugins/content/mobile/views/elements/entry/file.ctp
-share/sencha-sns/app/sencha_plugins/content/mobile/views/elements/entry/group_file.ctp
-share/sencha-sns/app/sencha_plugins/content/mobile/views/elements/entry/group_post.ctp
-share/sencha-sns/app/sencha_plugins/content/mobile/views/elements/entry/post.ctp
-share/sencha-sns/app/sencha_plugins/content/mobile/views/elements/file_disp.ctp
-share/sencha-sns/app/sencha_plugins/content/mobile/views/elements/footer.ctp
-share/sencha-sns/app/sencha_plugins/content/mobile/views/elements/main_menu.ctp
-share/sencha-sns/app/sencha_plugins/content/mobile/views/elements/post_form.ctp
-share/sencha-sns/app/sencha_plugins/content/mobile/views/elements/profile_image.ctp
-share/sencha-sns/app/sencha_plugins/content/mobile/views/elements/slide_menu.ctp
-share/sencha-sns/app/sencha_plugins/content/mobile/views/elements/timeline.ctp
-share/sencha-sns/app/sencha_plugins/content/mobile/views/elements/timeline_header.ctp
-share/sencha-sns/app/sencha_plugins/content/mobile/views/helpers/mobile.php
-share/sencha-sns/app/sencha_plugins/content/mobile/views/layouts/menu.ctp
-share/sencha-sns/app/sencha_plugins/content/mobile/views/layouts/mobile.ctp
-share/sencha-sns/app/sencha_plugins/content/mobile/views/mobile/index.ctp
-share/sencha-sns/app/sencha_plugins/content/mobile/views/mobile_home/detail.ctp



Home | Main Index | Thread Index | Old Index