1535fd0c1d
Submitted by Xavier Santolaria <xavier@santolaria.net>. Zwiki is a Zope-based wiki engine which allows you to build wiki webs (easy-to-edit, flexible, collaborative websites) in the Zope environment.
44 lines
1.1 KiB
Makefile
44 lines
1.1 KiB
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2003/07/17 21:48:03 naddy Exp $
|
|
|
|
COMMENT= "Wiki engine for Zope"
|
|
|
|
VERSION= 0.20.0
|
|
DISTNAME= ZWiki-${VERSION}
|
|
PKGNAME= zope-zwiki-${VERSION}
|
|
CATEGORIES= www
|
|
|
|
HOMEPAGE= http://www.zope.org/Members/simon/ZWiki/
|
|
MASTER_SITES= ${HOMEPAGE}
|
|
EXTRACT_SUFX= .tgz
|
|
|
|
MAINTAINER= Xavier Santolaria <xavier@santolaria.net>
|
|
|
|
# GPL
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
MODULES= zope
|
|
|
|
WRKDIST= ${WRKDIR}/ZWiki
|
|
|
|
INSTALL_LOC= ${MODZOPE_PRODUCTSDIR}/ZWiki
|
|
P_SUBDIRS= Extensions content/basic content/tracker \
|
|
dtml images locale skins/default \
|
|
skins/zwiki_plone tests
|
|
|
|
do-install:
|
|
${INSTALL_DATA_DIR} ${INSTALL_LOC}
|
|
${INSTALL_DATA} ${WRKDIST}/ChangeLog ${INSTALL_LOC}
|
|
${INSTALL_DATA} ${WRKDIST}/*.py ${INSTALL_LOC}
|
|
${INSTALL_DATA} ${WRKDIST}/*.pyc ${INSTALL_LOC}
|
|
${INSTALL_DATA} ${WRKDIST}/*.txt ${INSTALL_LOC}
|
|
.for i in ${P_SUBDIRS}
|
|
${INSTALL_DATA_DIR} ${INSTALL_LOC}/$i
|
|
${INSTALL_DATA} `find ${WRKDIST}/$i -maxdepth 1 -type f` \
|
|
${INSTALL_LOC}/$i
|
|
.endfor
|
|
|
|
.include <bsd.port.mk>
|