- Fix ownership in plist - Fix sqlite dependency - Remove unneeded lines - Pass maintainership to submitter PR: 203737 Submitted by: ports@toco-domains.de
52 lines
1.2 KiB
Makefile
52 lines
1.2 KiB
Makefile
# Created by: babak@farrokhi.net
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= serendipity
|
|
PORTVERSION= 2.0.2
|
|
CATEGORIES= www
|
|
MASTER_SITES= SF/php-blog/${PORTNAME}/${PORTVERSION}
|
|
|
|
MAINTAINER= ports@toco-domains.de
|
|
COMMENT= PHP based weblog software
|
|
|
|
LICENSE= BSD3CLAUSE
|
|
LICENSE_FILE= ${WRKSRC}/docs/LICENSE
|
|
|
|
RUN_DEPENDS= ${LOCALBASE}/share/pear/File/Archive.php:${PORTSDIR}/archivers/pear-File_Archive
|
|
|
|
WRKSRC= ${WRKDIR}/${PORTNAME}
|
|
NO_BUILD= YES
|
|
SERENDIPITY?= www/${PORTNAME}
|
|
PLIST_SUB+= WWWOWN="${WWWOWN}" WWWGRP="${WWWGRP}"
|
|
USE_PHP= session pcre gd openssl mbstring iconv zlib xml
|
|
SUB_FILES= pkg-message
|
|
USES= cpe tar:bzip2
|
|
CPE_VENDOR= s9y
|
|
|
|
OPTIONS_DEFINE= MYSQL PGSQL SQLITE MAGICK
|
|
OPTIONS_DEFAULT= MYSQL MAGICK
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
.if ${PORT_OPTIONS:MMYSQL}
|
|
USE_PHP+= mysql
|
|
. endif
|
|
|
|
.if ${PORT_OPTIONS:MPGSQL}
|
|
USE_PHP+= pgsql
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MSQLITE}
|
|
USE_PHP+= sqlite3
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MMAGICK}
|
|
RUN_DEPENDS+= convert:${PORTSDIR}/graphics/ImageMagick
|
|
.endif
|
|
|
|
do-install:
|
|
@-${MKDIR} ${STAGEDIR}${PREFIX}/${SERENDIPITY}
|
|
@${CHMOD} 755 ${STAGEDIR}${PREFIX}/${SERENDIPITY}
|
|
@(cd ${WRKSRC} && ${CP} -R * ${STAGEDIR}${PREFIX}/${SERENDIPITY}/ )
|
|
|
|
.include <bsd.port.mk>
|