Add zope-mindmapbbs, a Zope product to create BBS based on Mind Map concept.
You can draw and show Mind Map on your Web site. See http://www.mind-map.com/EN/index.html to know what Mind Map is. PR: ports/67418 Submitted by: HAYASHI Yasushi <yasi@yasi.to>
This commit is contained in:
parent
678a91d46d
commit
0b3aa46d28
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=110568
6 changed files with 81 additions and 3 deletions
|
@ -660,6 +660,7 @@
|
|||
SUBDIR += zope-formulator
|
||||
SUBDIR += zope-groupuserfolder
|
||||
SUBDIR += zope-guf
|
||||
SUBDIR += zope-mindmapbbs
|
||||
SUBDIR += zope-parsedxml
|
||||
SUBDIR += zope-placelesstranslationservice
|
||||
SUBDIR += zope-proxyindex
|
||||
|
|
|
@ -14,10 +14,16 @@ MASTER_SITES= ftp://ftp.holywar.net/pub/FreeBSD/ \
|
|||
MAINTAINER= hollywar@mail.holywar.net
|
||||
COMMENT= A fast-cgi module for Apache
|
||||
|
||||
BUILD_DEPENDS= ${APXS}:${PORTSDIR}/${APACHE_PORT}
|
||||
|
||||
CONFLICTS= apache-contrib-1.*
|
||||
|
||||
USE_APACHE= yes
|
||||
|
||||
.if exists(/usr/local/include/apache2/httpd.h)
|
||||
WITH_APACHE2= yes
|
||||
.endif
|
||||
|
||||
.include <bsd.port.pre.mk>
|
||||
|
||||
.if defined(WITH_APACHE2)
|
||||
MAKEFILE= Makefile.AP2
|
||||
USE_REINPLACE= YES
|
||||
|
@ -65,4 +71,4 @@ post-install:
|
|||
@${ECHO_MSG} "* *"
|
||||
@${ECHO_MSG} "************************************************************"
|
||||
|
||||
.include <bsd.port.mk>
|
||||
.include <bsd.port.post.mk>
|
||||
|
|
52
www/zope-mindmapbbs/Makefile
Normal file
52
www/zope-mindmapbbs/Makefile
Normal file
|
@ -0,0 +1,52 @@
|
|||
# New ports collection makefile for: zope-mindmapbbs
|
||||
# Date created: 31 May 2004
|
||||
# Whom: HAYASHI Yasushi <yasi@yasi.to>
|
||||
#
|
||||
# $FreeBSD$
|
||||
#
|
||||
|
||||
PORTNAME= mindmapbbs
|
||||
PORTVERSION= 0.3.3
|
||||
CATEGORIES= www zope
|
||||
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE_JP}
|
||||
MASTER_SITE_SUBDIR= mindmapbbs/9624
|
||||
PKGNAMEPREFIX= zope-
|
||||
DISTNAME= MindMapBBS
|
||||
DIST_SUBDIR= zope
|
||||
|
||||
MAINTAINER= yasi@yasi.to
|
||||
COMMENT= A Zope product to create graphical BBS based on Mind Map
|
||||
|
||||
USE_PYTHON= yes
|
||||
USE_ZOPE= yes
|
||||
|
||||
ZOPEPRODUCTNAME= MindMapBBS
|
||||
|
||||
PLIST= ${WRKDIR}/pkg-plist
|
||||
WRKSRC= ${WRKDIR}/${ZOPEPRODUCTNAME}
|
||||
|
||||
do-build:
|
||||
-@${PYTHON_CMD} ${PYTHON_LIBDIR}/compileall.py ${WRKSRC}/
|
||||
|
||||
pre-install:
|
||||
@${RM} -f ${PLIST}
|
||||
@${TOUCH} ${PLIST}
|
||||
@cd ${WRKDIR} ;\
|
||||
for f in `${FIND} ${ZOPEPRODUCTNAME} -type f`; do \
|
||||
${ECHO_CMD} %%ZOPEPRODUCTDIR%%/$${f} >> ${PLIST}; \
|
||||
done; \
|
||||
for d in `${FIND} -d ${ZOPEPRODUCTNAME} -type d`; do \
|
||||
${ECHO_CMD} @dirrm %%ZOPEPRODUCTDIR%%/$${d} >> ${PLIST}; \
|
||||
done; \
|
||||
|
||||
do-install:
|
||||
@${MKDIR} ${ZOPEBASEDIR}/${ZOPEPRODUCTDIR}/
|
||||
@${CHMOD} -R og+rX ${WRKSRC}/
|
||||
@${CP} -R ${WRKSRC} ${ZOPEBASEDIR}/${ZOPEPRODUCTDIR}/
|
||||
|
||||
post-install:
|
||||
.if !defined(BATCH)
|
||||
@${CAT} ${PKGMESSAGE}
|
||||
.endif
|
||||
|
||||
.include <bsd.port.mk>
|
2
www/zope-mindmapbbs/distinfo
Normal file
2
www/zope-mindmapbbs/distinfo
Normal file
|
@ -0,0 +1,2 @@
|
|||
MD5 (zope/MindMapBBS.tar.gz) = 30ee3e2bc989d7cab2c220c52ecb3309
|
||||
SIZE (zope/MindMapBBS.tar.gz) = 9505
|
9
www/zope-mindmapbbs/pkg-descr
Normal file
9
www/zope-mindmapbbs/pkg-descr
Normal file
|
@ -0,0 +1,9 @@
|
|||
MindMapBBS is a Zope product to create BBS based on Mind Map concept.
|
||||
See http://www.mind-map.com/EN/index.html to know what Mind Map is.
|
||||
|
||||
To see MindMapBBS demonstration, access Author's Web site:
|
||||
|
||||
WWW: http://akiyah.bglb.jp/smallproducts/MindMapBBS/
|
||||
|
||||
- Yasushi Hayashi
|
||||
yasi@yasi.to
|
8
www/zope-mindmapbbs/pkg-message
Normal file
8
www/zope-mindmapbbs/pkg-message
Normal file
|
@ -0,0 +1,8 @@
|
|||
To complete the installation of MindMapBBS
|
||||
|
||||
1. Restart Zope. This may be done from the Zope Control Panel.
|
||||
|
||||
2. Add MindMapBBS object.
|
||||
|
||||
3. Add DTML Document which contains a line:
|
||||
<dtml-var your-bbs-name>
|
Loading…
Reference in a new issue