svn commit: r414154 - in head/www/typo3: . files
Wen Heping
wen at FreeBSD.org
Thu Apr 28 02:43:55 UTC 2016
Author: wen
Date: Thu Apr 28 02:43:53 2016
New Revision: 414154
URL: https://svnweb.freebsd.org/changeset/ports/414154
Log:
- Update to 7.6.5
- Add missing DEPENDS
- Add pkg-message.in
PR: 208779
Submitted by: freebsd-ports at charlieroot.de(maintainer)
Added:
head/www/typo3/files/
head/www/typo3/files/pkg-message.in (contents, props changed)
Modified:
head/www/typo3/Makefile
head/www/typo3/distinfo
Modified: head/www/typo3/Makefile
==============================================================================
--- head/www/typo3/Makefile Thu Apr 28 02:09:10 2016 (r414153)
+++ head/www/typo3/Makefile Thu Apr 28 02:43:53 2016 (r414154)
@@ -2,7 +2,7 @@
# $FreeBSD$
PORTNAME= typo3
-PORTVERSION= 7.6.4
+PORTVERSION= 7.6.5
CATEGORIES= www
MASTER_SITES= SF/${PORTNAME}/TYPO3%20Source%20and%20Dummy/TYPO3%20${PORTVERSION}
@@ -16,7 +16,7 @@ USES= cpe shebangfix
SHEBANG_FILES= typo3/sysext/core/Build/Scripts/xlfcheck.sh
NO_BUILD= yes
NO_ARCH= yes
-USE_PHP= ctype fileinfo filter hash json mysqli openssl pcre session soap xml
+USE_PHP= ctype fileinfo filter hash json mysqli openssl pcre session soap xml zip simplexml
WANT_PHP_WEB= yes
WRKSRC= ${WRKDIR}/${TYPO3SRC}
@@ -30,6 +30,7 @@ GROUPS= ${WWWGRP}
DISTFILES+= ${TYPO3SRC}${EXTRACT_SUFX}
OPTIONS_DEFINE= APC CURL GD GMP IMAGICK MBSTRING MYSQL ZLIB
+OPTIONS_DEFAULT= GD ZLIB
APC_DESC= Alternative PHP Cache
GD_DESC= GDlib/freetype support
IMAGICK_DESC= ${IMAGEMAGICK_DESC}
@@ -70,4 +71,15 @@ post-install:
${FIND} * \( -type f -or -type l \) -path "${TYPO3WWW}/${TYPO3SRC}/*" | \
${SORT} >> ${TMPPLIST}
+ ${TOUCH} ${STAGEDIR}${PREFIX}/${TYPO3WWW}/${TYPO3DIR}/FIRST_INSTALL
+ @${ECHO_CMD} ${TYPO3WWW}/${TYPO3DIR}/FIRST_INSTALL >> ${TMPPLIST}
+
+ @${ECHO_CMD} "@owner ${WWWOWN}" >> ${TMPPLIST}
+ @${ECHO_CMD} "@group ${WWWGRP}" >> ${TMPPLIST}
+ @${ECHO_CMD} "@mode 755" >> ${TMPPLIST}
+ @${ECHO} "@dir ${TYPO3WWW}/${TYPO3DIR}" >> ${TMPPLIST}
+ @${ECHO_CMD} "@mode" >> ${TMPPLIST}
+ @${ECHO_CMD} "@group" >> ${TMPPLIST}
+ @${ECHO_CMD} "@owner" >> ${TMPPLIST}
+
.include <bsd.port.mk>
Modified: head/www/typo3/distinfo
==============================================================================
--- head/www/typo3/distinfo Thu Apr 28 02:09:10 2016 (r414153)
+++ head/www/typo3/distinfo Thu Apr 28 02:43:53 2016 (r414154)
@@ -1,2 +1,2 @@
-SHA256 (typo3_src-7.6.4.tar.gz) = 6d65008f4a71036cc6c90648f3c4019422904ff7c7d3c0f84a1695d64b8f615b
-SIZE (typo3_src-7.6.4.tar.gz) = 20635533
+SHA256 (typo3_src-7.6.5.tar.gz) = 1ca76565aaac74e28ee0ffd3d8f52cf29c2b2edd883e54c296cd9966e9c36e35
+SIZE (typo3_src-7.6.5.tar.gz) = 20594347
Added: head/www/typo3/files/pkg-message.in
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/www/typo3/files/pkg-message.in Thu Apr 28 02:43:53 2016 (r414154)
@@ -0,0 +1,54 @@
+POST-INSTALL CONFIGURATION FOR TYPO3
+=====================================
+
+1) Add the following to your Apache configuration file
+ httpd.conf, and restart the server:
+
+ For Apache versions earlier than 2.4:
+
+ Alias /typo3 %%PREFIX%%/%%TYPO3WWW%%/%%TYPO3DIR%%/
+ AcceptPathInfo On
+ <Directory %%PREFIX%%/%%TYPO3WWW%%/%%TYPO3DIR%%>
+ Options Indexes FollowSymLinks
+ AllowOverride None
+ Order Allow,Deny
+ Allow from all
+ </Directory>
+
+ For Apache version 2.4.x or above:
+
+ Alias /typo3 %%PREFIX%%/%%TYPO3WWW%%/%%TYPO3DIR%%/
+ AcceptPathInfo On
+ <Directory %%PREFIX%%/%%TYPO3WWW%%/%%TYPO3DIR%%/>
+ Options Indexes FollowSymLinks
+ AllowOverride None
+ Require all granted
+ </Directory>
+
+3) Visit your Moodle site with a browser (i.e.,
+ http://your.server.com/typo3/), and you should
+ be taken to the install.php script, which will lead
+ you through creating a config.php file and then
+ setting up Moodle, creating an admin account, etc.
+
+For more information, see the INSTALL DOCUMENTATION:
+
+ https://github.com/TYPO3/TYPO3.CMS/blob/TYPO3_7-6/INSTALL.md
+ For Apache version 2.4.x or above:
+
+ Alias /typo3 %%PREFIX%%/%%TYPO3WWW%%/%%TYPO3DIR%%/
+ AcceptPathInfo On
+ <Directory %%PREFIX%%/%%TYPO3WWW%%/%%TYPO3DIR%%/>
+ Options Indexes FollowSymLinks
+ AllowOverride None
+ Require all granted
+ </Directory>
+
+3) Visit your typo3 site with a browser (i.e.,
+ http://your.server.com/typo3/), and you should
+ be taken to the install.php script, which will lead
+ you through creating the typo3 site.
+
+For more information, see the INSTALL DOCUMENTATION:
+
+ https://github.com/TYPO3/TYPO3.CMS/blob/TYPO3_7-6/INSTALL.md
More information about the svn-ports-head
mailing list