blob: ea13a36443646d85715c6309795b7800d1f79340 (
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
|
# New ports collection makefile for: Annotations
# Date created: 30 Dec 2003
# Whom: Tim Middleton
#
# $FreeBSD$
#
PORTNAME= annotations
PORTVERSION= 0.4.3
CATEGORIES= www zope
MASTER_SITES= http://zope.org/Members/infrae/Annotations/Annotations-${PORTVERSION}/
PKGNAMEPREFIX= zope-
DISTNAME= Annotations-${PORTVERSION}
EXTRACT_SUFX= .tgz
MAINTAINER= x@Vex.Net
COMMENT= A generic way to add information to arbitrary Zope objects
USE_PYTHON= yes
USE_ZOPE= yes
DIST_SUBDIR= zope
ZOPEPRODUCTNAME=Annotations
# yes, some of us are running zope on python 2.3
#PYTHON_VERSION= python2.3
# You can change this in the environment if you like.
#SZOPEBASEDIR?= www/Zope
PLIST_SUB= ZOPEBASEDIR=${SZOPEBASEDIR}
WRKSRC= ${WRKDIR}/${ZOPEPRODUCTNAME}
CPIO= cpio --quiet -pdum -R
do-build:
@${PYTHON_CMD} ${PYTHON_LIBDIR}/compileall.py ${WRKSRC}
do-install:
@ ${CHMOD} -R og+rX ${WRKSRC}/
@ ${MKDIR} ${ZOPEBASEDIR}/${ZOPEPRODUCTDIR}/${ZOPEPRODUCTNAME}
@ cd ${WRKSRC} && ${FIND} . \
| ${CPIO} ${BINOWN}:${BINGRP} \
${ZOPEBASEDIR}/${ZOPEPRODUCTDIR}/${ZOPEPRODUCTNAME}
post-install:
.if !defined(BATCH)
@${CAT} ${PKGMESSAGE}
.endif
.include <bsd.port.mk>
|