1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-23 00:43:28 +00:00
freebsd-ports/www/bblog/Makefile
Bryan Drewery b4f3eacf76 - Convert to new options framework
- Update WWW to a working URL

Approved by:	eadler, bapt (mentors, implicit)
2012-08-29 05:31:09 +00:00

67 lines
1.9 KiB
Makefile

# New ports collection makefile for: bBlog
# Date created: 2005-04-16
# Whom: chinsan@mail2000.com.tw
#
# $FreeBSD$
#
PORTNAME= bBlog
PORTVERSION= 0.7.6
PORTREVISION= 2
CATEGORIES= www
MASTER_SITES= SF/${PORTNAME:L}/${PORTNAME:L}/${PORTNAME}%20${PORTVERSION}
MAINTAINER= ports@FreeBSD.org
COMMENT= A elegant personal publishing system with Smarty
USE_PHP= mysql pcre session
NO_BUILD= YES
WANT_PHP_WEB= YES
WRKSRC= ${WRKDIR}/${PORTNAME:L}
WWWDOCROOT?= www
BBLOGURL?= ${PORTNAME:L}
BBLOGDIR?= ${WWWDOCROOT}/${BBLOGURL}
SUB_FILES= pkg-message
SUB_LIST= BBLOGURL=${BBLOGURL} BBLOGDIR=${BBLOGDIR}
PLIST_SUB= WWWDOCROOT=${WWWDOCROOT} BBLOGURL=${BBLOGURL}
OPTIONS_DEFINE= GD IMAGICK
OPTIONS_DEFAULT=GD
IMAGICK_DESC= ${IMAGEMAGICK_DESC}
.include <bsd.port.pre.mk>
.if ${PORT_OPTIONS:MGD}
RUN_DEPENDS+= ${LOCALBASE}/lib/php/${PHP_EXT_DIR}/gd.so:${PORTSDIR}/${gd_DEPENDS}
.endif
.if ${PORT_OPTIONS:MIMAGICK}
RUN_DEPENDS+= ${LOCALBASE}/lib/php/${PHP_EXT_DIR}/imagick.so:${PORTSDIR}/${imagick_DEPENDS}
.endif
.if empty(PORT_OPTIONS:MGD) && empty(PORT_OPTIONS:MIMAGICK)
pre-patch:
@${ECHO_CMD} "Without GD or ImageMagick support. No thumbnails will be generated at all."
.endif
do-install:
@${MKDIR} ${PREFIX}/${BBLOGDIR}/${PORTNAME:L}
@${CHOWN} ${WWWOWN}:${WWWGRP} ${PREFIX}/${BBLOGDIR}
@${CHGRP} -R ${WWWGRP} ${PREFIX}/${BBLOGDIR}
@${CHMOD} 755 ${PREFIX}/${BBLOGDIR}
.for f in archives.php documentation.txt htaccess-cleanurls index.php item rss.php search.php section
${INSTALL_DATA} ${WRKDIR}/${f} ${PREFIX}/${BBLOGDIR}
.endfor
@${CP} -Rv ${WRKSRC}/* ${PREFIX}/${BBLOGDIR}/${PORTNAME:L}
@${CHMOD} 775 ${PREFIX}/${BBLOGDIR}/${PORTNAME:L}/compiled_templates/
@${CHMOD} 775 ${PREFIX}/${BBLOGDIR}/${PORTNAME:L}/cache/
@${CHMOD} 775 ${PREFIX}/${BBLOGDIR}/${PORTNAME:L}/cache/favorites.xml
@${CHMOD} 775 ${PREFIX}/${BBLOGDIR}/${PORTNAME:L}/config.php
post-install:
@${CAT} ${PKGMESSAGE}
.include <bsd.port.post.mk>