** Configuration format was updated ** With the 0.7.0 release, our configuration format was updated to use YAML files. You need to go through the installer again but we pre-fill most values with the ones from your old installation. We recommend that you make a full backup of your data, as a safety measure. Starting with 0.7.0, Baikal stores data in both the Specific and the config folders. Keep this in mind when upgrading! Known issue:: Upgrading from versions older than 0.6.1 does not work. Release notes: https://github.com/sabre-io/Baikal/releases/tag/0.7.0 https://github.com/sabre-io/Baikal/releases/tag/0.7.1
32 lines
708 B
Makefile
32 lines
708 B
Makefile
# Created by: Adam Weinberger <adamw@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= baikal
|
|
PORTVERSION= 0.7.1
|
|
PORTREVISION= 0
|
|
CATEGORIES= www
|
|
MASTER_SITES= https://github.com/fruux/Baikal/releases/download/${PORTVERSION}/
|
|
|
|
MAINTAINER= gahr@FreeBSD.org
|
|
COMMENT= Lightweight CalDAV/CardDAV server
|
|
|
|
LICENSE= GPLv3
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
|
|
USES= php zip
|
|
USE_PHP= ctype dom filter hash imap json mbstring openssl pdo_sqlite \
|
|
session xml xmlreader xmlwriter
|
|
|
|
WRKSRC= ${WRKDIR}/${PORTNAME}
|
|
NO_BUILD= yes
|
|
NO_ARCH= yes
|
|
|
|
SUB_FILES= pkg-message
|
|
|
|
PLIST_SUB= WWWOWN=${WWWOWN} WWWGRP=${WWWGRP}
|
|
|
|
do-install:
|
|
${MKDIR} ${STAGEDIR}${WWWDIR}
|
|
cd ${WRKSRC} && ${COPYTREE_SHARE} . ${STAGEDIR}${WWWDIR}
|
|
|
|
.include <bsd.port.mk>
|