mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-25 00:51:21 +00:00
482912a8a7
Update to 1.8.1: - Add additional patches issued post-release - Stage support - Removed option for MySQL patch now contained in the release - Fix ./mage command by adding zlib to dependencies - Closes ports/187985 (commit of 1.7 was incomplete) - Adds option to support the REST Api. - Adds option to activate redis session module (disabled by default). - Rework cron.sh to do sane locking with lockf(1) - Add example cron entry PR: ports/188901 Submitted by: Melvyn Sopacua (maintainer) Approved by: maintainer (implicit), jadawin (mentor)
76 lines
2.5 KiB
Makefile
76 lines
2.5 KiB
Makefile
# Created by: Wen Heping <wen@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= magento
|
|
PORTVERSION= 1.8.1.0
|
|
CATEGORIES= www finance
|
|
MASTER_SITES= http://www.magentocommerce.com/downloads/assets/${PORTVERSION}/
|
|
|
|
MAINTAINER= melvyn@magemana.nl
|
|
COMMENT= Feature-rich eCommerce platform
|
|
|
|
USE_PHP= pdo_mysql hash gd iconv curl dom soap simplexml mcrypt mysql \
|
|
ctype zlib json
|
|
WRKSRC= ${WRKDIR}/magento
|
|
#OPTIONS_DEFINE= OAUTH SESSIONS REDIS SNAPPY EXAMPLES
|
|
OPTIONS_DEFINE= OAUTH SESSIONS REDIS EXAMPLES
|
|
OAUTH_DESC= Depend on pecl-oauth for REST API
|
|
SESSIONS_DESC= Mark Cm/RedisSession module active
|
|
REDIS_DESC= Depend on php5-redis for faster redis backend
|
|
#SNAPPY_DESC= Use google snappy for Redis Cache compression
|
|
|
|
NO_BUILD= yes
|
|
MAGENTODIR?= www/magento
|
|
|
|
.include <bsd.port.options.mk>
|
|
.if !empty(${PORT_OPTIONS:MOAUTH})
|
|
RUN_DEPENDS+= pecl-oauth>=1.2.3:${PORTSDIR}/net/pecl-oauth
|
|
.endif
|
|
.if !empty(${PORT_OPTIONS:MREDIS})
|
|
RUN_DEPENDS+= php5-redis>=2.2.0:${PORTSDIR}/databases/php5-redis
|
|
.endif
|
|
# First need to submit the port
|
|
#.if ${PORT_OPTIONS:MSNAPPY}
|
|
#RUN_DEPENDS+= php5-snappy>=0.0.2:${PORTSDIR}/archivers/php5-snappy
|
|
#.endif
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
SUB_FILES= pkg-message cron.sh pkg-install crontab
|
|
SUB_LIST+= MAGENTODIR=${MAGENTODIR} WWWOWN=${WWWOWN} WWWGRP=${WWWGRP}
|
|
PLIST_SUB+= ${SUB_LIST}
|
|
|
|
|
|
post-patch:
|
|
@${RM} -f ${WRKSRC}/cron.sh ${WRKSRC}/.htaccess
|
|
|
|
.ifdef MAINTAINER_MODE
|
|
genplist: extract patch
|
|
@${FIND} -s ${WRKSRC} -type f | ${SED} \
|
|
-e 's,${WRKSRC},%%MAGENTODIR%%,' > ${PORTSDIR}/www/magento/pkg-plist.new
|
|
@${FIND} -s -d ${WRKSRC} -type d | ${SED} \
|
|
-e 's,${WRKSRC}/media,@dirrmtry %%MAGENTODIR%%/media,' \
|
|
-e 's,${WRKSRC}/var,@dirrmtry %%MAGENTODIR%%/var,' \
|
|
-e 's,${WRKSRC},@dirrm %%MAGENTODIR%%,' >> ${PORTSDIR}/www/magento/pkg-plist.new
|
|
|
|
.endif
|
|
|
|
do-install:
|
|
@cd ${WRKSRC} && ${COPYTREE_SHARE} . ${STAGEDIR}${PREFIX}/${MAGENTODIR}
|
|
@${INSTALL_SCRIPT} ${WRKDIR}/cron.sh ${STAGEDIR}${PREFIX}/${MAGENTODIR}
|
|
@${FIND} ${STAGEDIR}${PREFIX}/${MAGENTODIR}/var -type d \
|
|
-exec ${CHMOD} a+w {} +
|
|
@${CHMOD} a+x ${STAGEDIR}${PREFIX}/${MAGENTODIR}/app/etc \
|
|
${STAGEDIR}${PREFIX}/${MAGENTODIR}/app/etc/modules
|
|
.if !empty(${PORT_OPTIONS:MSESSIONS})
|
|
@${REINPLACE_CMD} -e 's,<active>false,<active>true,' \
|
|
${STAGEDIR}${PREFIX}/${MAGENTODIR}/app/etc/modules/Cm_RedisSession.xml
|
|
@${RM} -f ${STAGEDIR}${PREFIX}/${MAGENTODIR}/app/etc/modules/Cm_RedisSession.xml.bak
|
|
.endif
|
|
.if !empty(${PORT_OPIONS:MEXAMPLES})
|
|
@${MKDIR} ${STAGEDIR}${PREFIX}/${EXAMPLESDIR}
|
|
@${INSTALL_DATA} ${WRKDIR}/crontab ${STAGEDIR}${PREFIX}/${EXAMPLESDIR}
|
|
.endif
|
|
|
|
.include <bsd.port.post.mk>
|