aboutsummaryrefslogtreecommitdiffstats
path: root/www/serendipity-devel/Makefile
blob: 06dd2df55ceca83057261108f10c4199188fc64d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
# New ports collection makefile for:    serendipity
# Date created:     2005-DEC-13
# Whom:         babak@farrokhi.net
#
# $FreeBSD$
#

PORTNAME=   serendipity
PORTVERSION=    0.9.1
PORTREVISION=   1
CATEGORIES= www
MASTER_SITES=   ${MASTER_SITE_SOURCEFORGE}
MASTER_SITE_SUBDIR= php-blog

MAINTAINER= babak@farrokhi.net
COMMENT=    PHP based weblog software

WRKSRC=     ${WRKDIR}/${PORTNAME}
NO_BUILD=   YES
SERENDIPITY?=   www/${PORTNAME}
PLIST_SUB+= SERENDIPITY=${SERENDIPITY}
USE_PHP=    session pcre gd openssl mbstring iconv zlib xml
SUB_LIST+=  SERENDIPITY=${SERENDIPITY}
SUB_FILES=  pkg-message

OPTIONS=    MYSQL "Use MySQL backend" on \
        PGSQL "Use PostgreSQL backend" off \
        SQLITE "Use SQLite backend (PHP5)" off \
        MAGICK "Use ImageMagick Library" on

PORT_DBDIR?=    /var/db/ports
LATEST_LINK=    ${PORTNAME}${PKGNAMESUFFIX}
OPTIONSFILE?=   ${PORT_DBDIR}/${LATEST_LINK}/options

.if exists(${OPTIONSFILE})
.include "${OPTIONSFILE}"
.endif

.if !defined(WITHOUT_MYSQL)
USE_PHP+=   mysql
. endif

.if defined(WITH_PGSQL)
USE_PHP+=   pgsql
.endif

.if defined(WITH_SQLITE)
USE_PHP+=   sqlite
.endif

.if !defined(WITHOUT_MAGICK)
RUN_DEPENDS+=   convert:${PORTSDIR}/graphics/ImageMagick
.endif

do-install:
    @-${MKDIR} ${PREFIX}/${SERENDIPITY}
    @${CHOWN} -R ${WWWOWN}:${WWWGRP} ${PREFIX}/${SERENDIPITY}
    @(cd ${WRKSRC} && ${CP} -R * ${PREFIX}/${SERENDIPITY}/ )

post-install:
    @${CAT} ${PKGMESSAGE}

.include <bsd.port.mk>