forked from Lainports/freebsd-ports
Ports using USES=php:phpize, php:ext, php:zend, and php:pecl are now flavored. They will automatically get flavors (php56, php70, php71, php72) depending of the versions they support (set with IGNORE_WITH_PHP). As a consequence, ports using USES=pear and USES=horde are also flavored. PR: 226242 Submitted by: mat Exp-run by: antoine Approved by: portmgr Sponsored by: Absolight Differential Revision: https://reviews.freebsd.org/D14208
37 lines
921 B
Makefile
37 lines
921 B
Makefile
# Created by: Bernard Spil <brnrd@freebsd.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= notes
|
|
PORTVERSION= 2.3.2
|
|
DISTVERSIONPREFIX= v
|
|
CATEGORIES= www
|
|
MASTER_SITES= https://github.com/${PKGNAMEPREFIX:S/-//}/${PORTNAME}/releases/download/${DISTVERSIONPREFIX}${PORTVERSION}/
|
|
PKGNAMEPREFIX= nextcloud-
|
|
DISTNAME= ${PORTNAME}
|
|
DIST_SUBDIR= ${PKGNAMEPREFIX:S/-//}/${DISTNAME}-${DISTVERSIONPREFIX}${PORTVERSION}
|
|
|
|
MAINTAINER= brnrd@freebsd.org
|
|
COMMENT= Notes app for Nextcloud
|
|
|
|
LICENSE= AGPLv3
|
|
LICENSE_FILE= ${WRKSRC}/COPYING
|
|
|
|
RUN_DEPENDS= nextcloud>=9:www/nextcloud
|
|
|
|
USES= php
|
|
NO_BUILD= yes
|
|
NO_ARCH= yes
|
|
|
|
NEXTCLOUD_USERNAME?= ${WWWOWN}
|
|
NEXTCLOUD_GROUPNAME?= ${WWWGRP}
|
|
|
|
PLIST_SUB= NEXTCLOUD_USERNAME=${NEXTCLOUD_USERNAME} \
|
|
NEXTCLOUD_GROUPNAME=${NEXTCLOUD_GROUPNAME}
|
|
|
|
WWWDIR= ${PREFIX}/www/nextcloud/apps/${PORTNAME}
|
|
|
|
do-install:
|
|
${MKDIR} ${STAGEDIR}${WWWDIR}
|
|
(cd ${WRKSRC} && ${COPYTREE_SHARE} . ${STAGEDIR}${WWWDIR})
|
|
|
|
.include <bsd.port.mk>
|