mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-05 01:55:52 +00:00
5edec96f03
users to create blogs (folders) and pages, and upload rich content such as photos and audio files (podcasts). It has features for user email validation, automatic image sizing, and facilities for extending the core data and feature set. PR: ports/91771 Submitted by: Glen Campbell <glen@broadpool.com>
53 lines
1.1 KiB
Makefile
53 lines
1.1 KiB
Makefile
# New ports collection makefile for: siteframe
|
|
# Date created: 9 January 2006
|
|
# Whom: Glen Campbell
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= siteframe
|
|
PORTVERSION= 5.0.1a
|
|
CATEGORIES= www
|
|
MASTER_SITES= ftp://ftp.broadpool.net/pub/siteframe/
|
|
|
|
MAINTAINER= glen@broadpool.com
|
|
COMMENT= A web community content management system in PHP5 and MySQL
|
|
|
|
RUN_DEPENDS= ${LOCALBASE}/share/smarty/Smarty.class.php:${PORTSDIR}/www/smarty
|
|
|
|
USE_APACHE= yes
|
|
WITH_APACHE2= yes
|
|
USE_PHP= mysqli simplexml xml session gd
|
|
DEFAULT_PHP_VER= 5
|
|
BROKEN_WITH_PHP= 4
|
|
USE_MYSQL= yes
|
|
DEFAULT_MYSQL_VER= 41
|
|
BROKEN_WITH_MYSQL= 40
|
|
|
|
NO_PACKAGE= Conflicting Apache dependencies
|
|
|
|
# where to install
|
|
NO_BUILD= yes
|
|
NO_WRKSUBDIR= yes
|
|
WWWDIR?= ${PREFIX}/www
|
|
.ifndef SITEFRAMEDIR
|
|
.ifdef APACHE_DATADIR
|
|
SITEFRAMEDIR= ${APACHE_DATADIR}/siteframe
|
|
.else
|
|
SITEFRAMEDIR= ${WWWDIR}/siteframe
|
|
.endif
|
|
.endif
|
|
|
|
SUB_FILES= pkg-message
|
|
SUB_LIST= DIR=${SITEFRAMEDIR}
|
|
|
|
do-install:
|
|
${MKDIR} ${SITEFRAMEDIR}
|
|
${CP} -R ${WRKSRC}/ ${SITEFRAMEDIR}
|
|
${CHOWN} -R ${WWWOWN} ${SITEFRAMEDIR}/
|
|
|
|
post-install:
|
|
${CAT} ${PKGMESSAGE}
|
|
|
|
.include <bsd.port.mk>
|