aboutsummaryrefslogtreecommitdiffstats
path: root/www/zope/Makefile
blob: 54356032d75827ceeb2c65ed9f41f7346d870bf0 (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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
# New ports collection makefile for:    Zope
# Date created:         Sat 21 Aug 1999
# Whom:                 Peter Cornelius <pcc@gmx.net>
#
# $FreeBSD$
#

PORTNAME=   zope
PORTVERSION=    2.7.9
PORTREVISION=   1
CATEGORIES= www python zope
MASTER_SITES=   http://www.zope.org/Products/Zope/Zope-${PORTVERSION}/:src \
        http://www.zope.org/Products/Zope/Hotfix-2006-08-21/Hotfix-20060821/:hotfix
DISTFILES=  Zope-${PORTVERSION}-final.tgz:src \
        ${HOTFIX}.tar.gz:hotfix

MAINTAINER= estartu@augusta.de
COMMENT=    An object-based web application platform

WRKSRC=     ${WRKDIR}/Zope-${PORTVERSION}-final
USE_PYTHON= 2.3
USE_RC_SUBR=    yes
DIST_SUBDIR=    zope
HOTFIX=     Hotfix_20060821

FORBIDDEN=  contains cross-site scripting vulnerability http://VuXML.FreeBSD.org/34414a1e-e377-11db-b8ab-000c76189c4c.html

# Note: the notes that follow reflect the decisions of prior maintainers
# of this port. IOW, don't blame me if you don't like the way it's done.
# Exceptions to this are marked as such.

# Change these, if you like, via the environment.
ZOPE_USER?=     www
WEBBASEDIR?=        www
SZOPEBASEDIR?=      ${WEBBASEDIR}/Zope

# Do not change anything below this line.

.if defined(INSTANCENAME)
ZOPEINSTANCENAME=   ${INSTANCENAME}
.endif

ZOPEBASEDIR=        ${PREFIX}/${SZOPEBASEDIR}
ZOPEINSTANCEBASE?=  ${PREFIX}/${SZOPEBASEDIR}
ZOPEINSTANCEDIR?=   ${ZOPEINSTANCEBASE}/${ZOPEINSTANCENAME}

HAS_CONFIGURE=  yes
CONFIGURE_ARGS= --prefix=${ZOPEBASEDIR}

USE_GMAKE=  yes
ALL_TARGET= build
MAKEFILE=   makefile

PLIST_SUB=  ZOPEBASEDIR=${SZOPEBASEDIR}
RC_SCRIPTS_SUB= PREFIX=${PREFIX} \
        RC_SUBR=${RC_SUBR}
CONFIG_SUB= ZOPEBASEDIR=${ZOPEBASEDIR} \
        ZOPE_USER=${ZOPE_USER} \
        ZOPEINSTANCEDIR=${ZOPEINSTANCEDIR}
PKGMESSAGE= ${WRKDIR}/pkg-message

.if defined(BATCH)
ISBATCH=    -u admin:test123
.else
ISBATCH=    ""
.endif

post-patch:
    @${REINPLACE_CMD} -e 's,^\(ACCEPTABLE="\).*"$$,\1${PYTHON_PORTVERSION}",g' \
        -e 's,^\(TARGET="\).*"$$,\1${PYTHON_PORTVERSION}",g' \
        -e 's,^\(EXENAMES="\).*"$$,\1${PYTHON_VERSION}",g' \
        ${WRKSRC}/configure

post-build:
    -${PYTHON_CMD} ${PYTHON_LIBDIR}/compileall.py ${WRKDIR}/${HOTFIX}

post-install:
    @${CP} -R ${WRKDIR}/${HOTFIX} ${ZOPEBASEDIR}/lib/python/Products/
    @${MV} ${ZOPEBASEDIR}/skel/etc/zope.conf.in ${ZOPEBASEDIR}/skel/etc/zope.conf.sample.in
    @${SED} ${CONFIG_SUB:S/$/!g/:S/^/ -e s!%%/:S/=/%%!/} < ${FILESDIR}/pkg-message.in \
        > ${PKGMESSAGE}
    @${SED} ${RC_SCRIPTS_SUB:S/$/!g/:S/^/ -e s!%%/:S/=/%%!/} \
        ${FILESDIR}/zope.sh > ${PREFIX}/etc/rc.d/zope.sh
    @${CHMOD} ${BINMODE} ${PREFIX}/etc/rc.d/zope.sh
    @${SED} ${RC_SCRIPTS_SUB:S/$/!g/:S/^/ -e s!%%/:S/=/%%!/} \
        ${FILESDIR}/zeo.sh > ${PREFIX}/etc/rc.d/zeo.sh
    @${CHMOD} ${BINMODE} ${PREFIX}/etc/rc.d/zeo.sh
    @${MKDIR} ${ZOPEBASEDIR}/Products
    @${CP} ${FILESDIR}/Products_00readme-freebsd.txt ${ZOPEBASEDIR}/Products/00readme-freebsd.txt
    @${CAT} ${PKGMESSAGE}
    @${ECHO_MSG}

instance:
    @${ZOPEBASEDIR}/bin/mkzopeinstance.py -d ${ZOPEINSTANCEDIR} ${ISBATCH}
    @${SED} ${CONFIG_SUB:S/$/!g/:S/^/ -e s!%%/:S/=/%%!/} ${FILESDIR}/zope.conf_changes | \
        ${PATCH} ${ZOPEINSTANCEDIR}/etc/zope.conf.sample
    @${RM} ${ZOPEINSTANCEDIR}/etc/zope.conf.sample.orig
    @${CHOWN} ${ZOPE_USER} ${ZOPEINSTANCEDIR}/var
    @${CHOWN} ${ZOPE_USER} ${ZOPEINSTANCEDIR}/log
    @${SED} ${CONFIG_SUB:S/$/!g/:S/^/ -e s!%%/:S/=/%%!/} ${FILESDIR}/instance_message
    @${RM} -f ${ZOPEBASEDIR}/bin/copyzopeskel.pyc

zeo:
    @${ZOPEBASEDIR}/bin/mkzeoinstance.py ${ZOPEINSTANCEDIR}
    @${CHOWN} ${ZOPE_USER} ${ZOPEINSTANCEDIR}/var
    @${CHOWN} ${ZOPE_USER} ${ZOPEINSTANCEDIR}/log
    @${SED} ${CONFIG_SUB:S/$/!g/:S/^/ -e s!%%/:S/=/%%!/} ${FILESDIR}/zeo_message

pre-package:
    @${SED} ${CONFIG_SUB:S/$/!g/:S/^/ -e s!%%/:S/=/%%!/} < ${FILESDIR}/pkg-message.package.in \
        > ${PKGMESSAGE}

.include <bsd.port.mk>